From d06c65a746e230d841d00ab7dfd16598360c8ea1 Mon Sep 17 00:00:00 2001 From: William Irvine <32685892+WillIrvine@users.noreply.github.com> Date: Thu, 25 Mar 2021 01:50:02 +1300 Subject: [PATCH] =?UTF-8?q?Fixed=20polling=20and=20health=20issues=20for?= =?UTF-8?q?=209001=20and=20NCS=20devices,=20added=20suppo=E2=80=A6=20(#126?= =?UTF-8?q?40)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Fixed issues health and polling issues with 9001 and NCS devices, added support for 9901 * Update iosxr.inc.php * Update iosxr.inc.php * Update cisco-entity-sensor.inc.php * remove polling file and adjust to user_func from disco * fit formatting and remove echo * fit formatting2 * fit formatting3 * Fix test files with no badif * remove all exclusions so tests work * recreate json test for 9010 --- .../sensors/cisco-entity-sensor.inc.php | 17 +- includes/polling/sensors/dbm/iosxr.inc.php | 3 - tests/data/iosxr_asr9001.json | 23105 ++++++++++++++++ tests/data/iosxr_asr9010.json | 672 +- tests/data/iosxr_asr9901.json | 21409 ++++++++++++++ tests/snmpsim/iosxr_asr9001.snmprec | 9254 +++++++ tests/snmpsim/iosxr_asr9901.snmprec | 12648 +++++++++ 7 files changed, 66761 insertions(+), 347 deletions(-) delete mode 100644 includes/polling/sensors/dbm/iosxr.inc.php create mode 100644 tests/data/iosxr_asr9001.json create mode 100644 tests/data/iosxr_asr9901.json create mode 100644 tests/snmpsim/iosxr_asr9001.snmprec create mode 100644 tests/snmpsim/iosxr_asr9901.snmprec diff --git a/includes/discovery/sensors/cisco-entity-sensor.inc.php b/includes/discovery/sensors/cisco-entity-sensor.inc.php index 4e285dc668..40dd527384 100644 --- a/includes/discovery/sensors/cisco-entity-sensor.inc.php +++ b/includes/discovery/sensors/cisco-entity-sensor.inc.php @@ -122,7 +122,8 @@ if ($device['os_group'] == 'cisco') { // Workaround for a Cisco SNMP bug && $entry['entSensorPrecision'] != '1615384784' ) { - $divisor = $divisor . str_pad('', $entry['entSensorPrecision'], '0'); + // Use precision value to determine decimal point place on returned value, then apply divisor + $divisor = (10 ** $entry['entSensorPrecision']) * $divisor; } $current = ($current * $multiplier / $divisor); @@ -141,11 +142,11 @@ if ($device['os_group'] == 'cisco') { continue; } // Critical Limit - if (($key['entSensorThresholdSeverity'] == 'major' || $key['entSensorThresholdSeverity'] == 'critical') && ($key['entSensorThresholdRelation'] == 'greaterOrEqual' || $key['entSensorThresholdRelation'] == 'greaterThan')) { + if (($key['entSensorThresholdSeverity'] == 'major' || $key['entSensorThresholdSeverity'] == 'critical') && ($key['entSensorThresholdValue'] != 0) && ($key['entSensorThresholdRelation'] == 'greaterOrEqual' || $key['entSensorThresholdRelation'] == 'greaterThan')) { $limit = ($key['entSensorThresholdValue'] * $multiplier / $divisor); } - if (($key['entSensorThresholdSeverity'] == 'major' || $key['entSensorThresholdSeverity'] == 'critical') && ($key['entSensorThresholdRelation'] == 'lessOrEqual' || $key['entSensorThresholdRelation'] == 'lessThan')) { + if (($key['entSensorThresholdSeverity'] == 'major' || $key['entSensorThresholdSeverity'] == 'critical') && ($key['entSensorThresholdValue'] != 0) && ($key['entSensorThresholdRelation'] == 'lessOrEqual' || $key['entSensorThresholdRelation'] == 'lessThan')) { $limit_low = ($key['entSensorThresholdValue'] * $multiplier / $divisor); } @@ -200,18 +201,18 @@ if ($device['os_group'] == 'cisco') { } discover_sensor($valid['sensor'], $type, $device, $oid, $index, 'cisco-entity-sensor', ucwords($descr), $divisor, $multiplier, $limit_low, $warn_limit_low, $warn_limit, $limit, $current, 'snmp', $entPhysicalIndex, $entry['entSensorMeasuredEntity'], null); //Cisco IOS-XR : add a fake sensor to graph as dbm - if ($type == 'power' and $device['os'] == 'iosxr' and (preg_match('/power (R|T)x/i', $descr) or preg_match('/(R|T)x Power/i', $descr))) { + if ($type == 'power' and $device['os'] == 'iosxr' and (preg_match('/power (R|T)x/i', $descr) or preg_match('/(R|T)x Power/i', $descr) or preg_match('/(R|T)x Lane/i', $descr))) { // convert Watts to dbm + $user_func = 'mw_to_dbm'; $type = 'dbm'; $limit_low = 10 * log10($limit_low * 1000); $warn_limit_low = 10 * log10($warn_limit_low * 1000); $warn_limit = 10 * log10($warn_limit * 1000); $limit = 10 * log10($limit * 1000); $current = round(10 * log10($current * 1000), 3); - $multiplier = 1; - $divisor = 1; - //echo("\n".$valid['sensor'].", $type, $device, $oid, $index, 'cisco-entity-sensor', $descr, $divisor, $multiplier, $limit_low, $warn_limit_low, $warn_limit, $limit, $current"); - discover_sensor($valid['sensor'], $type, $device, $oid, $index, 'cisco-entity-sensor', $descr, $divisor, $multiplier, $limit_low, $warn_limit_low, $warn_limit, $limit, $current, 'snmp', $entPhysicalIndex, $entry['entSensorMeasuredEntity'], null); + $multiplier = 1000; + //echo("\n".$valid['sensor'].", $type, $device, $oid, $index, 'cisco-entity-sensor', $descr, $divisor, $multiplier, $limit_low, $warn_limit_low, $warn_limit, $limit, $current, $user_func"); + discover_sensor($valid['sensor'], $type, $device, $oid, $index, 'cisco-entity-sensor', $descr, $divisor, $multiplier, $limit_low, $warn_limit_low, $warn_limit, $limit, $current, 'snmp', $entPhysicalIndex, $entry['entSensorMeasuredEntity'], $user_func); } } diff --git a/includes/polling/sensors/dbm/iosxr.inc.php b/includes/polling/sensors/dbm/iosxr.inc.php deleted file mode 100644 index 190b377254..0000000000 --- a/includes/polling/sensors/dbm/iosxr.inc.php +++ /dev/null @@ -1,3 +0,0 @@ -", + "sysObjectID": ".1.3.6.1.4.1.9.1.1639", + "sysDescr": "Cisco IOS XR Software (Cisco ASR9K Series), Version 6.6.3[Default]\nCopyright (c) 2019 by Cisco Systems, Inc.", + "sysContact": "", + "version": "6.6.3", + "hardware": "ASR9K Series", + "features": "Default", + "os": "iosxr", + "type": "network", + "serial": null, + "icon": "cisco.svg", + "location": "" + } + ] + }, + "poller": "matches discovery" + }, + "ports": { + "discovery": { + "ports": [ + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Null0", + "ifName": "Null0", + "portName": null, + "ifIndex": 2, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "Null0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "MgmtEth0/RSP0/CPU0/0", + "ifName": "MgmtEth0/RSP0/CPU0/0", + "portName": null, + "ifIndex": 3, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "MgmtEth0/RSP0/CPU0/0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "MgmtEth0/RSP0/CPU0/1", + "ifName": "MgmtEth0/RSP0/CPU0/1", + "portName": null, + "ifIndex": 4, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "MgmtEth0/RSP0/CPU0/1", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "dwdm0/0/0/0", + "ifName": "dwdm0/0/0/0", + "portName": null, + "ifIndex": 10, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "dwdm0/0/0/0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "dwdm0/0/2/0", + "ifName": "dwdm0/0/2/0", + "portName": null, + "ifIndex": 11, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "dwdm0/0/2/0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "dwdm0/0/0/1", + "ifName": "dwdm0/0/0/1", + "portName": null, + "ifIndex": 12, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "dwdm0/0/0/1", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "dwdm0/0/0/2", + "ifName": "dwdm0/0/0/2", + "portName": null, + "ifIndex": 13, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "dwdm0/0/0/2", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "dwdm0/0/2/1", + "ifName": "dwdm0/0/2/1", + "portName": null, + "ifIndex": 14, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "dwdm0/0/2/1", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "dwdm0/0/2/2", + "ifName": "dwdm0/0/2/2", + "portName": null, + "ifIndex": 15, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "dwdm0/0/2/2", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "dwdm0/0/0/3", + "ifName": "dwdm0/0/0/3", + "portName": null, + "ifIndex": 16, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "dwdm0/0/0/3", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "dwdm0/0/2/3", + "ifName": "dwdm0/0/2/3", + "portName": null, + "ifIndex": 17, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "dwdm0/0/2/3", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/0", + "ifName": "TenGigE0/0/0/0", + "portName": null, + "ifIndex": 18, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigE0/0/0/0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/1", + "ifName": "TenGigE0/0/0/1", + "portName": null, + "ifIndex": 19, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "LAB01-PE04 xe-0/1/0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/2", + "ifName": "TenGigE0/0/0/2", + "portName": null, + "ifIndex": 20, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigE0/0/0/2", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/3", + "ifName": "TenGigE0/0/0/3", + "portName": null, + "ifIndex": 21, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "LAB01-PE02 Te0/0/27", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/1/0", + "ifName": "GigabitEthernet0/0/1/0", + "portName": null, + "ifIndex": 22, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/1/0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/1/1", + "ifName": "GigabitEthernet0/0/1/1", + "portName": null, + "ifIndex": 23, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "AR1220C-CPE01 Gi0/0/9", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/1/2", + "ifName": "GigabitEthernet0/0/1/2", + "portName": null, + "ifIndex": 24, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/1/2", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/1/3", + "ifName": "GigabitEthernet0/0/1/3", + "portName": null, + "ifIndex": 25, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/1/3", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/1/4", + "ifName": "GigabitEthernet0/0/1/4", + "portName": null, + "ifIndex": 26, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/1/4", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/1/5", + "ifName": "GigabitEthernet0/0/1/5", + "portName": null, + "ifIndex": 27, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/1/5", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/1/6", + "ifName": "GigabitEthernet0/0/1/6", + "portName": null, + "ifIndex": 28, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/1/6", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/1/7", + "ifName": "GigabitEthernet0/0/1/7", + "portName": null, + "ifIndex": 29, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/1/7", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/1/8", + "ifName": "GigabitEthernet0/0/1/8", + "portName": null, + "ifIndex": 30, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/1/8", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/1/9", + "ifName": "GigabitEthernet0/0/1/9", + "portName": null, + "ifIndex": 31, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/1/9", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/1/10", + "ifName": "GigabitEthernet0/0/1/10", + "portName": null, + "ifIndex": 32, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/1/10", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/1/11", + "ifName": "GigabitEthernet0/0/1/11", + "portName": null, + "ifIndex": 33, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/1/11", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/1/12", + "ifName": "GigabitEthernet0/0/1/12", + "portName": null, + "ifIndex": 34, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/1/12", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/1/13", + "ifName": "GigabitEthernet0/0/1/13", + "portName": null, + "ifIndex": 35, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/1/13", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/1/14", + "ifName": "GigabitEthernet0/0/1/14", + "portName": null, + "ifIndex": 36, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/1/14", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/1/15", + "ifName": "GigabitEthernet0/0/1/15", + "portName": null, + "ifIndex": 37, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/1/15", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/1/16", + "ifName": "GigabitEthernet0/0/1/16", + "portName": null, + "ifIndex": 38, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/1/16", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/1/17", + "ifName": "GigabitEthernet0/0/1/17", + "portName": null, + "ifIndex": 39, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/1/17", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/1/18", + "ifName": "GigabitEthernet0/0/1/18", + "portName": null, + "ifIndex": 40, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/1/18", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/1/19", + "ifName": "GigabitEthernet0/0/1/19", + "portName": null, + "ifIndex": 41, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/1/19", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/2/0", + "ifName": "TenGigE0/0/2/0", + "portName": null, + "ifIndex": 42, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "LAB01-P01 Te0/0/0/1", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/2/1", + "ifName": "TenGigE0/0/2/1", + "portName": null, + "ifIndex": 43, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigE0/0/2/1", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/2/2", + "ifName": "TenGigE0/0/2/2", + "portName": null, + "ifIndex": 44, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "LAB01-PE03 Te0/0/0/8", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/2/3", + "ifName": "TenGigE0/0/2/3", + "portName": null, + "ifIndex": 45, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigE0/0/2/3", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Loopback0", + "ifName": "Loopback0", + "portName": null, + "ifIndex": 54, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "softwareLoopback", + "ifAlias": "Loopback0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/1/1.10", + "ifName": "GigabitEthernet0/0/1/1.10", + "portName": null, + "ifIndex": 73, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "AR1220C-CPE01 Gi0/0/9.10", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "PW-Ether1", + "ifName": "PW-Ether1", + "portName": null, + "ifIndex": 74, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ifPwType", + "ifAlias": "AR1220C-CPE01 Gi0/0/10.10", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Loopback10001", + "ifName": "Loopback10001", + "portName": null, + "ifIndex": 76, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "softwareLoopback", + "ifAlias": "Loopback10001", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ControlEthernet0/RSP0/CPU0", + "ifName": "ControlEthernet0/RSP0/CPU0", + "portName": null, + "ifIndex": 1073741825, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ControlEthernet0/RSP0/CPU0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ControlEthernet0/RSP0/CPU0/S0/0", + "ifName": "ControlEthernet0/RSP0/CPU0/S0/0", + "portName": null, + "ifIndex": 1073741826, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ControlEthernet0/RSP0/CPU0/S0/0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ControlEthernet0/RSP0/CPU0/S0/1", + "ifName": "ControlEthernet0/RSP0/CPU0/S0/1", + "portName": null, + "ifIndex": 1073741827, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ControlEthernet0/RSP0/CPU0/S0/1", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ControlEthernet0/RSP0/CPU0/S0/2", + "ifName": "ControlEthernet0/RSP0/CPU0/S0/2", + "portName": null, + "ifIndex": 1073741828, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ControlEthernet0/RSP0/CPU0/S0/2", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ControlEthernet0/RSP0/CPU0/S0/3", + "ifName": "ControlEthernet0/RSP0/CPU0/S0/3", + "portName": null, + "ifIndex": 1073741829, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ControlEthernet0/RSP0/CPU0/S0/3", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ControlEthernet0/RSP0/CPU0/S0/4", + "ifName": "ControlEthernet0/RSP0/CPU0/S0/4", + "portName": null, + "ifIndex": 1073741830, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ControlEthernet0/RSP0/CPU0/S0/4", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ControlEthernet0/RSP0/CPU0/S0/5", + "ifName": "ControlEthernet0/RSP0/CPU0/S0/5", + "portName": null, + "ifIndex": 1073741831, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ControlEthernet0/RSP0/CPU0/S0/5", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ControlEthernet0/RSP0/CPU0/S0/6", + "ifName": "ControlEthernet0/RSP0/CPU0/S0/6", + "portName": null, + "ifIndex": 1073741832, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ControlEthernet0/RSP0/CPU0/S0/6", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ControlEthernet0/RSP0/CPU0/S0/7", + "ifName": "ControlEthernet0/RSP0/CPU0/S0/7", + "portName": null, + "ifIndex": 1073741833, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ControlEthernet0/RSP0/CPU0/S0/7", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ControlEthernet0/RSP0/CPU0/S0/8", + "ifName": "ControlEthernet0/RSP0/CPU0/S0/8", + "portName": null, + "ifIndex": 1073741834, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ControlEthernet0/RSP0/CPU0/S0/8", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ControlEthernet0/RSP0/CPU0/S0/9", + "ifName": "ControlEthernet0/RSP0/CPU0/S0/9", + "portName": null, + "ifIndex": 1073741835, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ControlEthernet0/RSP0/CPU0/S0/9", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ControlEthernet0/RSP0/CPU0/S0/10", + "ifName": "ControlEthernet0/RSP0/CPU0/S0/10", + "portName": null, + "ifIndex": 1073741836, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ControlEthernet0/RSP0/CPU0/S0/10", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ControlEthernet0/RSP0/CPU0/S0/11", + "ifName": "ControlEthernet0/RSP0/CPU0/S0/11", + "portName": null, + "ifIndex": 1073741837, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ControlEthernet0/RSP0/CPU0/S0/11", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ControlEthernet0/RSP0/CPU0/S0/12", + "ifName": "ControlEthernet0/RSP0/CPU0/S0/12", + "portName": null, + "ifIndex": 1073741838, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ControlEthernet0/RSP0/CPU0/S0/12", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ControlEthernet0/RSP0/CPU0/S0/13", + "ifName": "ControlEthernet0/RSP0/CPU0/S0/13", + "portName": null, + "ifIndex": 1073741839, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ControlEthernet0/RSP0/CPU0/S0/13", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ControlEthernet0/RSP0/CPU0/S0/14", + "ifName": "ControlEthernet0/RSP0/CPU0/S0/14", + "portName": null, + "ifIndex": 1073741840, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ControlEthernet0/RSP0/CPU0/S0/14", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ControlEthernet0/RSP0/CPU0/S0/15", + "ifName": "ControlEthernet0/RSP0/CPU0/S0/15", + "portName": null, + "ifIndex": 1073741841, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ControlEthernet0/RSP0/CPU0/S0/15", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ControlEthernet0/RSP0/CPU0/S0/16", + "ifName": "ControlEthernet0/RSP0/CPU0/S0/16", + "portName": null, + "ifIndex": 1073741842, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ControlEthernet0/RSP0/CPU0/S0/16", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ControlEthernet0/RSP0/CPU0/S0/17", + "ifName": "ControlEthernet0/RSP0/CPU0/S0/17", + "portName": null, + "ifIndex": 1073741843, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ControlEthernet0/RSP0/CPU0/S0/17", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ControlEthernet0/RSP0/CPU0/S0/18", + "ifName": "ControlEthernet0/RSP0/CPU0/S0/18", + "portName": null, + "ifIndex": 1073741844, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ControlEthernet0/RSP0/CPU0/S0/18", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ControlEthernet0/RSP0/CPU0/S0/19", + "ifName": "ControlEthernet0/RSP0/CPU0/S0/19", + "portName": null, + "ifIndex": 1073741845, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ControlEthernet0/RSP0/CPU0/S0/19", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ControlEthernet0/RSP0/CPU0/S0/20", + "ifName": "ControlEthernet0/RSP0/CPU0/S0/20", + "portName": null, + "ifIndex": 1073741846, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ControlEthernet0/RSP0/CPU0/S0/20", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ControlEthernet0/RSP0/CPU0/S0/21", + "ifName": "ControlEthernet0/RSP0/CPU0/S0/21", + "portName": null, + "ifIndex": 1073741847, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ControlEthernet0/RSP0/CPU0/S0/21", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ControlEthernet0/RSP0/CPU0/S0/22", + "ifName": "ControlEthernet0/RSP0/CPU0/S0/22", + "portName": null, + "ifIndex": 1073741848, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ControlEthernet0/RSP0/CPU0/S0/22", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + } + ] + }, + "poller": { + "ports": [ + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Null0", + "ifName": "Null0", + "portName": null, + "ifIndex": 2, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "other", + "ifAlias": "Null0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "MgmtEth0/RSP0/CPU0/0", + "ifName": "MgmtEth0/RSP0/CPU0/0", + "portName": null, + "ifIndex": 3, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "MgmtEth0/RSP0/CPU0/0", + "ifPhysAddress": "70e4220ea836", + "ifHardType": null, + "ifLastChange": 3132, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 38659931394, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 103084509039, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 4294967259, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 4294967282, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 516600842144, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 568332171008, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 6318, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 196605, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 47244768769, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 30064771067, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 42954966381, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 8589934590, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "MgmtEth0/RSP0/CPU0/1", + "ifName": "MgmtEth0/RSP0/CPU0/1", + "portName": null, + "ifIndex": 4, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "MgmtEth0/RSP0/CPU0/1", + "ifPhysAddress": "70e4220ea837", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 17179869180, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 25769803770, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 4294967262, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 4294967283, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 137438953439, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 257698037698, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 12884901885, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 21474836475, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 4294967295, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 17179869180, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "dwdm0/0/0/0", + "ifName": "dwdm0/0/0/0", + "portName": null, + "ifIndex": 10, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "dwdm0/0/0/0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 15850, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "dwdm0/0/2/0", + "ifName": "dwdm0/0/2/0", + "portName": null, + "ifIndex": 11, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "dwdm0/0/2/0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 15851, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "dwdm0/0/0/1", + "ifName": "dwdm0/0/0/1", + "portName": null, + "ifIndex": 12, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "dwdm0/0/0/1", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 15850, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "dwdm0/0/0/2", + "ifName": "dwdm0/0/0/2", + "portName": null, + "ifIndex": 13, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "dwdm0/0/0/2", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 15850, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "dwdm0/0/2/1", + "ifName": "dwdm0/0/2/1", + "portName": null, + "ifIndex": 14, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "dwdm0/0/2/1", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 15851, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "dwdm0/0/2/2", + "ifName": "dwdm0/0/2/2", + "portName": null, + "ifIndex": 15, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "dwdm0/0/2/2", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 15851, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "dwdm0/0/0/3", + "ifName": "dwdm0/0/0/3", + "portName": null, + "ifIndex": 16, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "dwdm0/0/0/3", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 15850, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "dwdm0/0/2/3", + "ifName": "dwdm0/0/2/3", + "portName": null, + "ifIndex": 17, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "dwdm0/0/2/3", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 15851, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/0", + "ifName": "TenGigE0/0/0/0", + "portName": null, + "ifIndex": 18, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigE0/0/0/0", + "ifPhysAddress": "70e4220eaa82", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/1", + "ifName": "TenGigE0/0/0/1", + "portName": null, + "ifIndex": 19, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "LAB01-PE04 xe-0/1/0", + "ifPhysAddress": "70e4220eaa83", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/2", + "ifName": "TenGigE0/0/0/2", + "portName": null, + "ifIndex": 20, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigE0/0/0/2", + "ifPhysAddress": "70e4220eaa84", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/3", + "ifName": "TenGigE0/0/0/3", + "portName": null, + "ifIndex": 21, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "LAB01-PE02 Te0/0/27", + "ifPhysAddress": "70e4220eaa85", + "ifHardType": null, + "ifLastChange": 356389576, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 60549009, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 60251326, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 4, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 4333398764, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 4341507867, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 4, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 4, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 5, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 3036668, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 3309799, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/1/0", + "ifName": "GigabitEthernet0/0/1/0", + "portName": null, + "ifIndex": 22, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/1/0", + "ifPhysAddress": "70e4220eaa98", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/1/1", + "ifName": "GigabitEthernet0/0/1/1", + "portName": null, + "ifIndex": 23, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "AR1220C-CPE01 Gi0/0/9", + "ifPhysAddress": "70e4220eaa99", + "ifHardType": null, + "ifLastChange": 17501, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 2733411, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 2866035, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 317474101, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 358902111, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 2, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 1, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 419577, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 838393, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/1/2", + "ifName": "GigabitEthernet0/0/1/2", + "portName": null, + "ifIndex": 24, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/1/2", + "ifPhysAddress": "70e4220eaa9a", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/1/3", + "ifName": "GigabitEthernet0/0/1/3", + "portName": null, + "ifIndex": 25, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/1/3", + "ifPhysAddress": "70e4220eaa9b", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/1/4", + "ifName": "GigabitEthernet0/0/1/4", + "portName": null, + "ifIndex": 26, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/1/4", + "ifPhysAddress": "70e4220eaa9c", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/1/5", + "ifName": "GigabitEthernet0/0/1/5", + "portName": null, + "ifIndex": 27, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/1/5", + "ifPhysAddress": "70e4220eaa9d", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/1/6", + "ifName": "GigabitEthernet0/0/1/6", + "portName": null, + "ifIndex": 28, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/1/6", + "ifPhysAddress": "70e4220eaa9e", + "ifHardType": null, + "ifLastChange": 348234006, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/1/7", + "ifName": "GigabitEthernet0/0/1/7", + "portName": null, + "ifIndex": 29, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/1/7", + "ifPhysAddress": "70e4220eaa9f", + "ifHardType": null, + "ifLastChange": 348234007, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/1/8", + "ifName": "GigabitEthernet0/0/1/8", + "portName": null, + "ifIndex": 30, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/1/8", + "ifPhysAddress": "70e4220eaaa0", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/1/9", + "ifName": "GigabitEthernet0/0/1/9", + "portName": null, + "ifIndex": 31, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/1/9", + "ifPhysAddress": "70e4220eaaa1", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/1/10", + "ifName": "GigabitEthernet0/0/1/10", + "portName": null, + "ifIndex": 32, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/1/10", + "ifPhysAddress": "70e4220eaaa2", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/1/11", + "ifName": "GigabitEthernet0/0/1/11", + "portName": null, + "ifIndex": 33, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/1/11", + "ifPhysAddress": "70e4220eaaa3", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/1/12", + "ifName": "GigabitEthernet0/0/1/12", + "portName": null, + "ifIndex": 34, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/1/12", + "ifPhysAddress": "70e4220eaaa4", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/1/13", + "ifName": "GigabitEthernet0/0/1/13", + "portName": null, + "ifIndex": 35, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/1/13", + "ifPhysAddress": "70e4220eaaa5", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/1/14", + "ifName": "GigabitEthernet0/0/1/14", + "portName": null, + "ifIndex": 36, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/1/14", + "ifPhysAddress": "70e4220eaaa6", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/1/15", + "ifName": "GigabitEthernet0/0/1/15", + "portName": null, + "ifIndex": 37, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/1/15", + "ifPhysAddress": "70e4220eaaa7", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/1/16", + "ifName": "GigabitEthernet0/0/1/16", + "portName": null, + "ifIndex": 38, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/1/16", + "ifPhysAddress": "70e4220eaaa8", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/1/17", + "ifName": "GigabitEthernet0/0/1/17", + "portName": null, + "ifIndex": 39, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/1/17", + "ifPhysAddress": "70e4220eaaa9", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/1/18", + "ifName": "GigabitEthernet0/0/1/18", + "portName": null, + "ifIndex": 40, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/1/18", + "ifPhysAddress": "70e4220eaaaa", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/1/19", + "ifName": "GigabitEthernet0/0/1/19", + "portName": null, + "ifIndex": 41, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/1/19", + "ifPhysAddress": "70e4220eaaab", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/2/0", + "ifName": "TenGigE0/0/2/0", + "portName": null, + "ifIndex": 42, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "LAB01-P01 Te0/0/0/1", + "ifPhysAddress": "70e4220eaa80", + "ifHardType": null, + "ifLastChange": 558278955, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 38874586, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 41360023, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 3, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 5307668218, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 5611060252, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 26, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 6, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 6, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 2774349, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 3310015, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/2/1", + "ifName": "TenGigE0/0/2/1", + "portName": null, + "ifIndex": 43, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigE0/0/2/1", + "ifPhysAddress": "70e4220eaa81", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/2/2", + "ifName": "TenGigE0/0/2/2", + "portName": null, + "ifIndex": 44, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "LAB01-PE03 Te0/0/0/8", + "ifPhysAddress": "70e4220eaa96", + "ifHardType": null, + "ifLastChange": 299370578, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 60337381, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 60332937, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 2, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 4199621725, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 4199067287, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 29, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 3, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 2, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 4, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 3594340, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 3593795, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/2/3", + "ifName": "TenGigE0/0/2/3", + "portName": null, + "ifIndex": 45, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigE0/0/2/3", + "ifPhysAddress": "70e4220eaa97", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Loopback0", + "ifName": "Loopback0", + "portName": null, + "ifIndex": 54, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "softwareLoopback", + "ifAlias": "Loopback0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 2333, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/1/1.10", + "ifName": "GigabitEthernet0/0/1/1.10", + "portName": null, + "ifIndex": 73, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 9220, + "ifType": "l2vlan", + "ifAlias": "AR1220C-CPE01 Gi0/0/9.10", + "ifPhysAddress": "70e4220eaa99", + "ifHardType": null, + "ifLastChange": 17502, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 2733410, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 2866030, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 317473980, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 357964851, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 2, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 1, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 419577, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 838391, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "PW-Ether1", + "ifName": "PW-Ether1", + "portName": null, + "ifIndex": 74, + "ifSpeed": 10000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 9216, + "ifType": "ifPwType", + "ifAlias": "AR1220C-CPE01 Gi0/0/10.10", + "ifPhysAddress": "70e4220f96de", + "ifHardType": null, + "ifLastChange": 736471258, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 2604317, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 2222483, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 284000819, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 274343524, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 2, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 6, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 419482, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 698368, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Loopback10001", + "ifName": "Loopback10001", + "portName": null, + "ifIndex": 76, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "softwareLoopback", + "ifAlias": "Loopback10001", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 2333, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ControlEthernet0/RSP0/CPU0", + "ifName": "ControlEthernet0/RSP0/CPU0", + "portName": null, + "ifIndex": 1073741825, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": null, + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ControlEthernet0/RSP0/CPU0", + "ifPhysAddress": "000000000000", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ControlEthernet0/RSP0/CPU0/S0/0", + "ifName": "ControlEthernet0/RSP0/CPU0/S0/0", + "portName": null, + "ifIndex": 1073741826, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": null, + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ControlEthernet0/RSP0/CPU0/S0/0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 130339871, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 65252921, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 20744926539, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 9054348933, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ControlEthernet0/RSP0/CPU0/S0/1", + "ifName": "ControlEthernet0/RSP0/CPU0/S0/1", + "portName": null, + "ifIndex": 1073741827, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": null, + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ControlEthernet0/RSP0/CPU0/S0/1", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 91502946, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 33951957, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 14379862979, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 4584527587, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ControlEthernet0/RSP0/CPU0/S0/2", + "ifName": "ControlEthernet0/RSP0/CPU0/S0/2", + "portName": null, + "ifIndex": 1073741828, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": null, + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ControlEthernet0/RSP0/CPU0/S0/2", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 550786, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 62573154511, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 5015, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 122882161, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ControlEthernet0/RSP0/CPU0/S0/3", + "ifName": "ControlEthernet0/RSP0/CPU0/S0/3", + "portName": null, + "ifIndex": 1073741829, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": null, + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ControlEthernet0/RSP0/CPU0/S0/3", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 13566, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 21, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ControlEthernet0/RSP0/CPU0/S0/4", + "ifName": "ControlEthernet0/RSP0/CPU0/S0/4", + "portName": null, + "ifIndex": 1073741830, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": null, + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ControlEthernet0/RSP0/CPU0/S0/4", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 193756280, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 206008289, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 39812262818, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 87004547953, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 2868, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 2148, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 79972709, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 42909622, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ControlEthernet0/RSP0/CPU0/S0/5", + "ifName": "ControlEthernet0/RSP0/CPU0/S0/5", + "portName": null, + "ifIndex": 1073741831, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": null, + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ControlEthernet0/RSP0/CPU0/S0/5", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 4, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 60768, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 1, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 190, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ControlEthernet0/RSP0/CPU0/S0/6", + "ifName": "ControlEthernet0/RSP0/CPU0/S0/6", + "portName": null, + "ifIndex": 1073741832, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": null, + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ControlEthernet0/RSP0/CPU0/S0/6", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 206008293, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 193756276, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 87004534659, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 39812215616, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 2148, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 2867, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 42909601, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 79972540, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ControlEthernet0/RSP0/CPU0/S0/7", + "ifName": "ControlEthernet0/RSP0/CPU0/S0/7", + "portName": null, + "ifIndex": 1073741833, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": null, + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ControlEthernet0/RSP0/CPU0/S0/7", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 95030165, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 92953945, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 12827398430, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 12645800818, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ControlEthernet0/RSP0/CPU0/S0/8", + "ifName": "ControlEthernet0/RSP0/CPU0/S0/8", + "portName": null, + "ifIndex": 1073741834, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": null, + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ControlEthernet0/RSP0/CPU0/S0/8", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ControlEthernet0/RSP0/CPU0/S0/9", + "ifName": "ControlEthernet0/RSP0/CPU0/S0/9", + "portName": null, + "ifIndex": 1073741835, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": null, + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ControlEthernet0/RSP0/CPU0/S0/9", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ControlEthernet0/RSP0/CPU0/S0/10", + "ifName": "ControlEthernet0/RSP0/CPU0/S0/10", + "portName": null, + "ifIndex": 1073741836, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": null, + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ControlEthernet0/RSP0/CPU0/S0/10", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ControlEthernet0/RSP0/CPU0/S0/11", + "ifName": "ControlEthernet0/RSP0/CPU0/S0/11", + "portName": null, + "ifIndex": 1073741837, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": null, + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ControlEthernet0/RSP0/CPU0/S0/11", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 16123153, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 21895718, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 4674168341, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 5802495705, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ControlEthernet0/RSP0/CPU0/S0/12", + "ifName": "ControlEthernet0/RSP0/CPU0/S0/12", + "portName": null, + "ifIndex": 1073741838, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": null, + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ControlEthernet0/RSP0/CPU0/S0/12", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 5424911, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 904884188, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ControlEthernet0/RSP0/CPU0/S0/13", + "ifName": "ControlEthernet0/RSP0/CPU0/S0/13", + "portName": null, + "ifIndex": 1073741839, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": null, + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ControlEthernet0/RSP0/CPU0/S0/13", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 4, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 13566, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 47202, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 1, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 21, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 169, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ControlEthernet0/RSP0/CPU0/S0/14", + "ifName": "ControlEthernet0/RSP0/CPU0/S0/14", + "portName": null, + "ifIndex": 1073741840, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": null, + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ControlEthernet0/RSP0/CPU0/S0/14", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 7, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 75162, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 1, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 260, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ControlEthernet0/RSP0/CPU0/S0/15", + "ifName": "ControlEthernet0/RSP0/CPU0/S0/15", + "portName": null, + "ifIndex": 1073741841, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": null, + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ControlEthernet0/RSP0/CPU0/S0/15", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 7, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 75162, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 1, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 260, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ControlEthernet0/RSP0/CPU0/S0/16", + "ifName": "ControlEthernet0/RSP0/CPU0/S0/16", + "portName": null, + "ifIndex": 1073741842, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": null, + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ControlEthernet0/RSP0/CPU0/S0/16", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ControlEthernet0/RSP0/CPU0/S0/17", + "ifName": "ControlEthernet0/RSP0/CPU0/S0/17", + "portName": null, + "ifIndex": 1073741843, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": null, + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ControlEthernet0/RSP0/CPU0/S0/17", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ControlEthernet0/RSP0/CPU0/S0/18", + "ifName": "ControlEthernet0/RSP0/CPU0/S0/18", + "portName": null, + "ifIndex": 1073741844, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": null, + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ControlEthernet0/RSP0/CPU0/S0/18", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ControlEthernet0/RSP0/CPU0/S0/19", + "ifName": "ControlEthernet0/RSP0/CPU0/S0/19", + "portName": null, + "ifIndex": 1073741845, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": null, + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ControlEthernet0/RSP0/CPU0/S0/19", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ControlEthernet0/RSP0/CPU0/S0/20", + "ifName": "ControlEthernet0/RSP0/CPU0/S0/20", + "portName": null, + "ifIndex": 1073741846, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": null, + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ControlEthernet0/RSP0/CPU0/S0/20", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ControlEthernet0/RSP0/CPU0/S0/21", + "ifName": "ControlEthernet0/RSP0/CPU0/S0/21", + "portName": null, + "ifIndex": 1073741847, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": null, + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ControlEthernet0/RSP0/CPU0/S0/21", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ControlEthernet0/RSP0/CPU0/S0/22", + "ifName": "ControlEthernet0/RSP0/CPU0/S0/22", + "portName": null, + "ifIndex": 1073741848, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": null, + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ControlEthernet0/RSP0/CPU0/S0/22", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + } + ] + } + }, + "processors": { + "discovery": { + "processors": [ + { + "entPhysicalIndex": 52690955, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.9.9.109.1.1.1.1.8.2", + "processor_index": "2", + "processor_type": "cpm", + "processor_usage": 3, + "processor_descr": "module 0/RSP0/CPU0", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 18788073, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.9.9.109.1.1.1.1.8.2082", + "processor_index": "2082", + "processor_type": "cpm", + "processor_usage": 3, + "processor_descr": "module 0/0/CPU0", + "processor_precision": 1, + "processor_perc_warn": 75 + } + ] + }, + "poller": "matches discovery" + }, + "mempools": { + "discovery": { + "mempools": [ + { + "mempool_index": "18788073.1", + "entPhysicalIndex": 18788073, + "mempool_type": "cemp", + "mempool_class": "system", + "mempool_precision": 1, + "mempool_descr": "Module 0/0/CPU0 - Processor", + "mempool_perc": 41, + "mempool_perc_oid": null, + "mempool_used": 3457404492, + "mempool_used_oid": ".1.3.6.1.4.1.9.9.221.1.1.1.1.18.18788073.1", + "mempool_free": 4915748864, + "mempool_free_oid": ".1.3.6.1.4.1.9.9.221.1.1.1.1.20.18788073.1", + "mempool_total": 8373153356, + "mempool_total_oid": null, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + }, + { + "mempool_index": "18788073.2", + "entPhysicalIndex": 18788073, + "mempool_type": "cemp", + "mempool_class": "system", + "mempool_precision": 1, + "mempool_descr": "Module 0/0/CPU0 - Reserved", + "mempool_perc": 100, + "mempool_perc_oid": null, + "mempool_used": 134217728, + "mempool_used_oid": ".1.3.6.1.4.1.9.9.221.1.1.1.1.18.18788073.2", + "mempool_free": 0, + "mempool_free_oid": ".1.3.6.1.4.1.9.9.221.1.1.1.1.20.18788073.2", + "mempool_total": 134217728, + "mempool_total_oid": null, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + }, + { + "mempool_index": "18788073.3", + "entPhysicalIndex": 18788073, + "mempool_type": "cemp", + "mempool_class": "system", + "mempool_precision": 1, + "mempool_descr": "Module 0/0/CPU0 - Image", + "mempool_perc": 100, + "mempool_perc_oid": null, + "mempool_used": 82270892, + "mempool_used_oid": ".1.3.6.1.4.1.9.9.221.1.1.1.1.18.18788073.3", + "mempool_free": 0, + "mempool_free_oid": ".1.3.6.1.4.1.9.9.221.1.1.1.1.20.18788073.3", + "mempool_total": 82270892, + "mempool_total_oid": null, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + }, + { + "mempool_index": "52690955.1", + "entPhysicalIndex": 52690955, + "mempool_type": "cemp", + "mempool_class": "system", + "mempool_precision": 1, + "mempool_descr": "Module 0/RSP0/CPU0 - Processor", + "mempool_perc": 38, + "mempool_perc_oid": null, + "mempool_used": 3145827528, + "mempool_used_oid": ".1.3.6.1.4.1.9.9.221.1.1.1.1.18.52690955.1", + "mempool_free": 5236527104, + "mempool_free_oid": ".1.3.6.1.4.1.9.9.221.1.1.1.1.20.52690955.1", + "mempool_total": 8382354632, + "mempool_total_oid": null, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + }, + { + "mempool_index": "52690955.2", + "entPhysicalIndex": 52690955, + "mempool_type": "cemp", + "mempool_class": "system", + "mempool_precision": 1, + "mempool_descr": "Module 0/RSP0/CPU0 - Reserved", + "mempool_perc": 100, + "mempool_perc_oid": null, + "mempool_used": 134217728, + "mempool_used_oid": ".1.3.6.1.4.1.9.9.221.1.1.1.1.18.52690955.2", + "mempool_free": 0, + "mempool_free_oid": ".1.3.6.1.4.1.9.9.221.1.1.1.1.20.52690955.2", + "mempool_total": 134217728, + "mempool_total_oid": null, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + }, + { + "mempool_index": "52690955.3", + "entPhysicalIndex": 52690955, + "mempool_type": "cemp", + "mempool_class": "system", + "mempool_precision": 1, + "mempool_descr": "Module 0/RSP0/CPU0 - Image", + "mempool_perc": 100, + "mempool_perc_oid": null, + "mempool_used": 73069616, + "mempool_used_oid": ".1.3.6.1.4.1.9.9.221.1.1.1.1.18.52690955.3", + "mempool_free": 0, + "mempool_free_oid": ".1.3.6.1.4.1.9.9.221.1.1.1.1.20.52690955.3", + "mempool_total": 73069616, + "mempool_total_oid": null, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + } + ] + }, + "poller": "matches discovery" + }, + "vrf": { + "discovery": { + "vrfs": [ + { + "vrf_oid": "4.109.103.109.116", + "vrf_name": "mgmt", + "bgpLocalAs": null, + "mplsVpnVrfRouteDistinguisher": "", + "mplsVpnVrfDescription": "", + "ifIndices": "3" + }, + { + "vrf_oid": "9.84.86.80.78.49.48.48.48.49", + "vrf_name": "TVPN10001", + "bgpLocalAs": null, + "mplsVpnVrfRouteDistinguisher": "10.246.0.1:10001", + "mplsVpnVrfDescription": "Test VRF", + "ifIndices": "73,74,76" + } + ] + } + }, + "sensors": { + "discovery": { + "sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.13795549", + "sensor_index": "13795549", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module Mau 0/0/2/2 - Current 0/0/2/2", + "group": null, + "sensor_divisor": 10000, + "sensor_multiplier": 1, + "sensor_current": 0.0329, + "sensor_limit": 0.085, + "sensor_limit_warn": 0.08, + "sensor_limit_low": 0.01, + "sensor_limit_low_warn": 0.012, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "44", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.1930929", + "sensor_index": "1930929", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module Mau 0/0/0/3 - Current 0/0/0/3", + "group": null, + "sensor_divisor": 10000, + "sensor_multiplier": 1, + "sensor_current": 0.0305, + "sensor_limit": 0.085, + "sensor_limit_warn": 0.08, + "sensor_limit_low": 0.015, + "sensor_limit_low_warn": 0.02, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "21", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.31558363", + "sensor_index": "31558363", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module Mau 0/0/2/0 - Current 0/0/2/0", + "group": null, + "sensor_divisor": 10000, + "sensor_multiplier": 1, + "sensor_current": 0.0305, + "sensor_limit": 0.085, + "sensor_limit_warn": 0.08, + "sensor_limit_low": 0.01, + "sensor_limit_low_warn": 0.012, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "42", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.40983240", + "sensor_index": "40983240", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module Mau 0/0/1/1 - Current 0/0/1/1", + "group": null, + "sensor_divisor": 10000, + "sensor_multiplier": 1, + "sensor_current": 0.0244, + "sensor_limit": 0.075, + "sensor_limit_warn": 0.07, + "sensor_limit_low": 0.003, + "sensor_limit_low_warn": 0.004, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "23", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.49413261", + "sensor_index": "49413261", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/PS0/M1/SP - Current 0/PS0/M1/SP", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 14.125, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "49413261", + "entPhysicalIndex_measured": "2237736", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.53687180", + "sensor_index": "53687180", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/PS0/M0/SP - Current 0/PS0/M0/SP", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 13.5, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "53687180", + "entPhysicalIndex_measured": "19750579", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.60048938", + "sensor_index": "60048938", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module Mau 0/0/1/3 - Current 0/0/1/3", + "group": null, + "sensor_divisor": 10000, + "sensor_multiplier": 1, + "sensor_current": -3.2768, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "25", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.18708510", + "sensor_index": "18708510", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "module mau 0/0/0/3 - power Rx 0/0/0/3", + "group": null, + "sensor_divisor": 10000000, + "sensor_multiplier": 1000, + "sensor_current": -2.331, + "sensor_limit": 1.0016368896604, + "sensor_limit_warn": -0.0026065489343204, + "sensor_limit_low": -18.013429130456, + "sensor_limit_low_warn": -16.00326278519, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "21", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": "mw_to_dbm", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.24205691", + "sensor_index": "24205691", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "module mau 0/0/1/1 - power Rx 0/0/1/1", + "group": null, + "sensor_divisor": 10000000, + "sensor_multiplier": 1000, + "sensor_current": -5.146, + "sensor_limit": 0.99991233544684, + "sensor_limit_warn": -2.9998893767789, + "sensor_limit_low": -23.01029995664, + "sensor_limit_low_warn": -18.996294548824, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "23", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": "mw_to_dbm", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.26493680", + "sensor_index": "26493680", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "module mau 0/0/1/3 - power Tx 0/0/1/3", + "group": null, + "sensor_divisor": 10000000, + "sensor_multiplier": 1000, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "25", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": "mw_to_dbm", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.30573226", + "sensor_index": "30573226", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "module mau 0/0/2/2 - power Rx 0/0/2/2", + "group": null, + "sensor_divisor": 10000000, + "sensor_multiplier": 1000, + "sensor_current": 0.521, + "sensor_limit": 0, + "sensor_limit_warn": -1.0001543745061, + "sensor_limit_low": -17.011469235903, + "sensor_limit_low_warn": -16.00326278519, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "44", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": "mw_to_dbm", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.35484503", + "sensor_index": "35484503", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "module mau 0/0/0/3 - power Tx 0/0/0/3", + "group": null, + "sensor_divisor": 10000000, + "sensor_multiplier": 1000, + "sensor_current": -1.75, + "sensor_limit": 2.0046744995016, + "sensor_limit_warn": 1.0016368896604, + "sensor_limit_low": -6.996219351293, + "sensor_limit_low_warn": -5.9963472665006, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "21", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": "mw_to_dbm", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.43271261", + "sensor_index": "43271261", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "module mau 0/0/1/3 - power Rx 0/0/1/3", + "group": null, + "sensor_divisor": 10000000, + "sensor_multiplier": 1000, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "25", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": "mw_to_dbm", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.47349219", + "sensor_index": "47349219", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "module mau 0/0/2/2 - power Tx 0/0/2/2", + "group": null, + "sensor_divisor": 10000000, + "sensor_multiplier": 1000, + "sensor_current": -1.195, + "sensor_limit": 3.9998505610245, + "sensor_limit_warn": 2.9998643613447, + "sensor_limit_low": -11.001794975729, + "sensor_limit_low_warn": -10, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "44", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": "mw_to_dbm", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.48336040", + "sensor_index": "48336040", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "module mau 0/0/2/0 - power Rx 0/0/2/0", + "group": null, + "sensor_divisor": 10000000, + "sensor_multiplier": 1000, + "sensor_current": -5.605, + "sensor_limit": 0, + "sensor_limit_warn": -1.0001543745061, + "sensor_limit_low": -16.98970004336, + "sensor_limit_low_warn": -16.00326278519, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "42", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": "mw_to_dbm", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.65113653", + "sensor_index": "65113653", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "module mau 0/0/2/0 - power Tx 0/0/2/0", + "group": null, + "sensor_divisor": 10000000, + "sensor_multiplier": 1000, + "sensor_current": -2.113, + "sensor_limit": 4.0000234592796, + "sensor_limit_warn": 3.0000820255381, + "sensor_limit_low": -11.001794975729, + "sensor_limit_low_warn": -10, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "42", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": "mw_to_dbm", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.7429666", + "sensor_index": "7429666", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "module mau 0/0/1/1 - power Tx 0/0/1/1", + "group": null, + "sensor_divisor": 10000000, + "sensor_multiplier": 1000, + "sensor_current": -4.492, + "sensor_limit": 0.99991233544684, + "sensor_limit_warn": -1.0001543745061, + "sensor_limit_low": -13.496924768681, + "sensor_limit_low_warn": -9.5000714307986, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "23", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": "mw_to_dbm", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.13805629", + "sensor_index": "13805629", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Fan1 0/FT0/SP - Speed 0/FT0/SP", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 7680, + "sensor_limit": 13824, + "sensor_limit_warn": 13780, + "sensor_limit_low": 6580, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "13805629", + "entPhysicalIndex_measured": "7358666", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.15177601", + "sensor_index": "15177601", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Fan5 0/FT0/SP - Speed 0/FT0/SP", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 7680, + "sensor_limit": 13824, + "sensor_limit_warn": 13780, + "sensor_limit_low": 6580, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "15177601", + "entPhysicalIndex_measured": "7357110", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.17977066", + "sensor_index": "17977066", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Fan4 0/FT0/SP - Speed 0/FT0/SP", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 7440, + "sensor_limit": 13392, + "sensor_limit_warn": 13780, + "sensor_limit_low": 6580, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "17977066", + "entPhysicalIndex_measured": "24133071", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.19441360", + "sensor_index": "19441360", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Fan11 0/FT0/SP - Speed 0/FT0/SP", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 7470, + "sensor_limit": 13446, + "sensor_limit_warn": 13780, + "sensor_limit_low": 6580, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "19441360", + "entPhysicalIndex_measured": "29047573", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.28595820", + "sensor_index": "28595820", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Fan6 0/FT0/SP - Speed 0/FT0/SP", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 7620, + "sensor_limit": 13716, + "sensor_limit_warn": 13780, + "sensor_limit_low": 6580, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "28595820", + "entPhysicalIndex_measured": "57688361", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.35064942", + "sensor_index": "35064942", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Fan9 0/FT0/SP - Speed 0/FT0/SP", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 7110, + "sensor_limit": 12798, + "sensor_limit_warn": 13780, + "sensor_limit_low": 6580, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "35064942", + "entPhysicalIndex_measured": "62601275", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.44949055", + "sensor_index": "44949055", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Fan3 0/FT0/SP - Speed 0/FT0/SP", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 7680, + "sensor_limit": 13824, + "sensor_limit_warn": 13780, + "sensor_limit_low": 6580, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "44949055", + "entPhysicalIndex_measured": "40910684", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.46324915", + "sensor_index": "46324915", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Fan10 0/FT0/SP - Speed 0/FT0/SP", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 7020, + "sensor_limit": 12636, + "sensor_limit_warn": 13780, + "sensor_limit_low": 6580, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "46324915", + "entPhysicalIndex_measured": "12269960", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.50514562", + "sensor_index": "50514562", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Fan13 0/FT0/SP - Speed 0/FT0/SP", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 7590, + "sensor_limit": 13662, + "sensor_limit_warn": 13780, + "sensor_limit_low": 6580, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "50514562", + "entPhysicalIndex_measured": "62599655", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.50864446", + "sensor_index": "50864446", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Fan8 0/FT0/SP - Speed 0/FT0/SP", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 9390, + "sensor_limit": 16902, + "sensor_limit_warn": 13780, + "sensor_limit_low": 6580, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "50864446", + "entPhysicalIndex_measured": "24137963", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.53442901", + "sensor_index": "53442901", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Fan12 0/FT0/SP - Speed 0/FT0/SP", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 7500, + "sensor_limit": 13500, + "sensor_limit_warn": 13780, + "sensor_limit_low": 6580, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "53442901", + "entPhysicalIndex_measured": "45825250", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.56880003", + "sensor_index": "56880003", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Fan7 0/FT0/SP - Speed 0/FT0/SP", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 7500, + "sensor_limit": 13500, + "sensor_limit_warn": 13780, + "sensor_limit_low": 6580, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "56880003", + "entPhysicalIndex_measured": "40915576", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.57269142", + "sensor_index": "57269142", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Fan0 0/FT0/SP - Speed 0/FT0/SP", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 7410, + "sensor_limit": 13338, + "sensor_limit_warn": 13780, + "sensor_limit_low": 6580, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "57269142", + "entPhysicalIndex_measured": "24134659", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.66237848", + "sensor_index": "66237848", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Fan2 0/FT0/SP - Speed 0/FT0/SP", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 7470, + "sensor_limit": 13446, + "sensor_limit_warn": 13780, + "sensor_limit_low": 6580, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "66237848", + "entPhysicalIndex_measured": "57689981", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.15858003", + "sensor_index": "15858003", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/PS0/M1/SP - Capacity 0/PS0/M1/SP", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 750, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "15858003", + "entPhysicalIndex_measured": "2237736", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.18708510", + "sensor_index": "18708510", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module Mau 0/0/0/3 - Power Rx 0/0/0/3", + "group": null, + "sensor_divisor": 10000000, + "sensor_multiplier": 1, + "sensor_current": 0.0005847, + "sensor_limit": 0.0012594, + "sensor_limit_warn": 0.0009994, + "sensor_limit_low": 1.58e-5, + "sensor_limit_low_warn": 2.51e-5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "21", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.20133606", + "sensor_index": "20133606", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/PS0/M0/SP - Capacity 0/PS0/M0/SP", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 750, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "20133606", + "entPhysicalIndex_measured": "19750579", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.24205691", + "sensor_index": "24205691", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module Mau 0/0/1/1 - Power Rx 0/0/1/1", + "group": null, + "sensor_divisor": 10000000, + "sensor_multiplier": 1, + "sensor_current": 0.0003058, + "sensor_limit": 0.0012589, + "sensor_limit_warn": 0.0005012, + "sensor_limit_low": 5.0e-6, + "sensor_limit_low_warn": 1.26e-5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "23", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.26493680", + "sensor_index": "26493680", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module Mau 0/0/1/3 - Power Tx 0/0/1/3", + "group": null, + "sensor_divisor": 10000000, + "sensor_multiplier": 1, + "sensor_current": -0.0032768, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "25", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.30573226", + "sensor_index": "30573226", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module Mau 0/0/2/2 - Power Rx 0/0/2/2", + "group": null, + "sensor_divisor": 10000000, + "sensor_multiplier": 1, + "sensor_current": 0.0011274, + "sensor_limit": 0.001, + "sensor_limit_warn": 0.0007943, + "sensor_limit_low": 1.99e-5, + "sensor_limit_low_warn": 2.51e-5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "44", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.35484503", + "sensor_index": "35484503", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module Mau 0/0/0/3 - Power Tx 0/0/0/3", + "group": null, + "sensor_divisor": 10000000, + "sensor_multiplier": 1, + "sensor_current": 0.0006684, + "sensor_limit": 0.0015866, + "sensor_limit_warn": 0.0012594, + "sensor_limit_low": 0.0001997, + "sensor_limit_low_warn": 0.0002514, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "21", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.43271261", + "sensor_index": "43271261", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module Mau 0/0/1/3 - Power Rx 0/0/1/3", + "group": null, + "sensor_divisor": 10000000, + "sensor_multiplier": 1, + "sensor_current": -0.0032768, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "25", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.47349219", + "sensor_index": "47349219", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module Mau 0/0/2/2 - Power Tx 0/0/2/2", + "group": null, + "sensor_divisor": 10000000, + "sensor_multiplier": 1, + "sensor_current": 0.0007594, + "sensor_limit": 0.0025118, + "sensor_limit_warn": 0.0019952, + "sensor_limit_low": 7.94e-5, + "sensor_limit_low_warn": 0.0001, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "44", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.48336040", + "sensor_index": "48336040", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module Mau 0/0/2/0 - Power Rx 0/0/2/0", + "group": null, + "sensor_divisor": 10000000, + "sensor_multiplier": 1, + "sensor_current": 0.0002751, + "sensor_limit": 0.001, + "sensor_limit_warn": 0.0007943, + "sensor_limit_low": 2.0e-5, + "sensor_limit_low_warn": 2.51e-5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "42", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.65113653", + "sensor_index": "65113653", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module Mau 0/0/2/0 - Power Tx 0/0/2/0", + "group": null, + "sensor_divisor": 10000000, + "sensor_multiplier": 1, + "sensor_current": 0.0006148, + "sensor_limit": 0.0025119, + "sensor_limit_warn": 0.0019953, + "sensor_limit_low": 7.94e-5, + "sensor_limit_low_warn": 0.0001, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "42", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.7429666", + "sensor_index": "7429666", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module Mau 0/0/1/1 - Power Tx 0/0/1/1", + "group": null, + "sensor_divisor": 10000000, + "sensor_multiplier": 1, + "sensor_current": 0.0003555, + "sensor_limit": 0.0012589, + "sensor_limit_warn": 0.0007943, + "sensor_limit_low": 4.47e-5, + "sensor_limit_low_warn": 0.0001122, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "23", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.14585855", + "sensor_index": "14585855", + "sensor_type": "cefcFRUPowerOperStatus", + "sensor_descr": "module 0/0/0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "14585855", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "cefcFRUPowerOperStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.15526104", + "sensor_index": "15526104", + "sensor_type": "cefcFRUPowerOperStatus", + "sensor_descr": "module mau 0/0/1/3", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "15526104", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "cefcFRUPowerOperStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.21657197", + "sensor_index": "21657197", + "sensor_type": "cefcFRUPowerOperStatus", + "sensor_descr": "power-module 0/PS0/M1/SP", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "21657197", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "cefcFRUPowerOperStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.30054631", + "sensor_index": "30054631", + "sensor_type": "cefcFRUPowerOperStatus", + "sensor_descr": "module mau 0/0/2/0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "30054631", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "cefcFRUPowerOperStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.31415605", + "sensor_index": "31415605", + "sensor_type": "cefcFRUPowerOperStatus", + "sensor_descr": "module mau 0/0/2/2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "31415605", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "cefcFRUPowerOperStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.37336673", + "sensor_index": "37336673", + "sensor_type": "cefcFRUPowerOperStatus", + "sensor_descr": "module mau 0/0/0/3", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "37336673", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "cefcFRUPowerOperStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.49125802", + "sensor_index": "49125802", + "sensor_type": "cefcFRUPowerOperStatus", + "sensor_descr": "module 0/0/1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "49125802", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "cefcFRUPowerOperStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.59316821", + "sensor_index": "59316821", + "sensor_type": "cefcFRUPowerOperStatus", + "sensor_descr": "fantray 0/FT0/SP", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "59316821", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "cefcFRUPowerOperStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.66227682", + "sensor_index": "66227682", + "sensor_type": "cefcFRUPowerOperStatus", + "sensor_descr": "module mau 0/0/1/1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "66227682", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "cefcFRUPowerOperStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.66531208", + "sensor_index": "66531208", + "sensor_type": "cefcFRUPowerOperStatus", + "sensor_descr": "power-module 0/PS0/M0/SP", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "66531208", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "cefcFRUPowerOperStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.176.1.1.4.0", + "sensor_index": "0", + "sensor_type": "cRFStatusPeerUnitState", + "sensor_descr": "VSS Peer State", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "0", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "cRFStatusPeerUnitState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.176.1.1.2.0", + "sensor_index": "0", + "sensor_type": "cRFStatusUnitState", + "sensor_descr": "VSS Device State", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "0", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "cRFStatusUnitState" + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.12905956", + "sensor_index": "12905956", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/RSP0/CPU0 - 0/RSP0/CPU0", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 36.3, + "sensor_limit": 86, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "12905956", + "entPhysicalIndex_measured": "52690955", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.14782338", + "sensor_index": "14782338", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module Mau 0/0/2/0 - 0/0/2/0", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 32.3, + "sensor_limit": 85, + "sensor_limit_warn": 80, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "42", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.16251165", + "sensor_index": "16251165", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/1 - 0/0/1", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 23.1, + "sensor_limit": 43.1, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "16251165", + "entPhysicalIndex_measured": "49125802", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.23538399", + "sensor_index": "23538399", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - 0/0/CPU0", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 36.9, + "sensor_limit": 86, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "23538399", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.23539987", + "sensor_index": "23539987", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - 0/0/CPU0", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 39.1, + "sensor_limit": 59.1, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "23539987", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.29683569", + "sensor_index": "29683569", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/RSP0/CPU0 - 0/RSP0/CPU0", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 21.3, + "sensor_limit": 41.3, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "29683569", + "entPhysicalIndex_measured": "52690955", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.29685125", + "sensor_index": "29685125", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/RSP0/CPU0 - 0/RSP0/CPU0", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 38, + "sensor_limit": 58, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "29685125", + "entPhysicalIndex_measured": "52690955", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.31370605", + "sensor_index": "31370605", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/0 - 0/0/0", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 29, + "sensor_limit": 86, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "31370605", + "entPhysicalIndex_measured": "14585855", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.33028842", + "sensor_index": "33028842", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/1 - 0/0/1", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 27.3, + "sensor_limit": 86, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "33028842", + "entPhysicalIndex_measured": "49125802", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.40316076", + "sensor_index": "40316076", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - 0/0/CPU0", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 31.7, + "sensor_limit": 51.7, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "40316076", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.40317664", + "sensor_index": "40317664", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - 0/0/CPU0", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 36.8, + "sensor_limit": 56.8, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "40317664", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.46461150", + "sensor_index": "46461150", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/RSP0/CPU0 - 0/RSP0/CPU0", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 23.9, + "sensor_limit": 43.9, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "46461150", + "entPhysicalIndex_measured": "52690955", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.46462738", + "sensor_index": "46462738", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/RSP0/CPU0 - 0/RSP0/CPU0", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 37.9, + "sensor_limit": 57.9, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "46462738", + "entPhysicalIndex_measured": "52690955", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.48148218", + "sensor_index": "48148218", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/0 - 0/0/0", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 26.5, + "sensor_limit": 46.5, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "48148218", + "entPhysicalIndex_measured": "14585855", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.52262180", + "sensor_index": "52262180", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module Mau 0/0/0/3 - 0/0/0/3", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 18.5, + "sensor_limit": 75, + "sensor_limit_warn": 70, + "sensor_limit_low": -6, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "21", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.57093689", + "sensor_index": "57093689", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - 0/0/CPU0", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 40.5, + "sensor_limit": 60.5, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "57093689", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.57760853", + "sensor_index": "57760853", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module Mau 0/0/1/1 - 0/0/1/1", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 16, + "sensor_limit": 90, + "sensor_limit_warn": 85, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "23", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.63237143", + "sensor_index": "63237143", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/RSP0/CPU0 - 0/RSP0/CPU0", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 27.7, + "sensor_limit": 47.7, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "63237143", + "entPhysicalIndex_measured": "52690955", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.64126832", + "sensor_index": "64126832", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module Mau 0/0/2/2 - 0/0/2/2", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 30.8, + "sensor_limit": 100, + "sensor_limit_warn": 95, + "sensor_limit_low": -50, + "sensor_limit_low_warn": -45, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "44", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.6762374", + "sensor_index": "6762374", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - 0/0/CPU0", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 30.5, + "sensor_limit": 50.5, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "6762374", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.9716067", + "sensor_index": "9716067", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module Mau 0/0/1/3 - 0/0/1/3", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -3276.8, + "sensor_limit": -5, + "sensor_limit_warn": null, + "sensor_limit_low": -3256.8, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "25", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.12907576", + "sensor_index": "12907576", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/RSP0/CPU0 - Voltage 0/RSP0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.3, + "sensor_limit": 3.795, + "sensor_limit_warn": 3.399, + "sensor_limit_low": 2.805, + "sensor_limit_low_warn": 3.201, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "12907576", + "entPhysicalIndex_measured": "52690955", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.14591308", + "sensor_index": "14591308", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/0 - Voltage 0/0/0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.199, + "sensor_limit": 1.37885, + "sensor_limit_warn": 1.296, + "sensor_limit_low": 1.01915, + "sensor_limit_low_warn": 1.104, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "14591308", + "entPhysicalIndex_measured": "14585855", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.14592896", + "sensor_index": "14592896", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/0 - Voltage 0/0/0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.9, + "sensor_limit": 1.035, + "sensor_limit_warn": 0.972, + "sensor_limit_low": 0.765, + "sensor_limit_low_warn": 0.828, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "14592896", + "entPhysicalIndex_measured": "14585855", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.14780750", + "sensor_index": "14780750", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module Mau 0/0/2/0 - Voltage 0/0/2/0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.264, + "sensor_limit": 3.7, + "sensor_limit_warn": 3.6, + "sensor_limit_low": 2.9, + "sensor_limit_low_warn": 3, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "42", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.16249545", + "sensor_index": "16249545", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/1 - Voltage 0/0/1", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.299, + "sensor_limit": 3.79385, + "sensor_limit_warn": 3.564, + "sensor_limit_low": 2.80415, + "sensor_limit_low_warn": 3.036, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "16249545", + "entPhysicalIndex_measured": "49125802", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.16949774", + "sensor_index": "16949774", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/RSP0/CPU0 - Voltage 0/RSP0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 5, + "sensor_limit": 5.75, + "sensor_limit_warn": 5.25, + "sensor_limit_low": 4.25, + "sensor_limit_low_warn": 4.75, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "16949774", + "entPhysicalIndex_measured": "52690955", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.17096855", + "sensor_index": "17096855", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/RSP0/CPU0 - Voltage 0/RSP0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 11.996, + "sensor_limit": 13.7954, + "sensor_limit_warn": 12.6, + "sensor_limit_low": 10.1966, + "sensor_limit_low_warn": 11.4, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "17096855", + "entPhysicalIndex_measured": "52690955", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.17098539", + "sensor_index": "17098539", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/RSP0/CPU0 - Voltage 0/RSP0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.199, + "sensor_limit": 1.37885, + "sensor_limit_warn": 1.26, + "sensor_limit_low": 1.01915, + "sensor_limit_low_warn": 1.14, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "17098539", + "entPhysicalIndex_measured": "52690955", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.172193", + "sensor_index": "172193", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/RSP0/CPU0 - Voltage 0/RSP0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.299, + "sensor_limit": 3.79385, + "sensor_limit_warn": 3.465, + "sensor_limit_low": 2.80415, + "sensor_limit_low_warn": 3.135, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "172193", + "entPhysicalIndex_measured": "52690955", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.19337222", + "sensor_index": "19337222", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Daughtercard 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.5, + "sensor_limit": 1.725, + "sensor_limit_warn": 1.575, + "sensor_limit_low": 1.275, + "sensor_limit_low_warn": 1.425, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "19337222", + "entPhysicalIndex_measured": "5225733", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.19338842", + "sensor_index": "19338842", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Daughtercard 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 2.5, + "sensor_limit": 2.875, + "sensor_limit_warn": 2.625, + "sensor_limit_low": 2.125, + "sensor_limit_low_warn": 2.375, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "19338842", + "entPhysicalIndex_measured": "5225733", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.23541671", + "sensor_index": "23541671", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.999, + "sensor_limit": 1.14885, + "sensor_limit_warn": 1.05, + "sensor_limit_low": 0.84915, + "sensor_limit_low_warn": 0.95, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "23541671", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.23612527", + "sensor_index": "23612527", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.199, + "sensor_limit": 1.37885, + "sensor_limit_warn": 1.26, + "sensor_limit_low": 1.01915, + "sensor_limit_low_warn": 1.14, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "23612527", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.23614115", + "sensor_index": "23614115", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": 1.15, + "sensor_limit_warn": 1.05, + "sensor_limit_low": 0.85, + "sensor_limit_low_warn": 0.95, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "23614115", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.23615735", + "sensor_index": "23615735", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.199, + "sensor_limit": 1.37885, + "sensor_limit_warn": 1.26, + "sensor_limit_low": 1.01915, + "sensor_limit_low_warn": 1.14, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "23615735", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.24113454", + "sensor_index": "24113454", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.5, + "sensor_limit": 1.725, + "sensor_limit_warn": 1.575, + "sensor_limit_low": 1.275, + "sensor_limit_low_warn": 1.425, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "24113454", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.24115042", + "sensor_index": "24115042", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.749, + "sensor_limit": 0.86135, + "sensor_limit_warn": 0.788, + "sensor_limit_low": 0.63665, + "sensor_limit_low_warn": 0.712, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "24115042", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.25205777", + "sensor_index": "25205777", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Daughtercard 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.299, + "sensor_limit": 3.79385, + "sensor_limit_warn": 3.399, + "sensor_limit_low": 2.80415, + "sensor_limit_low_warn": 3.201, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "25205777", + "entPhysicalIndex_measured": "5225733", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.25207461", + "sensor_index": "25207461", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Daughtercard 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": 1.15, + "sensor_limit_warn": 1.05, + "sensor_limit_low": 0.85, + "sensor_limit_low_warn": 0.95, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "25207461", + "entPhysicalIndex_measured": "5225733", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2559673", + "sensor_index": "2559673", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Daughtercard 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.499, + "sensor_limit": 1.72385, + "sensor_limit_warn": 1.575, + "sensor_limit_low": 1.27415, + "sensor_limit_low_warn": 1.425, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2559673", + "entPhysicalIndex_measured": "5225733", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2561229", + "sensor_index": "2561229", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Daughtercard 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.8, + "sensor_limit": 2.07, + "sensor_limit_warn": 1.89, + "sensor_limit_low": 1.53, + "sensor_limit_low_warn": 1.71, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2561229", + "entPhysicalIndex_measured": "5225733", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.25693872", + "sensor_index": "25693872", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Daughtercard 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.999, + "sensor_limit": 1.14885, + "sensor_limit_warn": 1.05, + "sensor_limit_low": 0.84915, + "sensor_limit_low_warn": 0.95, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "25693872", + "entPhysicalIndex_measured": "5225733", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.29680361", + "sensor_index": "29680361", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/RSP0/CPU0 - Voltage 0/RSP0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.499, + "sensor_limit": 1.72385, + "sensor_limit_warn": 1.575, + "sensor_limit_low": 1.27415, + "sensor_limit_low_warn": 1.425, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "29680361", + "entPhysicalIndex_measured": "52690955", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.31368921", + "sensor_index": "31368921", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/0 - Voltage 0/0/0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.199, + "sensor_limit": 1.37885, + "sensor_limit_warn": 1.296, + "sensor_limit_low": 1.01915, + "sensor_limit_low_warn": 1.104, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "31368921", + "entPhysicalIndex_measured": "14585855", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.31373813", + "sensor_index": "31373813", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/0 - Voltage 0/0/0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 4.999, + "sensor_limit": 5.74885, + "sensor_limit_warn": 5.4, + "sensor_limit_low": 4.24915, + "sensor_limit_low_warn": 4.6, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "31373813", + "entPhysicalIndex_measured": "14585855", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.319242", + "sensor_index": "319242", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/RSP0/CPU0 - Voltage 0/RSP0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.299, + "sensor_limit": 3.79385, + "sensor_limit_warn": 3.465, + "sensor_limit_low": 2.80415, + "sensor_limit_low_warn": 3.135, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "319242", + "entPhysicalIndex_measured": "52690955", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.320862", + "sensor_index": "320862", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/RSP0/CPU0 - Voltage 0/RSP0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.799, + "sensor_limit": 2.06885, + "sensor_limit_warn": 1.89, + "sensor_limit_low": 1.52915, + "sensor_limit_low_warn": 1.71, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "320862", + "entPhysicalIndex_measured": "52690955", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.322450", + "sensor_index": "322450", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/RSP0/CPU0 - Voltage 0/RSP0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.899, + "sensor_limit": 2.18385, + "sensor_limit_warn": 1.995, + "sensor_limit_low": 1.61415, + "sensor_limit_low_warn": 1.805, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "322450", + "entPhysicalIndex_measured": "52690955", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.32635680", + "sensor_index": "32635680", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/PS0/M1/SP - Voltage 0/PS0/M1/SP", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 12.156, + "sensor_limit": 13.9794, + "sensor_limit_warn": null, + "sensor_limit_low": 10.3326, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "32635680", + "entPhysicalIndex_measured": "2237736", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.33027158", + "sensor_index": "33027158", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/1 - Voltage 0/0/1", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.2, + "sensor_limit": 1.38, + "sensor_limit_warn": 1.296, + "sensor_limit_low": 1.02, + "sensor_limit_low_warn": 1.104, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "33027158", + "entPhysicalIndex_measured": "49125802", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3355929", + "sensor_index": "3355929", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/PS0/M0/SP - Voltage 0/PS0/M0/SP", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 12.156, + "sensor_limit": 13.9794, + "sensor_limit_warn": null, + "sensor_limit_low": 10.3326, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "3355929", + "entPhysicalIndex_measured": "19750579", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.33874532", + "sensor_index": "33874532", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/RSP0/CPU0 - Voltage 0/RSP0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 7, + "sensor_limit": 8.05, + "sensor_limit_warn": 7.35, + "sensor_limit_low": 5.95, + "sensor_limit_low_warn": 6.65, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "33874532", + "entPhysicalIndex_measured": "52690955", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.33876152", + "sensor_index": "33876152", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/RSP0/CPU0 - Voltage 0/RSP0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": 1.15, + "sensor_limit_warn": 1.05, + "sensor_limit_low": 0.85, + "sensor_limit_low_warn": 0.95, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "33876152", + "entPhysicalIndex_measured": "52690955", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.36113247", + "sensor_index": "36113247", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Daughtercard 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.499, + "sensor_limit": 1.72385, + "sensor_limit_warn": 1.575, + "sensor_limit_low": 1.27415, + "sensor_limit_low_warn": 1.425, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "36113247", + "entPhysicalIndex_measured": "5225733", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.36114835", + "sensor_index": "36114835", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Daughtercard 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 2.5, + "sensor_limit": 2.875, + "sensor_limit_warn": 2.625, + "sensor_limit_low": 2.125, + "sensor_limit_low_warn": 2.375, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "36114835", + "entPhysicalIndex_measured": "5225733", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.36118139", + "sensor_index": "36118139", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Daughtercard 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.049, + "sensor_limit": 1.20635, + "sensor_limit_warn": 1.103, + "sensor_limit_low": 0.89165, + "sensor_limit_low_warn": 0.997, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "36118139", + "entPhysicalIndex_measured": "5225733", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.40319284", + "sensor_index": "40319284", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.799, + "sensor_limit": 2.06885, + "sensor_limit_warn": 1.89, + "sensor_limit_low": 1.52915, + "sensor_limit_low_warn": 1.71, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "40319284", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.40390140", + "sensor_index": "40390140", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.2, + "sensor_limit": 1.38, + "sensor_limit_warn": 1.26, + "sensor_limit_low": 1.02, + "sensor_limit_low_warn": 1.14, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "40390140", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.40391728", + "sensor_index": "40391728", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.999, + "sensor_limit": 1.14885, + "sensor_limit_warn": 1.05, + "sensor_limit_low": 0.84915, + "sensor_limit_low_warn": 0.95, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "40391728", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.40393284", + "sensor_index": "40393284", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": 1.15, + "sensor_limit_warn": 1.05, + "sensor_limit_low": 0.85, + "sensor_limit_low_warn": 0.95, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "40393284", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.40886175", + "sensor_index": "40886175", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 7, + "sensor_limit": 8.05, + "sensor_limit_warn": 7.35, + "sensor_limit_low": 5.95, + "sensor_limit_low_warn": 6.65, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "40886175", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.40889447", + "sensor_index": "40889447", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 2.499, + "sensor_limit": 2.87385, + "sensor_limit_warn": 2.625, + "sensor_limit_low": 2.12415, + "sensor_limit_low_warn": 2.375, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "40889447", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.40891067", + "sensor_index": "40891067", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.999, + "sensor_limit": 1.14885, + "sensor_limit_warn": 1.05, + "sensor_limit_low": 0.84915, + "sensor_limit_low_warn": 0.95, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "40891067", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.41983486", + "sensor_index": "41983486", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Daughtercard 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.199, + "sensor_limit": 1.37885, + "sensor_limit_warn": 1.26, + "sensor_limit_low": 1.01915, + "sensor_limit_low_warn": 1.14, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "41983486", + "entPhysicalIndex_measured": "5225733", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.41985074", + "sensor_index": "41985074", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Daughtercard 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": 1.15, + "sensor_limit_warn": 1.05, + "sensor_limit_low": 0.85, + "sensor_limit_low_warn": 0.95, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "41985074", + "entPhysicalIndex_measured": "5225733", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.42471453", + "sensor_index": "42471453", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Daughtercard 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": 1.15, + "sensor_limit_warn": 1.05, + "sensor_limit_low": 0.85, + "sensor_limit_low_warn": 0.95, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "42471453", + "entPhysicalIndex_measured": "5225733", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.46457974", + "sensor_index": "46457974", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/RSP0/CPU0 - Voltage 0/RSP0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.799, + "sensor_limit": 2.06885, + "sensor_limit_warn": 1.89, + "sensor_limit_low": 1.52915, + "sensor_limit_low_warn": 1.71, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "46457974", + "entPhysicalIndex_measured": "52690955", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.48146598", + "sensor_index": "48146598", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/0 - Voltage 0/0/0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.3, + "sensor_limit": 3.795, + "sensor_limit_warn": 3.564, + "sensor_limit_low": 2.805, + "sensor_limit_low_warn": 3.036, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "48146598", + "entPhysicalIndex_measured": "14585855", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.48151362", + "sensor_index": "48151362", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/0 - Voltage 0/0/0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 2.499, + "sensor_limit": 2.87385, + "sensor_limit_warn": 2.7, + "sensor_limit_low": 2.12415, + "sensor_limit_low_warn": 2.3, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "48151362", + "entPhysicalIndex_measured": "14585855", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.49803247", + "sensor_index": "49803247", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/1 - Voltage 0/0/1", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.199, + "sensor_limit": 1.37885, + "sensor_limit_warn": 1.296, + "sensor_limit_low": 1.01915, + "sensor_limit_low_warn": 1.104, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "49803247", + "entPhysicalIndex_measured": "49125802", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.49804835", + "sensor_index": "49804835", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/1 - Voltage 0/0/1", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 11.862, + "sensor_limit": 13.6413, + "sensor_limit_warn": 20, + "sensor_limit_low": 10.0827, + "sensor_limit_low_warn": 8, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "49804835", + "entPhysicalIndex_measured": "49125802", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.50650557", + "sensor_index": "50650557", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/RSP0/CPU0 - Voltage 0/RSP0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.751, + "sensor_limit": 0.86365, + "sensor_limit_warn": 0.788, + "sensor_limit_low": 0.63835, + "sensor_limit_low_warn": 0.712, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "50650557", + "entPhysicalIndex_measured": "52690955", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.50652145", + "sensor_index": "50652145", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/RSP0/CPU0 - Voltage 0/RSP0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": 1.15, + "sensor_limit_warn": 1.05, + "sensor_limit_low": 0.85, + "sensor_limit_low_warn": 0.95, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "50652145", + "entPhysicalIndex_measured": "52690955", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.50653701", + "sensor_index": "50653701", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/RSP0/CPU0 - Voltage 0/RSP0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.199, + "sensor_limit": 1.37885, + "sensor_limit_warn": 1.26, + "sensor_limit_low": 1.01915, + "sensor_limit_low_warn": 1.14, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "50653701", + "entPhysicalIndex_measured": "52690955", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.52890924", + "sensor_index": "52890924", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Daughtercard 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.799, + "sensor_limit": 2.06885, + "sensor_limit_warn": 1.89, + "sensor_limit_low": 1.52915, + "sensor_limit_low_warn": 1.71, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "52890924", + "entPhysicalIndex_measured": "5225733", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.52892512", + "sensor_index": "52892512", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Daughtercard 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.3, + "sensor_limit": 3.795, + "sensor_limit_warn": 3.399, + "sensor_limit_low": 2.805, + "sensor_limit_low_warn": 3.201, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "52892512", + "entPhysicalIndex_measured": "5225733", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.52895688", + "sensor_index": "52895688", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Daughtercard 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.199, + "sensor_limit": 1.37885, + "sensor_limit_warn": 1.26, + "sensor_limit_low": 1.01915, + "sensor_limit_low_warn": 1.14, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "52895688", + "entPhysicalIndex_measured": "5225733", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.57095245", + "sensor_index": "57095245", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.999, + "sensor_limit": 1.14885, + "sensor_limit_warn": 1.05, + "sensor_limit_low": 0.84915, + "sensor_limit_low_warn": 0.95, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "57095245", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.57167689", + "sensor_index": "57167689", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.9, + "sensor_limit": 1.035, + "sensor_limit_warn": 0.945, + "sensor_limit_low": 0.765, + "sensor_limit_low_warn": 0.855, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "57167689", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.57169309", + "sensor_index": "57169309", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": 1.15, + "sensor_limit_warn": 1.05, + "sensor_limit_low": 0.85, + "sensor_limit_low_warn": 0.95, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "57169309", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.57663852", + "sensor_index": "57663852", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.3, + "sensor_limit": 3.795, + "sensor_limit_warn": 3.465, + "sensor_limit_low": 2.805, + "sensor_limit_low_warn": 3.135, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "57663852", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.57667060", + "sensor_index": "57667060", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.3, + "sensor_limit": 3.795, + "sensor_limit_warn": 3.399, + "sensor_limit_low": 2.805, + "sensor_limit_low_warn": 3.201, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "57667060", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.57668616", + "sensor_index": "57668616", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.799, + "sensor_limit": 2.06885, + "sensor_limit_warn": 1.89, + "sensor_limit_low": 1.52915, + "sensor_limit_low_warn": 1.71, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "57668616", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.57759233", + "sensor_index": "57759233", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module Mau 0/0/1/1 - Voltage 0/0/1/1", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.34, + "sensor_limit": 3.6, + "sensor_limit_warn": 3.5, + "sensor_limit_low": 3, + "sensor_limit_low_warn": 3.1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "23", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.58757859", + "sensor_index": "58757859", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Daughtercard 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": 1.15, + "sensor_limit_warn": 1.05, + "sensor_limit_low": 0.85, + "sensor_limit_low_warn": 0.95, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "58757859", + "entPhysicalIndex_measured": "5225733", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.58759479", + "sensor_index": "58759479", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Daughtercard 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.91, + "sensor_limit": 1.0465, + "sensor_limit_warn": 0.945, + "sensor_limit_low": 0.7735, + "sensor_limit_low_warn": 0.855, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "58759479", + "entPhysicalIndex_measured": "5225733", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.58761035", + "sensor_index": "58761035", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Daughtercard 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": 1.15, + "sensor_limit_warn": 1.05, + "sensor_limit_low": 0.85, + "sensor_limit_low_warn": 0.95, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "58761035", + "entPhysicalIndex_measured": "5225733", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.59249130", + "sensor_index": "59249130", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Daughtercard 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.5, + "sensor_limit": 1.725, + "sensor_limit_warn": 1.575, + "sensor_limit_low": 1.275, + "sensor_limit_low_warn": 1.425, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "59249130", + "entPhysicalIndex_measured": "5225733", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.63238827", + "sensor_index": "63238827", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/RSP0/CPU0 - Voltage 0/RSP0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 2.5, + "sensor_limit": 2.875, + "sensor_limit_warn": 2.625, + "sensor_limit_low": 2.125, + "sensor_limit_low_warn": 2.375, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "63238827", + "entPhysicalIndex_measured": "52690955", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.64125244", + "sensor_index": "64125244", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module Mau 0/0/2/2 - Voltage 0/0/2/2", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.223, + "sensor_limit": 3.7, + "sensor_limit_warn": 3.599, + "sensor_limit_low": 2.9, + "sensor_limit_low_warn": 3, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "44", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.64922623", + "sensor_index": "64922623", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/0 - Voltage 0/0/0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.799, + "sensor_limit": 2.06885, + "sensor_limit_warn": 1.944, + "sensor_limit_low": 1.52915, + "sensor_limit_low_warn": 1.656, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "64922623", + "entPhysicalIndex_measured": "14585855", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.64924211", + "sensor_index": "64924211", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/0 - Voltage 0/0/0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.899, + "sensor_limit": 1.03385, + "sensor_limit_warn": 0.972, + "sensor_limit_low": 0.76415, + "sensor_limit_low_warn": 0.828, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "64924211", + "entPhysicalIndex_measured": "14585855", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.66582448", + "sensor_index": "66582448", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/1 - Voltage 0/0/1", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.272, + "sensor_limit": 3.7628, + "sensor_limit_warn": 3.63, + "sensor_limit_low": 2.7812, + "sensor_limit_low_warn": 2.97, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "66582448", + "entPhysicalIndex_measured": "49125802", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.6763994", + "sensor_index": "6763994", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.2, + "sensor_limit": 1.38, + "sensor_limit_warn": 1.26, + "sensor_limit_low": 1.02, + "sensor_limit_low_warn": 1.14, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "6763994", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.6836438", + "sensor_index": "6836438", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.9, + "sensor_limit": 1.035, + "sensor_limit_warn": 0.945, + "sensor_limit_low": 0.765, + "sensor_limit_low_warn": 0.855, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "6836438", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.6838122", + "sensor_index": "6838122", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.799, + "sensor_limit": 2.06885, + "sensor_limit_warn": 1.89, + "sensor_limit_low": 1.52915, + "sensor_limit_low_warn": 1.71, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "6838122", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.7335745", + "sensor_index": "7335745", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.3, + "sensor_limit": 3.795, + "sensor_limit_warn": 3.465, + "sensor_limit_low": 2.805, + "sensor_limit_low_warn": 3.135, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7335745", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.7337365", + "sensor_index": "7337365", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 5, + "sensor_limit": 5.75, + "sensor_limit_warn": 5.25, + "sensor_limit_low": 4.25, + "sensor_limit_low_warn": 4.75, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7337365", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.8426608", + "sensor_index": "8426608", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Daughtercard 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 2.5, + "sensor_limit": 2.875, + "sensor_limit_warn": 2.625, + "sensor_limit_low": 2.125, + "sensor_limit_low_warn": 2.375, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "8426608", + "entPhysicalIndex_measured": "5225733", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.8428164", + "sensor_index": "8428164", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Daughtercard 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.91, + "sensor_limit": 1.0465, + "sensor_limit_warn": 0.945, + "sensor_limit_low": 0.7735, + "sensor_limit_low_warn": 0.855, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "8428164", + "entPhysicalIndex_measured": "5225733", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.8429784", + "sensor_index": "8429784", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Daughtercard 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.999, + "sensor_limit": 1.14885, + "sensor_limit_warn": 1.05, + "sensor_limit_low": 0.84915, + "sensor_limit_low_warn": 0.95, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "8429784", + "entPhysicalIndex_measured": "5225733", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.8916259", + "sensor_index": "8916259", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Daughtercard 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": 1.15, + "sensor_limit_warn": 1.05, + "sensor_limit_low": 0.85, + "sensor_limit_low_warn": 0.95, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "8916259", + "entPhysicalIndex_measured": "5225733", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.9714479", + "sensor_index": "9714479", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module Mau 0/0/1/3 - Voltage 0/0/1/3", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": -32.768, + "sensor_limit": -27.8528, + "sensor_limit_warn": null, + "sensor_limit_low": -37.6832, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "25", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + } + ], + "state_indexes": [ + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "off (other)", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 2 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "on", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "off (admin)", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 1 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "off (denied)", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 2 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "off (environmental)", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 2 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "off (temperature)", + "state_draw_graph": 0, + "state_value": 6, + "state_generic_value": 2 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "off (fan)", + "state_draw_graph": 0, + "state_value": 7, + "state_generic_value": 2 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "failed", + "state_draw_graph": 0, + "state_value": 8, + "state_generic_value": 2 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "on (fan failed)", + "state_draw_graph": 0, + "state_value": 9, + "state_generic_value": 1 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "off (cooling)", + "state_draw_graph": 0, + "state_value": 10, + "state_generic_value": 2 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "off (connector rating)", + "state_draw_graph": 0, + "state_value": 11, + "state_generic_value": 2 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "on (no inline power)", + "state_draw_graph": 0, + "state_value": 12, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "notKnown", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 3 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "disabled", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "initialization", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "negotiation", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "standbyCold", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "standbyColdConfig", + "state_draw_graph": 0, + "state_value": 6, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "standbyColdFileSys", + "state_draw_graph": 0, + "state_value": 7, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "standbyColdBulk", + "state_draw_graph": 0, + "state_value": 8, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "standbyHot", + "state_draw_graph": 0, + "state_value": 9, + "state_generic_value": 0 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "activeFast", + "state_draw_graph": 0, + "state_value": 10, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "activeDrain", + "state_draw_graph": 0, + "state_value": 11, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "activePreconfig", + "state_draw_graph": 0, + "state_value": 12, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "activePostconfig", + "state_draw_graph": 0, + "state_value": 13, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "active", + "state_draw_graph": 0, + "state_value": 14, + "state_generic_value": 0 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "activeExtraload", + "state_draw_graph": 0, + "state_value": 15, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "activeHandback", + "state_draw_graph": 0, + "state_value": 16, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "notKnown", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 3 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "disabled", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "initialization", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "negotiation", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "standbyCold", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "standbyColdConfig", + "state_draw_graph": 0, + "state_value": 6, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "standbyColdFileSys", + "state_draw_graph": 0, + "state_value": 7, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "standbyColdBulk", + "state_draw_graph": 0, + "state_value": 8, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "standbyHot", + "state_draw_graph": 0, + "state_value": 9, + "state_generic_value": 0 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "activeFast", + "state_draw_graph": 0, + "state_value": 10, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "activeDrain", + "state_draw_graph": 0, + "state_value": 11, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "activePreconfig", + "state_draw_graph": 0, + "state_value": 12, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "activePostconfig", + "state_draw_graph": 0, + "state_value": 13, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "active", + "state_draw_graph": 0, + "state_value": 14, + "state_generic_value": 0 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "activeExtraload", + "state_draw_graph": 0, + "state_value": 15, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "activeHandback", + "state_draw_graph": 0, + "state_value": 16, + "state_generic_value": 1 + } + ] + }, + "poller": { + "sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.13795549", + "sensor_index": "13795549", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module Mau 0/0/2/2 - Current 0/0/2/2", + "group": null, + "sensor_divisor": 10000, + "sensor_multiplier": 1, + "sensor_current": 0.0329, + "sensor_limit": 0.085, + "sensor_limit_warn": 0.08, + "sensor_limit_low": 0.01, + "sensor_limit_low_warn": 0.012, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "44", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.1930929", + "sensor_index": "1930929", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module Mau 0/0/0/3 - Current 0/0/0/3", + "group": null, + "sensor_divisor": 10000, + "sensor_multiplier": 1, + "sensor_current": 0.0305, + "sensor_limit": 0.085, + "sensor_limit_warn": 0.08, + "sensor_limit_low": 0.015, + "sensor_limit_low_warn": 0.02, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "21", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.31558363", + "sensor_index": "31558363", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module Mau 0/0/2/0 - Current 0/0/2/0", + "group": null, + "sensor_divisor": 10000, + "sensor_multiplier": 1, + "sensor_current": 0.0305, + "sensor_limit": 0.085, + "sensor_limit_warn": 0.08, + "sensor_limit_low": 0.01, + "sensor_limit_low_warn": 0.012, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "42", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.40983240", + "sensor_index": "40983240", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module Mau 0/0/1/1 - Current 0/0/1/1", + "group": null, + "sensor_divisor": 10000, + "sensor_multiplier": 1, + "sensor_current": 0.0244, + "sensor_limit": 0.075, + "sensor_limit_warn": 0.07, + "sensor_limit_low": 0.003, + "sensor_limit_low_warn": 0.004, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "23", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.49413261", + "sensor_index": "49413261", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/PS0/M1/SP - Current 0/PS0/M1/SP", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 14.125, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "49413261", + "entPhysicalIndex_measured": "2237736", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.53687180", + "sensor_index": "53687180", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/PS0/M0/SP - Current 0/PS0/M0/SP", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 13.5, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "53687180", + "entPhysicalIndex_measured": "19750579", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.60048938", + "sensor_index": "60048938", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module Mau 0/0/1/3 - Current 0/0/1/3", + "group": null, + "sensor_divisor": 10000, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "25", + "entPhysicalIndex_measured": "ports", + "sensor_prev": -3.2768, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.18708510", + "sensor_index": "18708510", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "module mau 0/0/0/3 - power Rx 0/0/0/3", + "group": null, + "sensor_divisor": 10000000, + "sensor_multiplier": 1000, + "sensor_current": -2.3306690616272, + "sensor_limit": 1.0016368896604, + "sensor_limit_warn": -0.0026065489343204, + "sensor_limit_low": -18.013429130456, + "sensor_limit_low_warn": -16.00326278519, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "21", + "entPhysicalIndex_measured": "ports", + "sensor_prev": -2.331, + "user_func": "mw_to_dbm", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.24205691", + "sensor_index": "24205691", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "module mau 0/0/1/1 - power Rx 0/0/1/1", + "group": null, + "sensor_divisor": 10000000, + "sensor_multiplier": 1000, + "sensor_current": -5.145625189237, + "sensor_limit": 0.99991233544684, + "sensor_limit_warn": -2.9998893767789, + "sensor_limit_low": -23.01029995664, + "sensor_limit_low_warn": -18.996294548824, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "23", + "entPhysicalIndex_measured": "ports", + "sensor_prev": -5.146, + "user_func": "mw_to_dbm", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.26493680", + "sensor_index": "26493680", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "module mau 0/0/1/3 - power Tx 0/0/1/3", + "group": null, + "sensor_divisor": 10000000, + "sensor_multiplier": 1000, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "25", + "entPhysicalIndex_measured": "ports", + "sensor_prev": 0, + "user_func": "mw_to_dbm", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.30573226", + "sensor_index": "30573226", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "module mau 0/0/2/2 - power Rx 0/0/2/2", + "group": null, + "sensor_divisor": 10000000, + "sensor_multiplier": 1000, + "sensor_current": 0.52078030484169, + "sensor_limit": 0, + "sensor_limit_warn": -1.0001543745061, + "sensor_limit_low": -17.011469235903, + "sensor_limit_low_warn": -16.00326278519, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "44", + "entPhysicalIndex_measured": "ports", + "sensor_prev": 0.521, + "user_func": "mw_to_dbm", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.35484503", + "sensor_index": "35484503", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "module mau 0/0/0/3 - power Tx 0/0/0/3", + "group": null, + "sensor_divisor": 10000000, + "sensor_multiplier": 1000, + "sensor_current": -1.7496355877865, + "sensor_limit": 2.0046744995016, + "sensor_limit_warn": 1.0016368896604, + "sensor_limit_low": -6.996219351293, + "sensor_limit_low_warn": -5.9963472665006, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "21", + "entPhysicalIndex_measured": "ports", + "sensor_prev": -1.75, + "user_func": "mw_to_dbm", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.43271261", + "sensor_index": "43271261", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "module mau 0/0/1/3 - power Rx 0/0/1/3", + "group": null, + "sensor_divisor": 10000000, + "sensor_multiplier": 1000, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "25", + "entPhysicalIndex_measured": "ports", + "sensor_prev": 0, + "user_func": "mw_to_dbm", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.47349219", + "sensor_index": "47349219", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "module mau 0/0/2/2 - power Tx 0/0/2/2", + "group": null, + "sensor_divisor": 10000000, + "sensor_multiplier": 1000, + "sensor_current": -1.1952940719622, + "sensor_limit": 3.9998505610245, + "sensor_limit_warn": 2.9998643613447, + "sensor_limit_low": -11.001794975729, + "sensor_limit_low_warn": -10, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "44", + "entPhysicalIndex_measured": "ports", + "sensor_prev": -1.195, + "user_func": "mw_to_dbm", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.48336040", + "sensor_index": "48336040", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "module mau 0/0/2/0 - power Rx 0/0/2/0", + "group": null, + "sensor_divisor": 10000000, + "sensor_multiplier": 1000, + "sensor_current": -5.6050940961032, + "sensor_limit": 0, + "sensor_limit_warn": -1.0001543745061, + "sensor_limit_low": -16.98970004336, + "sensor_limit_low_warn": -16.00326278519, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "42", + "entPhysicalIndex_measured": "ports", + "sensor_prev": -5.605, + "user_func": "mw_to_dbm", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.65113653", + "sensor_index": "65113653", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "module mau 0/0/2/0 - power Tx 0/0/2/0", + "group": null, + "sensor_divisor": 10000000, + "sensor_multiplier": 1000, + "sensor_current": -2.1126614117229, + "sensor_limit": 4.0000234592796, + "sensor_limit_warn": 3.0000820255381, + "sensor_limit_low": -11.001794975729, + "sensor_limit_low_warn": -10, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "42", + "entPhysicalIndex_measured": "ports", + "sensor_prev": -2.113, + "user_func": "mw_to_dbm", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.7429666", + "sensor_index": "7429666", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "module mau 0/0/1/1 - power Tx 0/0/1/1", + "group": null, + "sensor_divisor": 10000000, + "sensor_multiplier": 1000, + "sensor_current": -4.4916039493421, + "sensor_limit": 0.99991233544684, + "sensor_limit_warn": -1.0001543745061, + "sensor_limit_low": -13.496924768681, + "sensor_limit_low_warn": -9.5000714307986, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "23", + "entPhysicalIndex_measured": "ports", + "sensor_prev": -4.492, + "user_func": "mw_to_dbm", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.13805629", + "sensor_index": "13805629", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Fan1 0/FT0/SP - Speed 0/FT0/SP", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 7680, + "sensor_limit": 13824, + "sensor_limit_warn": 13780, + "sensor_limit_low": 6580, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "13805629", + "entPhysicalIndex_measured": "7358666", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.15177601", + "sensor_index": "15177601", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Fan5 0/FT0/SP - Speed 0/FT0/SP", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 7680, + "sensor_limit": 13824, + "sensor_limit_warn": 13780, + "sensor_limit_low": 6580, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "15177601", + "entPhysicalIndex_measured": "7357110", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.17977066", + "sensor_index": "17977066", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Fan4 0/FT0/SP - Speed 0/FT0/SP", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 7440, + "sensor_limit": 13392, + "sensor_limit_warn": 13780, + "sensor_limit_low": 6580, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "17977066", + "entPhysicalIndex_measured": "24133071", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.19441360", + "sensor_index": "19441360", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Fan11 0/FT0/SP - Speed 0/FT0/SP", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 7470, + "sensor_limit": 13446, + "sensor_limit_warn": 13780, + "sensor_limit_low": 6580, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "19441360", + "entPhysicalIndex_measured": "29047573", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.28595820", + "sensor_index": "28595820", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Fan6 0/FT0/SP - Speed 0/FT0/SP", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 7620, + "sensor_limit": 13716, + "sensor_limit_warn": 13780, + "sensor_limit_low": 6580, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "28595820", + "entPhysicalIndex_measured": "57688361", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.35064942", + "sensor_index": "35064942", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Fan9 0/FT0/SP - Speed 0/FT0/SP", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 7110, + "sensor_limit": 12798, + "sensor_limit_warn": 13780, + "sensor_limit_low": 6580, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "35064942", + "entPhysicalIndex_measured": "62601275", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.44949055", + "sensor_index": "44949055", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Fan3 0/FT0/SP - Speed 0/FT0/SP", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 7680, + "sensor_limit": 13824, + "sensor_limit_warn": 13780, + "sensor_limit_low": 6580, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "44949055", + "entPhysicalIndex_measured": "40910684", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.46324915", + "sensor_index": "46324915", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Fan10 0/FT0/SP - Speed 0/FT0/SP", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 7020, + "sensor_limit": 12636, + "sensor_limit_warn": 13780, + "sensor_limit_low": 6580, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "46324915", + "entPhysicalIndex_measured": "12269960", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.50514562", + "sensor_index": "50514562", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Fan13 0/FT0/SP - Speed 0/FT0/SP", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 7590, + "sensor_limit": 13662, + "sensor_limit_warn": 13780, + "sensor_limit_low": 6580, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "50514562", + "entPhysicalIndex_measured": "62599655", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.50864446", + "sensor_index": "50864446", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Fan8 0/FT0/SP - Speed 0/FT0/SP", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 9390, + "sensor_limit": 16902, + "sensor_limit_warn": 13780, + "sensor_limit_low": 6580, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "50864446", + "entPhysicalIndex_measured": "24137963", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.53442901", + "sensor_index": "53442901", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Fan12 0/FT0/SP - Speed 0/FT0/SP", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 7500, + "sensor_limit": 13500, + "sensor_limit_warn": 13780, + "sensor_limit_low": 6580, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "53442901", + "entPhysicalIndex_measured": "45825250", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.56880003", + "sensor_index": "56880003", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Fan7 0/FT0/SP - Speed 0/FT0/SP", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 7500, + "sensor_limit": 13500, + "sensor_limit_warn": 13780, + "sensor_limit_low": 6580, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "56880003", + "entPhysicalIndex_measured": "40915576", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.57269142", + "sensor_index": "57269142", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Fan0 0/FT0/SP - Speed 0/FT0/SP", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 7410, + "sensor_limit": 13338, + "sensor_limit_warn": 13780, + "sensor_limit_low": 6580, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "57269142", + "entPhysicalIndex_measured": "24134659", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.66237848", + "sensor_index": "66237848", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Fan2 0/FT0/SP - Speed 0/FT0/SP", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 7470, + "sensor_limit": 13446, + "sensor_limit_warn": 13780, + "sensor_limit_low": 6580, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "66237848", + "entPhysicalIndex_measured": "57689981", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.15858003", + "sensor_index": "15858003", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/PS0/M1/SP - Capacity 0/PS0/M1/SP", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 750, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "15858003", + "entPhysicalIndex_measured": "2237736", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.18708510", + "sensor_index": "18708510", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module Mau 0/0/0/3 - Power Rx 0/0/0/3", + "group": null, + "sensor_divisor": 10000000, + "sensor_multiplier": 1, + "sensor_current": 0.0005847, + "sensor_limit": 0.0012594, + "sensor_limit_warn": 0.0009994, + "sensor_limit_low": 1.58e-5, + "sensor_limit_low_warn": 2.51e-5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "21", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.20133606", + "sensor_index": "20133606", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/PS0/M0/SP - Capacity 0/PS0/M0/SP", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 750, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "20133606", + "entPhysicalIndex_measured": "19750579", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.24205691", + "sensor_index": "24205691", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module Mau 0/0/1/1 - Power Rx 0/0/1/1", + "group": null, + "sensor_divisor": 10000000, + "sensor_multiplier": 1, + "sensor_current": 0.0003058, + "sensor_limit": 0.0012589, + "sensor_limit_warn": 0.0005012, + "sensor_limit_low": 5.0e-6, + "sensor_limit_low_warn": 1.26e-5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "23", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.26493680", + "sensor_index": "26493680", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module Mau 0/0/1/3 - Power Tx 0/0/1/3", + "group": null, + "sensor_divisor": 10000000, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "25", + "entPhysicalIndex_measured": "ports", + "sensor_prev": -0.0032768, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.30573226", + "sensor_index": "30573226", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module Mau 0/0/2/2 - Power Rx 0/0/2/2", + "group": null, + "sensor_divisor": 10000000, + "sensor_multiplier": 1, + "sensor_current": 0.0011274, + "sensor_limit": 0.001, + "sensor_limit_warn": 0.0007943, + "sensor_limit_low": 1.99e-5, + "sensor_limit_low_warn": 2.51e-5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "44", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.35484503", + "sensor_index": "35484503", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module Mau 0/0/0/3 - Power Tx 0/0/0/3", + "group": null, + "sensor_divisor": 10000000, + "sensor_multiplier": 1, + "sensor_current": 0.0006684, + "sensor_limit": 0.0015866, + "sensor_limit_warn": 0.0012594, + "sensor_limit_low": 0.0001997, + "sensor_limit_low_warn": 0.0002514, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "21", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.43271261", + "sensor_index": "43271261", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module Mau 0/0/1/3 - Power Rx 0/0/1/3", + "group": null, + "sensor_divisor": 10000000, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "25", + "entPhysicalIndex_measured": "ports", + "sensor_prev": -0.0032768, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.47349219", + "sensor_index": "47349219", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module Mau 0/0/2/2 - Power Tx 0/0/2/2", + "group": null, + "sensor_divisor": 10000000, + "sensor_multiplier": 1, + "sensor_current": 0.0007594, + "sensor_limit": 0.0025118, + "sensor_limit_warn": 0.0019952, + "sensor_limit_low": 7.94e-5, + "sensor_limit_low_warn": 0.0001, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "44", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.48336040", + "sensor_index": "48336040", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module Mau 0/0/2/0 - Power Rx 0/0/2/0", + "group": null, + "sensor_divisor": 10000000, + "sensor_multiplier": 1, + "sensor_current": 0.0002751, + "sensor_limit": 0.001, + "sensor_limit_warn": 0.0007943, + "sensor_limit_low": 2.0e-5, + "sensor_limit_low_warn": 2.51e-5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "42", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.65113653", + "sensor_index": "65113653", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module Mau 0/0/2/0 - Power Tx 0/0/2/0", + "group": null, + "sensor_divisor": 10000000, + "sensor_multiplier": 1, + "sensor_current": 0.0006148, + "sensor_limit": 0.0025119, + "sensor_limit_warn": 0.0019953, + "sensor_limit_low": 7.94e-5, + "sensor_limit_low_warn": 0.0001, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "42", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.7429666", + "sensor_index": "7429666", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module Mau 0/0/1/1 - Power Tx 0/0/1/1", + "group": null, + "sensor_divisor": 10000000, + "sensor_multiplier": 1, + "sensor_current": 0.0003555, + "sensor_limit": 0.0012589, + "sensor_limit_warn": 0.0007943, + "sensor_limit_low": 4.47e-5, + "sensor_limit_low_warn": 0.0001122, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "23", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.14585855", + "sensor_index": "14585855", + "sensor_type": "cefcFRUPowerOperStatus", + "sensor_descr": "module 0/0/0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "14585855", + "entPhysicalIndex_measured": null, + "sensor_prev": 0, + "user_func": null, + "state_name": "cefcFRUPowerOperStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.15526104", + "sensor_index": "15526104", + "sensor_type": "cefcFRUPowerOperStatus", + "sensor_descr": "module mau 0/0/1/3", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "15526104", + "entPhysicalIndex_measured": null, + "sensor_prev": 0, + "user_func": null, + "state_name": "cefcFRUPowerOperStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.21657197", + "sensor_index": "21657197", + "sensor_type": "cefcFRUPowerOperStatus", + "sensor_descr": "power-module 0/PS0/M1/SP", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "21657197", + "entPhysicalIndex_measured": null, + "sensor_prev": 0, + "user_func": null, + "state_name": "cefcFRUPowerOperStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.30054631", + "sensor_index": "30054631", + "sensor_type": "cefcFRUPowerOperStatus", + "sensor_descr": "module mau 0/0/2/0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "30054631", + "entPhysicalIndex_measured": null, + "sensor_prev": 0, + "user_func": null, + "state_name": "cefcFRUPowerOperStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.31415605", + "sensor_index": "31415605", + "sensor_type": "cefcFRUPowerOperStatus", + "sensor_descr": "module mau 0/0/2/2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "31415605", + "entPhysicalIndex_measured": null, + "sensor_prev": 0, + "user_func": null, + "state_name": "cefcFRUPowerOperStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.37336673", + "sensor_index": "37336673", + "sensor_type": "cefcFRUPowerOperStatus", + "sensor_descr": "module mau 0/0/0/3", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "37336673", + "entPhysicalIndex_measured": null, + "sensor_prev": 0, + "user_func": null, + "state_name": "cefcFRUPowerOperStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.49125802", + "sensor_index": "49125802", + "sensor_type": "cefcFRUPowerOperStatus", + "sensor_descr": "module 0/0/1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "49125802", + "entPhysicalIndex_measured": null, + "sensor_prev": 0, + "user_func": null, + "state_name": "cefcFRUPowerOperStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.59316821", + "sensor_index": "59316821", + "sensor_type": "cefcFRUPowerOperStatus", + "sensor_descr": "fantray 0/FT0/SP", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "59316821", + "entPhysicalIndex_measured": null, + "sensor_prev": 0, + "user_func": null, + "state_name": "cefcFRUPowerOperStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.66227682", + "sensor_index": "66227682", + "sensor_type": "cefcFRUPowerOperStatus", + "sensor_descr": "module mau 0/0/1/1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "66227682", + "entPhysicalIndex_measured": null, + "sensor_prev": 0, + "user_func": null, + "state_name": "cefcFRUPowerOperStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.66531208", + "sensor_index": "66531208", + "sensor_type": "cefcFRUPowerOperStatus", + "sensor_descr": "power-module 0/PS0/M0/SP", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "66531208", + "entPhysicalIndex_measured": null, + "sensor_prev": 0, + "user_func": null, + "state_name": "cefcFRUPowerOperStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.176.1.1.4.0", + "sensor_index": "0", + "sensor_type": "cRFStatusPeerUnitState", + "sensor_descr": "VSS Peer State", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "0", + "entPhysicalIndex_measured": null, + "sensor_prev": 0, + "user_func": null, + "state_name": "cRFStatusPeerUnitState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.176.1.1.2.0", + "sensor_index": "0", + "sensor_type": "cRFStatusUnitState", + "sensor_descr": "VSS Device State", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 14, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "0", + "entPhysicalIndex_measured": null, + "sensor_prev": 0, + "user_func": null, + "state_name": "cRFStatusUnitState" + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.12905956", + "sensor_index": "12905956", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/RSP0/CPU0 - 0/RSP0/CPU0", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 36.3, + "sensor_limit": 86, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "12905956", + "entPhysicalIndex_measured": "52690955", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.14782338", + "sensor_index": "14782338", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module Mau 0/0/2/0 - 0/0/2/0", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 32.3, + "sensor_limit": 85, + "sensor_limit_warn": 80, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "42", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.16251165", + "sensor_index": "16251165", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/1 - 0/0/1", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 23.1, + "sensor_limit": 43.1, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "16251165", + "entPhysicalIndex_measured": "49125802", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.23538399", + "sensor_index": "23538399", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - 0/0/CPU0", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 36.9, + "sensor_limit": 86, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "23538399", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.23539987", + "sensor_index": "23539987", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - 0/0/CPU0", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 39.1, + "sensor_limit": 59.1, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "23539987", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.29683569", + "sensor_index": "29683569", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/RSP0/CPU0 - 0/RSP0/CPU0", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 21.3, + "sensor_limit": 41.3, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "29683569", + "entPhysicalIndex_measured": "52690955", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.29685125", + "sensor_index": "29685125", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/RSP0/CPU0 - 0/RSP0/CPU0", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 38, + "sensor_limit": 58, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "29685125", + "entPhysicalIndex_measured": "52690955", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.31370605", + "sensor_index": "31370605", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/0 - 0/0/0", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 29, + "sensor_limit": 86, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "31370605", + "entPhysicalIndex_measured": "14585855", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.33028842", + "sensor_index": "33028842", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/1 - 0/0/1", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 27.3, + "sensor_limit": 86, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "33028842", + "entPhysicalIndex_measured": "49125802", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.40316076", + "sensor_index": "40316076", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - 0/0/CPU0", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 31.7, + "sensor_limit": 51.7, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "40316076", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.40317664", + "sensor_index": "40317664", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - 0/0/CPU0", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 36.8, + "sensor_limit": 56.8, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "40317664", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.46461150", + "sensor_index": "46461150", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/RSP0/CPU0 - 0/RSP0/CPU0", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 23.9, + "sensor_limit": 43.9, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "46461150", + "entPhysicalIndex_measured": "52690955", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.46462738", + "sensor_index": "46462738", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/RSP0/CPU0 - 0/RSP0/CPU0", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 37.9, + "sensor_limit": 57.9, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "46462738", + "entPhysicalIndex_measured": "52690955", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.48148218", + "sensor_index": "48148218", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/0 - 0/0/0", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 26.5, + "sensor_limit": 46.5, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "48148218", + "entPhysicalIndex_measured": "14585855", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.52262180", + "sensor_index": "52262180", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module Mau 0/0/0/3 - 0/0/0/3", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 18.5, + "sensor_limit": 75, + "sensor_limit_warn": 70, + "sensor_limit_low": -6, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "21", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.57093689", + "sensor_index": "57093689", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - 0/0/CPU0", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 40.5, + "sensor_limit": 60.5, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "57093689", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.57760853", + "sensor_index": "57760853", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module Mau 0/0/1/1 - 0/0/1/1", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 16, + "sensor_limit": 90, + "sensor_limit_warn": 85, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "23", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.63237143", + "sensor_index": "63237143", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/RSP0/CPU0 - 0/RSP0/CPU0", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 27.7, + "sensor_limit": 47.7, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "63237143", + "entPhysicalIndex_measured": "52690955", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.64126832", + "sensor_index": "64126832", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module Mau 0/0/2/2 - 0/0/2/2", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 30.8, + "sensor_limit": 100, + "sensor_limit_warn": 95, + "sensor_limit_low": -50, + "sensor_limit_low_warn": -45, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "44", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.6762374", + "sensor_index": "6762374", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - 0/0/CPU0", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 30.5, + "sensor_limit": 50.5, + "sensor_limit_warn": null, + "sensor_limit_low": -5, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "6762374", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.9716067", + "sensor_index": "9716067", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module Mau 0/0/1/3 - 0/0/1/3", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": -5, + "sensor_limit_warn": null, + "sensor_limit_low": -3256.8, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "25", + "entPhysicalIndex_measured": "ports", + "sensor_prev": -3276.8, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.12907576", + "sensor_index": "12907576", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/RSP0/CPU0 - Voltage 0/RSP0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.3, + "sensor_limit": 3.795, + "sensor_limit_warn": 3.399, + "sensor_limit_low": 2.805, + "sensor_limit_low_warn": 3.201, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "12907576", + "entPhysicalIndex_measured": "52690955", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.14591308", + "sensor_index": "14591308", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/0 - Voltage 0/0/0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.199, + "sensor_limit": 1.37885, + "sensor_limit_warn": 1.296, + "sensor_limit_low": 1.01915, + "sensor_limit_low_warn": 1.104, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "14591308", + "entPhysicalIndex_measured": "14585855", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.14592896", + "sensor_index": "14592896", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/0 - Voltage 0/0/0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.9, + "sensor_limit": 1.035, + "sensor_limit_warn": 0.972, + "sensor_limit_low": 0.765, + "sensor_limit_low_warn": 0.828, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "14592896", + "entPhysicalIndex_measured": "14585855", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.14780750", + "sensor_index": "14780750", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module Mau 0/0/2/0 - Voltage 0/0/2/0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.264, + "sensor_limit": 3.7, + "sensor_limit_warn": 3.6, + "sensor_limit_low": 2.9, + "sensor_limit_low_warn": 3, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "42", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.16249545", + "sensor_index": "16249545", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/1 - Voltage 0/0/1", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.299, + "sensor_limit": 3.79385, + "sensor_limit_warn": 3.564, + "sensor_limit_low": 2.80415, + "sensor_limit_low_warn": 3.036, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "16249545", + "entPhysicalIndex_measured": "49125802", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.16949774", + "sensor_index": "16949774", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/RSP0/CPU0 - Voltage 0/RSP0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 5, + "sensor_limit": 5.75, + "sensor_limit_warn": 5.25, + "sensor_limit_low": 4.25, + "sensor_limit_low_warn": 4.75, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "16949774", + "entPhysicalIndex_measured": "52690955", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.17096855", + "sensor_index": "17096855", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/RSP0/CPU0 - Voltage 0/RSP0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 11.996, + "sensor_limit": 13.7954, + "sensor_limit_warn": 12.6, + "sensor_limit_low": 10.1966, + "sensor_limit_low_warn": 11.4, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "17096855", + "entPhysicalIndex_measured": "52690955", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.17098539", + "sensor_index": "17098539", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/RSP0/CPU0 - Voltage 0/RSP0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.199, + "sensor_limit": 1.37885, + "sensor_limit_warn": 1.26, + "sensor_limit_low": 1.01915, + "sensor_limit_low_warn": 1.14, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "17098539", + "entPhysicalIndex_measured": "52690955", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.172193", + "sensor_index": "172193", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/RSP0/CPU0 - Voltage 0/RSP0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.299, + "sensor_limit": 3.79385, + "sensor_limit_warn": 3.465, + "sensor_limit_low": 2.80415, + "sensor_limit_low_warn": 3.135, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "172193", + "entPhysicalIndex_measured": "52690955", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.19337222", + "sensor_index": "19337222", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Daughtercard 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.5, + "sensor_limit": 1.725, + "sensor_limit_warn": 1.575, + "sensor_limit_low": 1.275, + "sensor_limit_low_warn": 1.425, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "19337222", + "entPhysicalIndex_measured": "5225733", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.19338842", + "sensor_index": "19338842", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Daughtercard 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 2.5, + "sensor_limit": 2.875, + "sensor_limit_warn": 2.625, + "sensor_limit_low": 2.125, + "sensor_limit_low_warn": 2.375, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "19338842", + "entPhysicalIndex_measured": "5225733", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.23541671", + "sensor_index": "23541671", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.999, + "sensor_limit": 1.14885, + "sensor_limit_warn": 1.05, + "sensor_limit_low": 0.84915, + "sensor_limit_low_warn": 0.95, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "23541671", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.23612527", + "sensor_index": "23612527", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.199, + "sensor_limit": 1.37885, + "sensor_limit_warn": 1.26, + "sensor_limit_low": 1.01915, + "sensor_limit_low_warn": 1.14, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "23612527", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.23614115", + "sensor_index": "23614115", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": 1.15, + "sensor_limit_warn": 1.05, + "sensor_limit_low": 0.85, + "sensor_limit_low_warn": 0.95, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "23614115", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.23615735", + "sensor_index": "23615735", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.199, + "sensor_limit": 1.37885, + "sensor_limit_warn": 1.26, + "sensor_limit_low": 1.01915, + "sensor_limit_low_warn": 1.14, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "23615735", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.24113454", + "sensor_index": "24113454", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.5, + "sensor_limit": 1.725, + "sensor_limit_warn": 1.575, + "sensor_limit_low": 1.275, + "sensor_limit_low_warn": 1.425, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "24113454", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.24115042", + "sensor_index": "24115042", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.749, + "sensor_limit": 0.86135, + "sensor_limit_warn": 0.788, + "sensor_limit_low": 0.63665, + "sensor_limit_low_warn": 0.712, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "24115042", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.25205777", + "sensor_index": "25205777", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Daughtercard 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.299, + "sensor_limit": 3.79385, + "sensor_limit_warn": 3.399, + "sensor_limit_low": 2.80415, + "sensor_limit_low_warn": 3.201, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "25205777", + "entPhysicalIndex_measured": "5225733", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.25207461", + "sensor_index": "25207461", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Daughtercard 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": 1.15, + "sensor_limit_warn": 1.05, + "sensor_limit_low": 0.85, + "sensor_limit_low_warn": 0.95, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "25207461", + "entPhysicalIndex_measured": "5225733", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2559673", + "sensor_index": "2559673", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Daughtercard 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.499, + "sensor_limit": 1.72385, + "sensor_limit_warn": 1.575, + "sensor_limit_low": 1.27415, + "sensor_limit_low_warn": 1.425, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2559673", + "entPhysicalIndex_measured": "5225733", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2561229", + "sensor_index": "2561229", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Daughtercard 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.8, + "sensor_limit": 2.07, + "sensor_limit_warn": 1.89, + "sensor_limit_low": 1.53, + "sensor_limit_low_warn": 1.71, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2561229", + "entPhysicalIndex_measured": "5225733", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.25693872", + "sensor_index": "25693872", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Daughtercard 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.999, + "sensor_limit": 1.14885, + "sensor_limit_warn": 1.05, + "sensor_limit_low": 0.84915, + "sensor_limit_low_warn": 0.95, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "25693872", + "entPhysicalIndex_measured": "5225733", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.29680361", + "sensor_index": "29680361", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/RSP0/CPU0 - Voltage 0/RSP0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.499, + "sensor_limit": 1.72385, + "sensor_limit_warn": 1.575, + "sensor_limit_low": 1.27415, + "sensor_limit_low_warn": 1.425, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "29680361", + "entPhysicalIndex_measured": "52690955", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.31368921", + "sensor_index": "31368921", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/0 - Voltage 0/0/0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.199, + "sensor_limit": 1.37885, + "sensor_limit_warn": 1.296, + "sensor_limit_low": 1.01915, + "sensor_limit_low_warn": 1.104, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "31368921", + "entPhysicalIndex_measured": "14585855", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.31373813", + "sensor_index": "31373813", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/0 - Voltage 0/0/0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 4.999, + "sensor_limit": 5.74885, + "sensor_limit_warn": 5.4, + "sensor_limit_low": 4.24915, + "sensor_limit_low_warn": 4.6, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "31373813", + "entPhysicalIndex_measured": "14585855", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.319242", + "sensor_index": "319242", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/RSP0/CPU0 - Voltage 0/RSP0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.299, + "sensor_limit": 3.79385, + "sensor_limit_warn": 3.465, + "sensor_limit_low": 2.80415, + "sensor_limit_low_warn": 3.135, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "319242", + "entPhysicalIndex_measured": "52690955", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.320862", + "sensor_index": "320862", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/RSP0/CPU0 - Voltage 0/RSP0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.799, + "sensor_limit": 2.06885, + "sensor_limit_warn": 1.89, + "sensor_limit_low": 1.52915, + "sensor_limit_low_warn": 1.71, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "320862", + "entPhysicalIndex_measured": "52690955", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.322450", + "sensor_index": "322450", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/RSP0/CPU0 - Voltage 0/RSP0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.899, + "sensor_limit": 2.18385, + "sensor_limit_warn": 1.995, + "sensor_limit_low": 1.61415, + "sensor_limit_low_warn": 1.805, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "322450", + "entPhysicalIndex_measured": "52690955", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.32635680", + "sensor_index": "32635680", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/PS0/M1/SP - Voltage 0/PS0/M1/SP", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 12.156, + "sensor_limit": 13.9794, + "sensor_limit_warn": null, + "sensor_limit_low": 10.3326, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "32635680", + "entPhysicalIndex_measured": "2237736", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.33027158", + "sensor_index": "33027158", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/1 - Voltage 0/0/1", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.2, + "sensor_limit": 1.38, + "sensor_limit_warn": 1.296, + "sensor_limit_low": 1.02, + "sensor_limit_low_warn": 1.104, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "33027158", + "entPhysicalIndex_measured": "49125802", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3355929", + "sensor_index": "3355929", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/PS0/M0/SP - Voltage 0/PS0/M0/SP", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 12.156, + "sensor_limit": 13.9794, + "sensor_limit_warn": null, + "sensor_limit_low": 10.3326, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "3355929", + "entPhysicalIndex_measured": "19750579", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.33874532", + "sensor_index": "33874532", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/RSP0/CPU0 - Voltage 0/RSP0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 7, + "sensor_limit": 8.05, + "sensor_limit_warn": 7.35, + "sensor_limit_low": 5.95, + "sensor_limit_low_warn": 6.65, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "33874532", + "entPhysicalIndex_measured": "52690955", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.33876152", + "sensor_index": "33876152", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/RSP0/CPU0 - Voltage 0/RSP0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": 1.15, + "sensor_limit_warn": 1.05, + "sensor_limit_low": 0.85, + "sensor_limit_low_warn": 0.95, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "33876152", + "entPhysicalIndex_measured": "52690955", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.36113247", + "sensor_index": "36113247", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Daughtercard 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.499, + "sensor_limit": 1.72385, + "sensor_limit_warn": 1.575, + "sensor_limit_low": 1.27415, + "sensor_limit_low_warn": 1.425, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "36113247", + "entPhysicalIndex_measured": "5225733", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.36114835", + "sensor_index": "36114835", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Daughtercard 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 2.5, + "sensor_limit": 2.875, + "sensor_limit_warn": 2.625, + "sensor_limit_low": 2.125, + "sensor_limit_low_warn": 2.375, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "36114835", + "entPhysicalIndex_measured": "5225733", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.36118139", + "sensor_index": "36118139", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Daughtercard 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.049, + "sensor_limit": 1.20635, + "sensor_limit_warn": 1.103, + "sensor_limit_low": 0.89165, + "sensor_limit_low_warn": 0.997, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "36118139", + "entPhysicalIndex_measured": "5225733", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.40319284", + "sensor_index": "40319284", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.799, + "sensor_limit": 2.06885, + "sensor_limit_warn": 1.89, + "sensor_limit_low": 1.52915, + "sensor_limit_low_warn": 1.71, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "40319284", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.40390140", + "sensor_index": "40390140", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.2, + "sensor_limit": 1.38, + "sensor_limit_warn": 1.26, + "sensor_limit_low": 1.02, + "sensor_limit_low_warn": 1.14, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "40390140", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.40391728", + "sensor_index": "40391728", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.999, + "sensor_limit": 1.14885, + "sensor_limit_warn": 1.05, + "sensor_limit_low": 0.84915, + "sensor_limit_low_warn": 0.95, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "40391728", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.40393284", + "sensor_index": "40393284", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": 1.15, + "sensor_limit_warn": 1.05, + "sensor_limit_low": 0.85, + "sensor_limit_low_warn": 0.95, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "40393284", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.40886175", + "sensor_index": "40886175", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 7, + "sensor_limit": 8.05, + "sensor_limit_warn": 7.35, + "sensor_limit_low": 5.95, + "sensor_limit_low_warn": 6.65, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "40886175", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.40889447", + "sensor_index": "40889447", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 2.499, + "sensor_limit": 2.87385, + "sensor_limit_warn": 2.625, + "sensor_limit_low": 2.12415, + "sensor_limit_low_warn": 2.375, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "40889447", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.40891067", + "sensor_index": "40891067", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.999, + "sensor_limit": 1.14885, + "sensor_limit_warn": 1.05, + "sensor_limit_low": 0.84915, + "sensor_limit_low_warn": 0.95, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "40891067", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.41983486", + "sensor_index": "41983486", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Daughtercard 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.199, + "sensor_limit": 1.37885, + "sensor_limit_warn": 1.26, + "sensor_limit_low": 1.01915, + "sensor_limit_low_warn": 1.14, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "41983486", + "entPhysicalIndex_measured": "5225733", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.41985074", + "sensor_index": "41985074", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Daughtercard 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": 1.15, + "sensor_limit_warn": 1.05, + "sensor_limit_low": 0.85, + "sensor_limit_low_warn": 0.95, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "41985074", + "entPhysicalIndex_measured": "5225733", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.42471453", + "sensor_index": "42471453", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Daughtercard 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": 1.15, + "sensor_limit_warn": 1.05, + "sensor_limit_low": 0.85, + "sensor_limit_low_warn": 0.95, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "42471453", + "entPhysicalIndex_measured": "5225733", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.46457974", + "sensor_index": "46457974", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/RSP0/CPU0 - Voltage 0/RSP0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.799, + "sensor_limit": 2.06885, + "sensor_limit_warn": 1.89, + "sensor_limit_low": 1.52915, + "sensor_limit_low_warn": 1.71, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "46457974", + "entPhysicalIndex_measured": "52690955", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.48146598", + "sensor_index": "48146598", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/0 - Voltage 0/0/0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.3, + "sensor_limit": 3.795, + "sensor_limit_warn": 3.564, + "sensor_limit_low": 2.805, + "sensor_limit_low_warn": 3.036, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "48146598", + "entPhysicalIndex_measured": "14585855", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.48151362", + "sensor_index": "48151362", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/0 - Voltage 0/0/0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 2.499, + "sensor_limit": 2.87385, + "sensor_limit_warn": 2.7, + "sensor_limit_low": 2.12415, + "sensor_limit_low_warn": 2.3, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "48151362", + "entPhysicalIndex_measured": "14585855", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.49803247", + "sensor_index": "49803247", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/1 - Voltage 0/0/1", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.199, + "sensor_limit": 1.37885, + "sensor_limit_warn": 1.296, + "sensor_limit_low": 1.01915, + "sensor_limit_low_warn": 1.104, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "49803247", + "entPhysicalIndex_measured": "49125802", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.49804835", + "sensor_index": "49804835", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/1 - Voltage 0/0/1", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 11.862, + "sensor_limit": 13.6413, + "sensor_limit_warn": 20, + "sensor_limit_low": 10.0827, + "sensor_limit_low_warn": 8, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "49804835", + "entPhysicalIndex_measured": "49125802", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.50650557", + "sensor_index": "50650557", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/RSP0/CPU0 - Voltage 0/RSP0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.751, + "sensor_limit": 0.86365, + "sensor_limit_warn": 0.788, + "sensor_limit_low": 0.63835, + "sensor_limit_low_warn": 0.712, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "50650557", + "entPhysicalIndex_measured": "52690955", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.50652145", + "sensor_index": "50652145", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/RSP0/CPU0 - Voltage 0/RSP0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": 1.15, + "sensor_limit_warn": 1.05, + "sensor_limit_low": 0.85, + "sensor_limit_low_warn": 0.95, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "50652145", + "entPhysicalIndex_measured": "52690955", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.50653701", + "sensor_index": "50653701", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/RSP0/CPU0 - Voltage 0/RSP0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.199, + "sensor_limit": 1.37885, + "sensor_limit_warn": 1.26, + "sensor_limit_low": 1.01915, + "sensor_limit_low_warn": 1.14, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "50653701", + "entPhysicalIndex_measured": "52690955", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.52890924", + "sensor_index": "52890924", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Daughtercard 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.799, + "sensor_limit": 2.06885, + "sensor_limit_warn": 1.89, + "sensor_limit_low": 1.52915, + "sensor_limit_low_warn": 1.71, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "52890924", + "entPhysicalIndex_measured": "5225733", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.52892512", + "sensor_index": "52892512", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Daughtercard 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.3, + "sensor_limit": 3.795, + "sensor_limit_warn": 3.399, + "sensor_limit_low": 2.805, + "sensor_limit_low_warn": 3.201, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "52892512", + "entPhysicalIndex_measured": "5225733", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.52895688", + "sensor_index": "52895688", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Daughtercard 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.199, + "sensor_limit": 1.37885, + "sensor_limit_warn": 1.26, + "sensor_limit_low": 1.01915, + "sensor_limit_low_warn": 1.14, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "52895688", + "entPhysicalIndex_measured": "5225733", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.57095245", + "sensor_index": "57095245", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.999, + "sensor_limit": 1.14885, + "sensor_limit_warn": 1.05, + "sensor_limit_low": 0.84915, + "sensor_limit_low_warn": 0.95, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "57095245", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.57167689", + "sensor_index": "57167689", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.9, + "sensor_limit": 1.035, + "sensor_limit_warn": 0.945, + "sensor_limit_low": 0.765, + "sensor_limit_low_warn": 0.855, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "57167689", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.57169309", + "sensor_index": "57169309", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": 1.15, + "sensor_limit_warn": 1.05, + "sensor_limit_low": 0.85, + "sensor_limit_low_warn": 0.95, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "57169309", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.57663852", + "sensor_index": "57663852", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.3, + "sensor_limit": 3.795, + "sensor_limit_warn": 3.465, + "sensor_limit_low": 2.805, + "sensor_limit_low_warn": 3.135, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "57663852", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.57667060", + "sensor_index": "57667060", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.3, + "sensor_limit": 3.795, + "sensor_limit_warn": 3.399, + "sensor_limit_low": 2.805, + "sensor_limit_low_warn": 3.201, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "57667060", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.57668616", + "sensor_index": "57668616", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.799, + "sensor_limit": 2.06885, + "sensor_limit_warn": 1.89, + "sensor_limit_low": 1.52915, + "sensor_limit_low_warn": 1.71, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "57668616", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.57759233", + "sensor_index": "57759233", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module Mau 0/0/1/1 - Voltage 0/0/1/1", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.34, + "sensor_limit": 3.6, + "sensor_limit_warn": 3.5, + "sensor_limit_low": 3, + "sensor_limit_low_warn": 3.1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "23", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.58757859", + "sensor_index": "58757859", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Daughtercard 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": 1.15, + "sensor_limit_warn": 1.05, + "sensor_limit_low": 0.85, + "sensor_limit_low_warn": 0.95, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "58757859", + "entPhysicalIndex_measured": "5225733", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.58759479", + "sensor_index": "58759479", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Daughtercard 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.91, + "sensor_limit": 1.0465, + "sensor_limit_warn": 0.945, + "sensor_limit_low": 0.7735, + "sensor_limit_low_warn": 0.855, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "58759479", + "entPhysicalIndex_measured": "5225733", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.58761035", + "sensor_index": "58761035", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Daughtercard 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": 1.15, + "sensor_limit_warn": 1.05, + "sensor_limit_low": 0.85, + "sensor_limit_low_warn": 0.95, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "58761035", + "entPhysicalIndex_measured": "5225733", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.59249130", + "sensor_index": "59249130", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Daughtercard 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.5, + "sensor_limit": 1.725, + "sensor_limit_warn": 1.575, + "sensor_limit_low": 1.275, + "sensor_limit_low_warn": 1.425, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "59249130", + "entPhysicalIndex_measured": "5225733", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.63238827", + "sensor_index": "63238827", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/RSP0/CPU0 - Voltage 0/RSP0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 2.5, + "sensor_limit": 2.875, + "sensor_limit_warn": 2.625, + "sensor_limit_low": 2.125, + "sensor_limit_low_warn": 2.375, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "63238827", + "entPhysicalIndex_measured": "52690955", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.64125244", + "sensor_index": "64125244", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module Mau 0/0/2/2 - Voltage 0/0/2/2", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.223, + "sensor_limit": 3.7, + "sensor_limit_warn": 3.599, + "sensor_limit_low": 2.9, + "sensor_limit_low_warn": 3, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "44", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.64922623", + "sensor_index": "64922623", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/0 - Voltage 0/0/0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.799, + "sensor_limit": 2.06885, + "sensor_limit_warn": 1.944, + "sensor_limit_low": 1.52915, + "sensor_limit_low_warn": 1.656, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "64922623", + "entPhysicalIndex_measured": "14585855", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.64924211", + "sensor_index": "64924211", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/0 - Voltage 0/0/0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.899, + "sensor_limit": 1.03385, + "sensor_limit_warn": 0.972, + "sensor_limit_low": 0.76415, + "sensor_limit_low_warn": 0.828, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "64924211", + "entPhysicalIndex_measured": "14585855", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.66582448", + "sensor_index": "66582448", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/1 - Voltage 0/0/1", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.272, + "sensor_limit": 3.7628, + "sensor_limit_warn": 3.63, + "sensor_limit_low": 2.7812, + "sensor_limit_low_warn": 2.97, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "66582448", + "entPhysicalIndex_measured": "49125802", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.6763994", + "sensor_index": "6763994", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.2, + "sensor_limit": 1.38, + "sensor_limit_warn": 1.26, + "sensor_limit_low": 1.02, + "sensor_limit_low_warn": 1.14, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "6763994", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.6836438", + "sensor_index": "6836438", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.9, + "sensor_limit": 1.035, + "sensor_limit_warn": 0.945, + "sensor_limit_low": 0.765, + "sensor_limit_low_warn": 0.855, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "6836438", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.6838122", + "sensor_index": "6838122", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.799, + "sensor_limit": 2.06885, + "sensor_limit_warn": 1.89, + "sensor_limit_low": 1.52915, + "sensor_limit_low_warn": 1.71, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "6838122", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.7335745", + "sensor_index": "7335745", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.3, + "sensor_limit": 3.795, + "sensor_limit_warn": 3.465, + "sensor_limit_low": 2.805, + "sensor_limit_low_warn": 3.135, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7335745", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.7337365", + "sensor_index": "7337365", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 5, + "sensor_limit": 5.75, + "sensor_limit_warn": 5.25, + "sensor_limit_low": 4.25, + "sensor_limit_low_warn": 4.75, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7337365", + "entPhysicalIndex_measured": "18788073", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.8426608", + "sensor_index": "8426608", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Daughtercard 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 2.5, + "sensor_limit": 2.875, + "sensor_limit_warn": 2.625, + "sensor_limit_low": 2.125, + "sensor_limit_low_warn": 2.375, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "8426608", + "entPhysicalIndex_measured": "5225733", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.8428164", + "sensor_index": "8428164", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Daughtercard 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.91, + "sensor_limit": 1.0465, + "sensor_limit_warn": 0.945, + "sensor_limit_low": 0.7735, + "sensor_limit_low_warn": 0.855, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "8428164", + "entPhysicalIndex_measured": "5225733", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.8429784", + "sensor_index": "8429784", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Daughtercard 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.999, + "sensor_limit": 1.14885, + "sensor_limit_warn": 1.05, + "sensor_limit_low": 0.84915, + "sensor_limit_low_warn": 0.95, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "8429784", + "entPhysicalIndex_measured": "5225733", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.8916259", + "sensor_index": "8916259", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Daughtercard 0/0/CPU0 - Voltage 0/0/CPU0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": 1.15, + "sensor_limit_warn": 1.05, + "sensor_limit_low": 0.85, + "sensor_limit_low_warn": 0.95, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "8916259", + "entPhysicalIndex_measured": "5225733", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.9714479", + "sensor_index": "9714479", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module Mau 0/0/1/3 - Voltage 0/0/1/3", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": -27.8528, + "sensor_limit_warn": null, + "sensor_limit_low": -37.6832, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "25", + "entPhysicalIndex_measured": "ports", + "sensor_prev": -32.768, + "user_func": null, + "state_name": null + } + ], + "state_indexes": [ + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "off (other)", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 2 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "on", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "off (admin)", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 1 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "off (denied)", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 2 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "off (environmental)", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 2 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "off (temperature)", + "state_draw_graph": 0, + "state_value": 6, + "state_generic_value": 2 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "off (fan)", + "state_draw_graph": 0, + "state_value": 7, + "state_generic_value": 2 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "failed", + "state_draw_graph": 0, + "state_value": 8, + "state_generic_value": 2 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "on (fan failed)", + "state_draw_graph": 0, + "state_value": 9, + "state_generic_value": 1 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "off (cooling)", + "state_draw_graph": 0, + "state_value": 10, + "state_generic_value": 2 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "off (connector rating)", + "state_draw_graph": 0, + "state_value": 11, + "state_generic_value": 2 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "on (no inline power)", + "state_draw_graph": 0, + "state_value": 12, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "notKnown", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 3 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "disabled", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "initialization", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "negotiation", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "standbyCold", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "standbyColdConfig", + "state_draw_graph": 0, + "state_value": 6, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "standbyColdFileSys", + "state_draw_graph": 0, + "state_value": 7, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "standbyColdBulk", + "state_draw_graph": 0, + "state_value": 8, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "standbyHot", + "state_draw_graph": 0, + "state_value": 9, + "state_generic_value": 0 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "activeFast", + "state_draw_graph": 0, + "state_value": 10, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "activeDrain", + "state_draw_graph": 0, + "state_value": 11, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "activePreconfig", + "state_draw_graph": 0, + "state_value": 12, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "activePostconfig", + "state_draw_graph": 0, + "state_value": 13, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "active", + "state_draw_graph": 0, + "state_value": 14, + "state_generic_value": 0 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "activeExtraload", + "state_draw_graph": 0, + "state_value": 15, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "activeHandback", + "state_draw_graph": 0, + "state_value": 16, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "notKnown", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 3 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "disabled", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "initialization", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "negotiation", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "standbyCold", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "standbyColdConfig", + "state_draw_graph": 0, + "state_value": 6, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "standbyColdFileSys", + "state_draw_graph": 0, + "state_value": 7, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "standbyColdBulk", + "state_draw_graph": 0, + "state_value": 8, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "standbyHot", + "state_draw_graph": 0, + "state_value": 9, + "state_generic_value": 0 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "activeFast", + "state_draw_graph": 0, + "state_value": 10, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "activeDrain", + "state_draw_graph": 0, + "state_value": 11, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "activePreconfig", + "state_draw_graph": 0, + "state_value": 12, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "activePostconfig", + "state_draw_graph": 0, + "state_value": 13, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "active", + "state_draw_graph": 0, + "state_value": 14, + "state_generic_value": 0 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "activeExtraload", + "state_draw_graph": 0, + "state_value": 15, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "activeHandback", + "state_draw_graph": 0, + "state_value": 16, + "state_generic_value": 1 + } + ] + } + }, + "bgp-peers": { + "discovery": { + "bgpPeers": [ + { + "astext": "", + "bgpPeerIdentifier": "10.246.0.3", + "bgpPeerRemoteAs": 65056, + "bgpPeerState": "idle", + "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpLocalAddr": "0.0.0.0", + "bgpPeerRemoteAddr": "0.0.0.0", + "bgpPeerDescr": "", + "bgpPeerInUpdates": 0, + "bgpPeerOutUpdates": 0, + "bgpPeerInTotalMessages": 0, + "bgpPeerOutTotalMessages": 0, + "bgpPeerFsmEstablishedTime": 0, + "bgpPeerInUpdateElapsedTime": 0, + "context_name": "", + "bgpLocalAs": 65056, + "vrfLocalAs": null + }, + { + "astext": "", + "bgpPeerIdentifier": "10.246.0.4", + "bgpPeerRemoteAs": 65056, + "bgpPeerState": "idle", + "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpLocalAddr": "0.0.0.0", + "bgpPeerRemoteAddr": "0.0.0.0", + "bgpPeerDescr": "", + "bgpPeerInUpdates": 0, + "bgpPeerOutUpdates": 0, + "bgpPeerInTotalMessages": 0, + "bgpPeerOutTotalMessages": 0, + "bgpPeerFsmEstablishedTime": 0, + "bgpPeerInUpdateElapsedTime": 0, + "context_name": "", + "bgpLocalAs": 65056, + "vrfLocalAs": null + } + ], + "bgpPeers_cbgp": [ + { + "bgpPeerIdentifier": "10.246.0.3", + "afi": "ipv4", + "safi": "vpn", + "AcceptedPrefixes": 0, + "DeniedPrefixes": 0, + "PrefixAdminLimit": 0, + "PrefixThreshold": 0, + "PrefixClearThreshold": 0, + "AdvertisedPrefixes": 0, + "SuppressedPrefixes": 0, + "WithdrawnPrefixes": 0, + "AcceptedPrefixes_delta": 0, + "AcceptedPrefixes_prev": 0, + "DeniedPrefixes_delta": 0, + "DeniedPrefixes_prev": 0, + "AdvertisedPrefixes_delta": 0, + "AdvertisedPrefixes_prev": 0, + "SuppressedPrefixes_delta": 0, + "SuppressedPrefixes_prev": 0, + "WithdrawnPrefixes_delta": 0, + "WithdrawnPrefixes_prev": 0, + "context_name": "" + }, + { + "bgpPeerIdentifier": "10.246.0.3", + "afi": "ipv6", + "safi": "vpn", + "AcceptedPrefixes": 0, + "DeniedPrefixes": 0, + "PrefixAdminLimit": 0, + "PrefixThreshold": 0, + "PrefixClearThreshold": 0, + "AdvertisedPrefixes": 0, + "SuppressedPrefixes": 0, + "WithdrawnPrefixes": 0, + "AcceptedPrefixes_delta": 0, + "AcceptedPrefixes_prev": 0, + "DeniedPrefixes_delta": 0, + "DeniedPrefixes_prev": 0, + "AdvertisedPrefixes_delta": 0, + "AdvertisedPrefixes_prev": 0, + "SuppressedPrefixes_delta": 0, + "SuppressedPrefixes_prev": 0, + "WithdrawnPrefixes_delta": 0, + "WithdrawnPrefixes_prev": 0, + "context_name": "" + }, + { + "bgpPeerIdentifier": "10.246.0.4", + "afi": "ipv4", + "safi": "vpn", + "AcceptedPrefixes": 0, + "DeniedPrefixes": 0, + "PrefixAdminLimit": 0, + "PrefixThreshold": 0, + "PrefixClearThreshold": 0, + "AdvertisedPrefixes": 0, + "SuppressedPrefixes": 0, + "WithdrawnPrefixes": 0, + "AcceptedPrefixes_delta": 0, + "AcceptedPrefixes_prev": 0, + "DeniedPrefixes_delta": 0, + "DeniedPrefixes_prev": 0, + "AdvertisedPrefixes_delta": 0, + "AdvertisedPrefixes_prev": 0, + "SuppressedPrefixes_delta": 0, + "SuppressedPrefixes_prev": 0, + "WithdrawnPrefixes_delta": 0, + "WithdrawnPrefixes_prev": 0, + "context_name": "" + }, + { + "bgpPeerIdentifier": "10.246.0.4", + "afi": "ipv6", + "safi": "vpn", + "AcceptedPrefixes": 0, + "DeniedPrefixes": 0, + "PrefixAdminLimit": 0, + "PrefixThreshold": 0, + "PrefixClearThreshold": 0, + "AdvertisedPrefixes": 0, + "SuppressedPrefixes": 0, + "WithdrawnPrefixes": 0, + "AcceptedPrefixes_delta": 0, + "AcceptedPrefixes_prev": 0, + "DeniedPrefixes_delta": 0, + "DeniedPrefixes_prev": 0, + "AdvertisedPrefixes_delta": 0, + "AdvertisedPrefixes_prev": 0, + "SuppressedPrefixes_delta": 0, + "SuppressedPrefixes_prev": 0, + "WithdrawnPrefixes_delta": 0, + "WithdrawnPrefixes_prev": 0, + "context_name": "" + } + ] + }, + "poller": { + "bgpPeers": [ + { + "astext": "", + "bgpPeerIdentifier": "10.246.0.3", + "bgpPeerRemoteAs": 65056, + "bgpPeerState": "established", + "bgpPeerAdminStatus": "start", + "bgpPeerLastErrorCode": 4, + "bgpPeerLastErrorSubCode": 0, + "bgpPeerLastErrorText": "hold time expired", + "bgpLocalAddr": "10.246.0.1", + "bgpPeerRemoteAddr": "0.0.0.0", + "bgpPeerDescr": "", + "bgpPeerInUpdates": 45, + "bgpPeerOutUpdates": 90, + "bgpPeerInTotalMessages": 559550, + "bgpPeerOutTotalMessages": 559556, + "bgpPeerFsmEstablishedTime": 5399820, + "bgpPeerInUpdateElapsedTime": 1028831, + "context_name": "", + "bgpLocalAs": 65056, + "vrfLocalAs": null + }, + { + "astext": "", + "bgpPeerIdentifier": "10.246.0.4", + "bgpPeerRemoteAs": 65056, + "bgpPeerState": "idle", + "bgpPeerAdminStatus": "start", + "bgpPeerLastErrorCode": 0, + "bgpPeerLastErrorSubCode": 0, + "bgpPeerLastErrorText": null, + "bgpLocalAddr": "0.0.0.0", + "bgpPeerRemoteAddr": "0.0.0.0", + "bgpPeerDescr": "", + "bgpPeerInUpdates": 0, + "bgpPeerOutUpdates": 0, + "bgpPeerInTotalMessages": 0, + "bgpPeerOutTotalMessages": 0, + "bgpPeerFsmEstablishedTime": 0, + "bgpPeerInUpdateElapsedTime": 0, + "context_name": "", + "bgpLocalAs": 65056, + "vrfLocalAs": null + } + ], + "bgpPeers_cbgp": [ + { + "bgpPeerIdentifier": "10.246.0.3", + "afi": "ipv4", + "safi": "vpn", + "AcceptedPrefixes": 5, + "DeniedPrefixes": 0, + "PrefixAdminLimit": 2097152, + "PrefixThreshold": 75, + "PrefixClearThreshold": 75, + "AdvertisedPrefixes": 25, + "SuppressedPrefixes": 0, + "WithdrawnPrefixes": 7, + "AcceptedPrefixes_delta": 5, + "AcceptedPrefixes_prev": 0, + "DeniedPrefixes_delta": 0, + "DeniedPrefixes_prev": 0, + "AdvertisedPrefixes_delta": 25, + "AdvertisedPrefixes_prev": 0, + "SuppressedPrefixes_delta": 0, + "SuppressedPrefixes_prev": 0, + "WithdrawnPrefixes_delta": 7, + "WithdrawnPrefixes_prev": 0, + "context_name": "" + }, + { + "bgpPeerIdentifier": "10.246.0.3", + "afi": "ipv6", + "safi": "vpn", + "AcceptedPrefixes": 5, + "DeniedPrefixes": 0, + "PrefixAdminLimit": 2097152, + "PrefixThreshold": 75, + "PrefixClearThreshold": 75, + "AdvertisedPrefixes": 25, + "SuppressedPrefixes": 0, + "WithdrawnPrefixes": 7, + "AcceptedPrefixes_delta": 5, + "AcceptedPrefixes_prev": 0, + "DeniedPrefixes_delta": 0, + "DeniedPrefixes_prev": 0, + "AdvertisedPrefixes_delta": 25, + "AdvertisedPrefixes_prev": 0, + "SuppressedPrefixes_delta": 0, + "SuppressedPrefixes_prev": 0, + "WithdrawnPrefixes_delta": 7, + "WithdrawnPrefixes_prev": 0, + "context_name": "" + }, + { + "bgpPeerIdentifier": "10.246.0.4", + "afi": "ipv4", + "safi": "vpn", + "AcceptedPrefixes": 0, + "DeniedPrefixes": 0, + "PrefixAdminLimit": 2097152, + "PrefixThreshold": 75, + "PrefixClearThreshold": 75, + "AdvertisedPrefixes": 0, + "SuppressedPrefixes": 0, + "WithdrawnPrefixes": 0, + "AcceptedPrefixes_delta": 0, + "AcceptedPrefixes_prev": 0, + "DeniedPrefixes_delta": 0, + "DeniedPrefixes_prev": 0, + "AdvertisedPrefixes_delta": 0, + "AdvertisedPrefixes_prev": 0, + "SuppressedPrefixes_delta": 0, + "SuppressedPrefixes_prev": 0, + "WithdrawnPrefixes_delta": 0, + "WithdrawnPrefixes_prev": 0, + "context_name": "" + }, + { + "bgpPeerIdentifier": "10.246.0.4", + "afi": "ipv6", + "safi": "vpn", + "AcceptedPrefixes": 0, + "DeniedPrefixes": 0, + "PrefixAdminLimit": 2097152, + "PrefixThreshold": 75, + "PrefixClearThreshold": 75, + "AdvertisedPrefixes": 0, + "SuppressedPrefixes": 0, + "WithdrawnPrefixes": 0, + "AcceptedPrefixes_delta": 0, + "AcceptedPrefixes_prev": 0, + "DeniedPrefixes_delta": 0, + "DeniedPrefixes_prev": 0, + "AdvertisedPrefixes_delta": 0, + "AdvertisedPrefixes_prev": 0, + "SuppressedPrefixes_delta": 0, + "SuppressedPrefixes_prev": 0, + "WithdrawnPrefixes_delta": 0, + "WithdrawnPrefixes_prev": 0, + "context_name": "" + } + ] + } + } +} diff --git a/tests/data/iosxr_asr9010.json b/tests/data/iosxr_asr9010.json index f0c2e8e3f7..cb694108fa 100644 --- a/tests/data/iosxr_asr9010.json +++ b/tests/data/iosxr_asr9010.json @@ -21783,7 +21783,7 @@ "sensor_current": 0.036, "sensor_limit": 0.1, "sensor_limit_warn": 0.08, - "sensor_limit_low": 0, + "sensor_limit_low": null, "sensor_limit_low_warn": 0, "sensor_alert": 1, "sensor_custom": "No", @@ -22215,7 +22215,7 @@ "sensor_current": 0.0258, "sensor_limit": 0.1, "sensor_limit_warn": 0.08, - "sensor_limit_low": 0, + "sensor_limit_low": null, "sensor_limit_low_warn": 0, "sensor_alert": 1, "sensor_custom": "No", @@ -22306,8 +22306,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "module mau 0/0/1/4 - power Tx 0/0/1/4", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": -7.122, "sensor_limit": 0, "sensor_limit_warn": -3.0016227413275, @@ -22318,7 +22318,7 @@ "entPhysicalIndex": "66", "entPhysicalIndex_measured": "ports", "sensor_prev": null, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -22330,8 +22330,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "module mau 0/7/1/19 - power Tx 0/7/1/19", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": 0, "sensor_limit": null, "sensor_limit_warn": null, @@ -22342,7 +22342,7 @@ "entPhysicalIndex": "50", "entPhysicalIndex_measured": "ports", "sensor_prev": null, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -22354,8 +22354,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "module mau 0/7/1/9 - power Tx 0/7/1/9", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": -5.452, "sensor_limit": 0.9968064110925, "sensor_limit_warn": -3.0016227413275, @@ -22366,7 +22366,7 @@ "entPhysicalIndex": "40", "entPhysicalIndex_measured": "ports", "sensor_prev": null, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -22378,8 +22378,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "module mau 0/7/0/0 - power Tx 0/7/0/0", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": -3.565, "sensor_limit": 1.9975517725347, "sensor_limit_warn": 0, @@ -22390,7 +22390,7 @@ "entPhysicalIndex": "13", "entPhysicalIndex_measured": "ports", "sensor_prev": null, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -22402,8 +22402,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "module mau 0/7/1/0 - power Rx 0/7/1/0", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": -8.508, "sensor_limit": 0, "sensor_limit_warn": -3.0016227413275, @@ -22414,7 +22414,7 @@ "entPhysicalIndex": "31", "entPhysicalIndex_measured": "ports", "sensor_prev": null, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -22426,8 +22426,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "GigabitEthernet0/0/1/0 - power Rx 0/0/1/0", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": -10, "sensor_limit": -1.9997064075587, "sensor_limit_warn": -3.0016227413275, @@ -22438,7 +22438,7 @@ "entPhysicalIndex": "62", "entPhysicalIndex_measured": "ports", "sensor_prev": null, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -22450,8 +22450,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "GigabitEthernet0/0/1/7 - power Tx 0/0/1/7", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": -6.091, "sensor_limit": -1.9997064075587, "sensor_limit_warn": -3.0016227413275, @@ -22462,7 +22462,7 @@ "entPhysicalIndex": "69", "entPhysicalIndex_measured": "ports", "sensor_prev": null, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -22474,8 +22474,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "GigabitEthernet0/7/1/2 - power Rx 0/7/1/2", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": -15.528, "sensor_limit": -1.9997064075587, "sensor_limit_warn": -3.0016227413275, @@ -22486,7 +22486,7 @@ "entPhysicalIndex": "33", "entPhysicalIndex_measured": "ports", "sensor_prev": null, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -22498,8 +22498,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "GigabitEthernet0/7/1/3 - power Rx 0/7/1/3", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": -8.665, "sensor_limit": -1.9997064075587, "sensor_limit_warn": -3.0016227413275, @@ -22510,7 +22510,7 @@ "entPhysicalIndex": "34", "entPhysicalIndex_measured": "ports", "sensor_prev": null, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -22522,8 +22522,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "module mau 0/0/0/0 - power Rx 0/0/0/0", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": -5.346, "sensor_limit": 3.4986008219233, "sensor_limit_warn": 1.4983469671578, @@ -22534,7 +22534,7 @@ "entPhysicalIndex": "12", "entPhysicalIndex_measured": "ports", "sensor_prev": null, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -22546,8 +22546,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "module mau 0/0/1/4 - power Rx 0/0/1/4", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": -13.665, "sensor_limit": 0, "sensor_limit_warn": -3.0016227413275, @@ -22558,7 +22558,7 @@ "entPhysicalIndex": "66", "entPhysicalIndex_measured": "ports", "sensor_prev": null, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -22570,8 +22570,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "GigabitEthernet0/7/1/8 - power Rx 0/7/1/8", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": -11.739, "sensor_limit": -1.9997064075587, "sensor_limit_warn": -3.0016227413275, @@ -22582,7 +22582,7 @@ "entPhysicalIndex": "39", "entPhysicalIndex_measured": "ports", "sensor_prev": null, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -22594,8 +22594,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "GigabitEthernet0/0/1/9 - power Tx 0/0/1/9", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": -6.126, "sensor_limit": -1.9997064075587, "sensor_limit_warn": -3.0016227413275, @@ -22606,7 +22606,7 @@ "entPhysicalIndex": "71", "entPhysicalIndex_measured": "ports", "sensor_prev": null, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -22618,8 +22618,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "module mau 0/7/1/9 - power Rx 0/7/1/9", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": -17.212, "sensor_limit": 0.9968064110925, "sensor_limit_warn": -3.0016227413275, @@ -22630,7 +22630,7 @@ "entPhysicalIndex": "40", "entPhysicalIndex_measured": "ports", "sensor_prev": null, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -22642,8 +22642,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "GigabitEthernet0/0/1/5 - power Tx 0/0/1/5", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": -5.935, "sensor_limit": -1.9997064075587, "sensor_limit_warn": -3.0016227413275, @@ -22654,7 +22654,7 @@ "entPhysicalIndex": "67", "entPhysicalIndex_measured": "ports", "sensor_prev": null, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -22666,8 +22666,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "module mau 0/0/1/2 - power Tx 0/0/1/2", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": -7.144, "sensor_limit": 0, "sensor_limit_warn": -3.0016227413275, @@ -22678,7 +22678,7 @@ "entPhysicalIndex": "64", "entPhysicalIndex_measured": "ports", "sensor_prev": null, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -22690,8 +22690,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "GigabitEthernet0/0/1/7 - power Rx 0/0/1/7", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": -15.376, "sensor_limit": 2.9994290002277, "sensor_limit_warn": 0, @@ -22702,7 +22702,7 @@ "entPhysicalIndex": "69", "entPhysicalIndex_measured": "ports", "sensor_prev": null, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -22714,8 +22714,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "GigabitEthernet0/7/1/3 - power Tx 0/7/1/3", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": -5.482, "sensor_limit": -1.9997064075587, "sensor_limit_warn": -3.0016227413275, @@ -22726,7 +22726,7 @@ "entPhysicalIndex": "34", "entPhysicalIndex_measured": "ports", "sensor_prev": null, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -22738,8 +22738,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "GigabitEthernet0/0/1/1 - power Rx 0/0/1/1", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": 0, "sensor_limit": -1.9997064075587, "sensor_limit_warn": -3.0016227413275, @@ -22750,7 +22750,7 @@ "entPhysicalIndex": "63", "entPhysicalIndex_measured": "ports", "sensor_prev": null, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -22762,8 +22762,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "module mau 0/0/0/0 - power Tx 0/0/0/0", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": -3.565, "sensor_limit": 1.9975517725347, "sensor_limit_warn": 0, @@ -22774,7 +22774,7 @@ "entPhysicalIndex": "12", "entPhysicalIndex_measured": "ports", "sensor_prev": null, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -22786,8 +22786,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "module mau 0/7/1/18 - power Tx 0/7/1/18", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": 0, "sensor_limit": null, "sensor_limit_warn": null, @@ -22798,7 +22798,7 @@ "entPhysicalIndex": "49", "entPhysicalIndex_measured": "ports", "sensor_prev": null, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -22810,8 +22810,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "module mau 0/0/1/18 - power Tx 0/0/1/18", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": 0, "sensor_limit": null, "sensor_limit_warn": null, @@ -22822,7 +22822,7 @@ "entPhysicalIndex": "80", "entPhysicalIndex_measured": "ports", "sensor_prev": null, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -22834,8 +22834,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "module mau 0/7/0/0 - power Rx 0/7/0/0", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": -3.969, "sensor_limit": 3.4986008219233, "sensor_limit_warn": 1.4983469671578, @@ -22846,7 +22846,7 @@ "entPhysicalIndex": "13", "entPhysicalIndex_measured": "ports", "sensor_prev": null, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -22858,8 +22858,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "GigabitEthernet0/7/1/1 - power Rx 0/7/1/1", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": -14.202, "sensor_limit": -1.9997064075587, "sensor_limit_warn": -3.0016227413275, @@ -22870,7 +22870,7 @@ "entPhysicalIndex": "32", "entPhysicalIndex_measured": "ports", "sensor_prev": null, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -22882,8 +22882,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "module mau 0/7/1/0 - power Tx 0/7/1/0", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": -7.212, "sensor_limit": 0, "sensor_limit_warn": -3.0016227413275, @@ -22894,7 +22894,7 @@ "entPhysicalIndex": "31", "entPhysicalIndex_measured": "ports", "sensor_prev": null, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -22906,8 +22906,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "GigabitEthernet0/7/1/8 - power Tx 0/7/1/8", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": -6.198, "sensor_limit": -1.9997064075587, "sensor_limit_warn": -3.0016227413275, @@ -22918,7 +22918,7 @@ "entPhysicalIndex": "39", "entPhysicalIndex_measured": "ports", "sensor_prev": null, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -22930,8 +22930,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "GigabitEthernet0/0/1/9 - power Rx 0/0/1/9", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": -5.654, "sensor_limit": -1.9997064075587, "sensor_limit_warn": -3.0016227413275, @@ -22942,7 +22942,7 @@ "entPhysicalIndex": "71", "entPhysicalIndex_measured": "ports", "sensor_prev": null, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -22954,8 +22954,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "GigabitEthernet0/0/1/0 - power Tx 0/0/1/0", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": -6.055, "sensor_limit": -1.9997064075587, "sensor_limit_warn": -3.0016227413275, @@ -22966,7 +22966,7 @@ "entPhysicalIndex": "62", "entPhysicalIndex_measured": "ports", "sensor_prev": null, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -22978,8 +22978,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "GigabitEthernet0/0/1/5 - power Rx 0/0/1/5", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": 0, "sensor_limit": -1.9997064075587, "sensor_limit_warn": -3.0016227413275, @@ -22990,7 +22990,7 @@ "entPhysicalIndex": "67", "entPhysicalIndex_measured": "ports", "sensor_prev": null, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -23002,8 +23002,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "module mau 0/7/1/5 - power Tx 0/7/1/5", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": -7.1, "sensor_limit": 0, "sensor_limit_warn": -3.0016227413275, @@ -23014,7 +23014,7 @@ "entPhysicalIndex": "36", "entPhysicalIndex_measured": "ports", "sensor_prev": null, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -23026,8 +23026,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "module mau 0/0/1/2 - power Rx 0/0/1/2", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": -8.041, "sensor_limit": 0, "sensor_limit_warn": -3.0016227413275, @@ -23038,7 +23038,7 @@ "entPhysicalIndex": "64", "entPhysicalIndex_measured": "ports", "sensor_prev": null, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -23050,8 +23050,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "module mau 0/0/1/3 - power Rx 0/0/1/3", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": -13.665, "sensor_limit": 0, "sensor_limit_warn": -3.0016227413275, @@ -23062,7 +23062,7 @@ "entPhysicalIndex": "65", "entPhysicalIndex_measured": "ports", "sensor_prev": null, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -23074,8 +23074,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "GigabitEthernet0/0/1/19 - power Rx 0/0/1/19", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": -10.969, "sensor_limit": -1.9997064075587, "sensor_limit_warn": -3.0016227413275, @@ -23086,7 +23086,7 @@ "entPhysicalIndex": "81", "entPhysicalIndex_measured": "ports", "sensor_prev": null, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -23098,8 +23098,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "GigabitEthernet0/7/1/6 - power Rx 0/7/1/6", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": -9.318, "sensor_limit": -1.9997064075587, "sensor_limit_warn": -3.0016227413275, @@ -23110,7 +23110,7 @@ "entPhysicalIndex": "37", "entPhysicalIndex_measured": "ports", "sensor_prev": null, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -23122,8 +23122,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "module mau 0/7/1/5 - power Rx 0/7/1/5", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": -11.739, "sensor_limit": 0, "sensor_limit_warn": -3.0016227413275, @@ -23134,7 +23134,7 @@ "entPhysicalIndex": "36", "entPhysicalIndex_measured": "ports", "sensor_prev": null, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -23146,8 +23146,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "GigabitEthernet0/0/1/1 - power Tx 0/0/1/1", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": 0, "sensor_limit": -1.9997064075587, "sensor_limit_warn": -3.0016227413275, @@ -23158,7 +23158,7 @@ "entPhysicalIndex": "63", "entPhysicalIndex_measured": "ports", "sensor_prev": null, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -23170,8 +23170,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "module mau 0/7/1/18 - power Rx 0/7/1/18", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": 0, "sensor_limit": null, "sensor_limit_warn": null, @@ -23182,7 +23182,7 @@ "entPhysicalIndex": "49", "entPhysicalIndex_measured": "ports", "sensor_prev": null, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -23194,8 +23194,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "module mau 0/0/1/18 - power Rx 0/0/1/18", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": 0, "sensor_limit": null, "sensor_limit_warn": null, @@ -23206,7 +23206,7 @@ "entPhysicalIndex": "80", "entPhysicalIndex_measured": "ports", "sensor_prev": null, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -23218,8 +23218,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "module mau 0/7/1/19 - power Rx 0/7/1/19", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": 0, "sensor_limit": null, "sensor_limit_warn": null, @@ -23230,7 +23230,7 @@ "entPhysicalIndex": "50", "entPhysicalIndex_measured": "ports", "sensor_prev": null, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -23242,8 +23242,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "GigabitEthernet0/7/1/1 - power Tx 0/7/1/1", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": -5.884, "sensor_limit": -1.9997064075587, "sensor_limit_warn": -3.0016227413275, @@ -23254,7 +23254,7 @@ "entPhysicalIndex": "32", "entPhysicalIndex_measured": "ports", "sensor_prev": null, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -23266,8 +23266,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "GigabitEthernet0/7/1/2 - power Tx 0/7/1/2", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": -5.528, "sensor_limit": -1.9997064075587, "sensor_limit_warn": -3.0016227413275, @@ -23278,7 +23278,7 @@ "entPhysicalIndex": "33", "entPhysicalIndex_measured": "ports", "sensor_prev": null, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -23290,8 +23290,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "module mau 0/0/1/3 - power Tx 0/0/1/3", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": -7.19, "sensor_limit": 0, "sensor_limit_warn": -3.0016227413275, @@ -23302,7 +23302,7 @@ "entPhysicalIndex": "65", "entPhysicalIndex_measured": "ports", "sensor_prev": null, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -23314,8 +23314,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "GigabitEthernet0/0/1/19 - power Tx 0/0/1/19", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": -5.834, "sensor_limit": -1.9997064075587, "sensor_limit_warn": -3.0016227413275, @@ -23326,7 +23326,7 @@ "entPhysicalIndex": "81", "entPhysicalIndex_measured": "ports", "sensor_prev": null, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -23338,8 +23338,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "GigabitEthernet0/7/1/6 - power Tx 0/7/1/6", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": -5.969, "sensor_limit": -1.9997064075587, "sensor_limit_warn": -3.0016227413275, @@ -23350,7 +23350,7 @@ "entPhysicalIndex": "37", "entPhysicalIndex_measured": "ports", "sensor_prev": null, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -32209,7 +32209,7 @@ "sensor_current": 0.036, "sensor_limit": 0.1, "sensor_limit_warn": 0.08, - "sensor_limit_low": 0, + "sensor_limit_low": null, "sensor_limit_low_warn": 0, "sensor_alert": 1, "sensor_custom": "No", @@ -32641,7 +32641,7 @@ "sensor_current": 0.0258, "sensor_limit": 0.1, "sensor_limit_warn": 0.08, - "sensor_limit_low": 0, + "sensor_limit_low": null, "sensor_limit_low_warn": 0, "sensor_alert": 1, "sensor_custom": "No", @@ -32732,9 +32732,9 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "module mau 0/0/1/4 - power Tx 0/0/1/4", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": -7.122, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, + "sensor_current": -7.1219827006977, "sensor_limit": 0, "sensor_limit_warn": -3.0016227413275, "sensor_limit_low": -13.01029995664, @@ -32743,8 +32743,8 @@ "sensor_custom": "No", "entPhysicalIndex": "66", "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": null, + "sensor_prev": -7.122, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -32756,8 +32756,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "module mau 0/7/1/19 - power Tx 0/7/1/19", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": 0, "sensor_limit": null, "sensor_limit_warn": null, @@ -32768,7 +32768,7 @@ "entPhysicalIndex": "50", "entPhysicalIndex_measured": "ports", "sensor_prev": 0, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -32780,9 +32780,9 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "module mau 0/7/1/9 - power Tx 0/7/1/9", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": -5.452, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, + "sensor_current": -5.4515513999149, "sensor_limit": 0.9968064110925, "sensor_limit_warn": -3.0016227413275, "sensor_limit_low": -13.565473235138, @@ -32791,8 +32791,8 @@ "sensor_custom": "No", "entPhysicalIndex": "40", "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": null, + "sensor_prev": -5.452, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -32804,9 +32804,9 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "module mau 0/7/0/0 - power Tx 0/7/0/0", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": -3.565, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, + "sensor_current": -3.5654732351381, "sensor_limit": 1.9975517725347, "sensor_limit_warn": 0, "sensor_limit_low": -9.0308998699194, @@ -32815,8 +32815,8 @@ "sensor_custom": "No", "entPhysicalIndex": "13", "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": null, + "sensor_prev": -3.565, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -32828,9 +32828,9 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "module mau 0/7/1/0 - power Rx 0/7/1/0", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": -8.508, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, + "sensor_current": -8.5078088734462, "sensor_limit": 0, "sensor_limit_warn": -3.0016227413275, "sensor_limit_low": -23.01029995664, @@ -32839,8 +32839,8 @@ "sensor_custom": "No", "entPhysicalIndex": "31", "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": null, + "sensor_prev": -8.508, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -32852,8 +32852,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "GigabitEthernet0/0/1/0 - power Rx 0/0/1/0", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": -10, "sensor_limit": -1.9997064075587, "sensor_limit_warn": -3.0016227413275, @@ -32864,7 +32864,7 @@ "entPhysicalIndex": "62", "entPhysicalIndex_measured": "ports", "sensor_prev": null, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -32876,9 +32876,9 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "GigabitEthernet0/0/1/7 - power Tx 0/0/1/7", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": -6.091, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, + "sensor_current": -6.0906489289662, "sensor_limit": -1.9997064075587, "sensor_limit_warn": -3.0016227413275, "sensor_limit_low": -10, @@ -32887,8 +32887,8 @@ "sensor_custom": "No", "entPhysicalIndex": "69", "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": null, + "sensor_prev": -6.091, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -32900,9 +32900,9 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "GigabitEthernet0/7/1/2 - power Rx 0/7/1/2", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": -15.528, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, + "sensor_current": -15.528419686578, "sensor_limit": -1.9997064075587, "sensor_limit_warn": -3.0016227413275, "sensor_limit_low": -22.218487496164, @@ -32911,8 +32911,8 @@ "sensor_custom": "No", "entPhysicalIndex": "33", "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": null, + "sensor_prev": -15.528, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -32924,9 +32924,9 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "GigabitEthernet0/7/1/3 - power Rx 0/7/1/3", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": -8.665, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, + "sensor_current": -8.6646109162978, "sensor_limit": -1.9997064075587, "sensor_limit_warn": -3.0016227413275, "sensor_limit_low": -22.218487496164, @@ -32935,8 +32935,8 @@ "sensor_custom": "No", "entPhysicalIndex": "34", "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": null, + "sensor_prev": -8.665, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -32948,9 +32948,9 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "module mau 0/0/0/0 - power Rx 0/0/0/0", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": -5.346, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, + "sensor_current": -5.3461714855158, "sensor_limit": 3.4986008219233, "sensor_limit_warn": 1.4983469671578, "sensor_limit_low": -17.447274948967, @@ -32959,8 +32959,8 @@ "sensor_custom": "No", "entPhysicalIndex": "12", "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": null, + "sensor_prev": -5.346, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -32972,9 +32972,9 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "module mau 0/0/1/4 - power Rx 0/0/1/4", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": -13.665, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, + "sensor_current": -13.665315444204, "sensor_limit": 0, "sensor_limit_warn": -3.0016227413275, "sensor_limit_low": -23.01029995664, @@ -32983,8 +32983,8 @@ "sensor_custom": "No", "entPhysicalIndex": "66", "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": null, + "sensor_prev": -13.665, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -32996,9 +32996,9 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "GigabitEthernet0/7/1/8 - power Rx 0/7/1/8", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": -11.739, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, + "sensor_current": -11.739251972992, "sensor_limit": -1.9997064075587, "sensor_limit_warn": -3.0016227413275, "sensor_limit_low": -22.218487496164, @@ -33007,8 +33007,8 @@ "sensor_custom": "No", "entPhysicalIndex": "39", "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": null, + "sensor_prev": -11.739, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -33020,9 +33020,9 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "GigabitEthernet0/0/1/9 - power Tx 0/0/1/9", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": -6.126, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, + "sensor_current": -6.1261017366127, "sensor_limit": -1.9997064075587, "sensor_limit_warn": -3.0016227413275, "sensor_limit_low": -10, @@ -33031,8 +33031,8 @@ "sensor_custom": "No", "entPhysicalIndex": "71", "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": null, + "sensor_prev": -6.126, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -33044,9 +33044,9 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "module mau 0/7/1/9 - power Rx 0/7/1/9", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": -17.212, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, + "sensor_current": -17.212463990472, "sensor_limit": 0.9968064110925, "sensor_limit_warn": -3.0016227413275, "sensor_limit_low": -23.01029995664, @@ -33055,8 +33055,8 @@ "sensor_custom": "No", "entPhysicalIndex": "40", "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": null, + "sensor_prev": -17.212, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -33068,9 +33068,9 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "GigabitEthernet0/0/1/5 - power Tx 0/0/1/5", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": -5.935, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, + "sensor_current": -5.9345981956604, "sensor_limit": -1.9997064075587, "sensor_limit_warn": -3.0016227413275, "sensor_limit_low": -10, @@ -33079,8 +33079,8 @@ "sensor_custom": "No", "entPhysicalIndex": "67", "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": null, + "sensor_prev": -5.935, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -33092,9 +33092,9 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "module mau 0/0/1/2 - power Tx 0/0/1/2", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": -7.144, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, + "sensor_current": -7.1444269099223, "sensor_limit": 0, "sensor_limit_warn": -3.0016227413275, "sensor_limit_low": -13.01029995664, @@ -33103,8 +33103,8 @@ "sensor_custom": "No", "entPhysicalIndex": "64", "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": null, + "sensor_prev": -7.144, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -33116,9 +33116,9 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "GigabitEthernet0/0/1/7 - power Rx 0/0/1/7", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": -15.376, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, + "sensor_current": -15.37602002101, "sensor_limit": 2.9994290002277, "sensor_limit_warn": 0, "sensor_limit_low": -26.98970004336, @@ -33127,8 +33127,8 @@ "sensor_custom": "No", "entPhysicalIndex": "69", "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": null, + "sensor_prev": -15.376, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -33140,9 +33140,9 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "GigabitEthernet0/7/1/3 - power Tx 0/7/1/3", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": -5.482, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, + "sensor_current": -5.4821356447571, "sensor_limit": -1.9997064075587, "sensor_limit_warn": -3.0016227413275, "sensor_limit_low": -10, @@ -33151,8 +33151,8 @@ "sensor_custom": "No", "entPhysicalIndex": "34", "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": null, + "sensor_prev": -5.482, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -33164,8 +33164,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "GigabitEthernet0/0/1/1 - power Rx 0/0/1/1", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": 0, "sensor_limit": -1.9997064075587, "sensor_limit_warn": -3.0016227413275, @@ -33176,7 +33176,7 @@ "entPhysicalIndex": "63", "entPhysicalIndex_measured": "ports", "sensor_prev": 0, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -33188,9 +33188,9 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "module mau 0/0/0/0 - power Tx 0/0/0/0", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": -3.565, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, + "sensor_current": -3.5654732351381, "sensor_limit": 1.9975517725347, "sensor_limit_warn": 0, "sensor_limit_low": -9.0308998699194, @@ -33199,8 +33199,8 @@ "sensor_custom": "No", "entPhysicalIndex": "12", "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": null, + "sensor_prev": -3.565, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -33212,8 +33212,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "module mau 0/7/1/18 - power Tx 0/7/1/18", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": 0, "sensor_limit": null, "sensor_limit_warn": null, @@ -33224,7 +33224,7 @@ "entPhysicalIndex": "49", "entPhysicalIndex_measured": "ports", "sensor_prev": 0, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -33236,8 +33236,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "module mau 0/0/1/18 - power Tx 0/0/1/18", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": 0, "sensor_limit": null, "sensor_limit_warn": null, @@ -33248,7 +33248,7 @@ "entPhysicalIndex": "80", "entPhysicalIndex_measured": "ports", "sensor_prev": 0, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -33260,9 +33260,9 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "module mau 0/7/0/0 - power Rx 0/7/0/0", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": -3.969, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, + "sensor_current": -3.9685562737982, "sensor_limit": 3.4986008219233, "sensor_limit_warn": 1.4983469671578, "sensor_limit_low": -17.447274948967, @@ -33271,8 +33271,8 @@ "sensor_custom": "No", "entPhysicalIndex": "13", "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": null, + "sensor_prev": -3.969, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -33284,9 +33284,9 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "GigabitEthernet0/7/1/1 - power Rx 0/7/1/1", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": -14.202, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, + "sensor_current": -14.202164033832, "sensor_limit": -1.9997064075587, "sensor_limit_warn": -3.0016227413275, "sensor_limit_low": -22.218487496164, @@ -33295,8 +33295,8 @@ "sensor_custom": "No", "entPhysicalIndex": "32", "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": null, + "sensor_prev": -14.202, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -33308,9 +33308,9 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "module mau 0/7/1/0 - power Tx 0/7/1/0", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": -7.212, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, + "sensor_current": -7.2124639904717, "sensor_limit": 0, "sensor_limit_warn": -3.0016227413275, "sensor_limit_low": -13.01029995664, @@ -33319,8 +33319,8 @@ "sensor_custom": "No", "entPhysicalIndex": "31", "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": null, + "sensor_prev": -7.212, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -33332,9 +33332,9 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "GigabitEthernet0/7/1/8 - power Tx 0/7/1/8", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": -6.198, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, + "sensor_current": -6.1978875828839, "sensor_limit": -1.9997064075587, "sensor_limit_warn": -3.0016227413275, "sensor_limit_low": -10, @@ -33343,8 +33343,8 @@ "sensor_custom": "No", "entPhysicalIndex": "39", "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": null, + "sensor_prev": -6.198, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -33356,9 +33356,9 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "GigabitEthernet0/0/1/9 - power Rx 0/0/1/9", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": -5.654, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, + "sensor_current": -5.654310959658, "sensor_limit": -1.9997064075587, "sensor_limit_warn": -3.0016227413275, "sensor_limit_low": -21.549019599857, @@ -33367,8 +33367,8 @@ "sensor_custom": "No", "entPhysicalIndex": "71", "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": null, + "sensor_prev": -5.654, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -33380,9 +33380,9 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "GigabitEthernet0/0/1/0 - power Tx 0/0/1/0", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": -6.055, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, + "sensor_current": -6.0554831917378, "sensor_limit": -1.9997064075587, "sensor_limit_warn": -3.0016227413275, "sensor_limit_low": -10, @@ -33391,8 +33391,8 @@ "sensor_custom": "No", "entPhysicalIndex": "62", "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": null, + "sensor_prev": -6.055, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -33404,8 +33404,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "GigabitEthernet0/0/1/5 - power Rx 0/0/1/5", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": 0, "sensor_limit": -1.9997064075587, "sensor_limit_warn": -3.0016227413275, @@ -33416,7 +33416,7 @@ "entPhysicalIndex": "67", "entPhysicalIndex_measured": "ports", "sensor_prev": 0, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -33428,9 +33428,9 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "module mau 0/7/1/5 - power Tx 0/7/1/5", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": -7.1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, + "sensor_current": -7.0996538863748, "sensor_limit": 0, "sensor_limit_warn": -3.0016227413275, "sensor_limit_low": -13.01029995664, @@ -33439,8 +33439,8 @@ "sensor_custom": "No", "entPhysicalIndex": "36", "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": null, + "sensor_prev": -7.1, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -33452,9 +33452,9 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "module mau 0/0/1/2 - power Rx 0/0/1/2", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": -8.041, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, + "sensor_current": -8.0410034759077, "sensor_limit": 0, "sensor_limit_warn": -3.0016227413275, "sensor_limit_low": -23.01029995664, @@ -33463,8 +33463,8 @@ "sensor_custom": "No", "entPhysicalIndex": "64", "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": null, + "sensor_prev": -8.041, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -33476,9 +33476,9 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "module mau 0/0/1/3 - power Rx 0/0/1/3", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": -13.665, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, + "sensor_current": -13.665315444204, "sensor_limit": 0, "sensor_limit_warn": -3.0016227413275, "sensor_limit_low": -23.01029995664, @@ -33487,8 +33487,8 @@ "sensor_custom": "No", "entPhysicalIndex": "65", "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": null, + "sensor_prev": -13.665, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -33500,9 +33500,9 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "GigabitEthernet0/0/1/19 - power Rx 0/0/1/19", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": -10.969, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, + "sensor_current": -10.969100130081, "sensor_limit": -1.9997064075587, "sensor_limit_warn": -3.0016227413275, "sensor_limit_low": -22.218487496164, @@ -33511,8 +33511,8 @@ "sensor_custom": "No", "entPhysicalIndex": "81", "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": null, + "sensor_prev": -10.969, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -33524,9 +33524,9 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "GigabitEthernet0/7/1/6 - power Rx 0/7/1/6", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": -9.318, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, + "sensor_current": -9.3181413825384, "sensor_limit": -1.9997064075587, "sensor_limit_warn": -3.0016227413275, "sensor_limit_low": -22.218487496164, @@ -33535,8 +33535,8 @@ "sensor_custom": "No", "entPhysicalIndex": "37", "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": null, + "sensor_prev": -9.318, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -33548,9 +33548,9 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "module mau 0/7/1/5 - power Rx 0/7/1/5", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": -11.739, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, + "sensor_current": -11.739251972992, "sensor_limit": 0, "sensor_limit_warn": -3.0016227413275, "sensor_limit_low": -23.01029995664, @@ -33559,8 +33559,8 @@ "sensor_custom": "No", "entPhysicalIndex": "36", "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": null, + "sensor_prev": -11.739, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -33572,8 +33572,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "GigabitEthernet0/0/1/1 - power Tx 0/0/1/1", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": 0, "sensor_limit": -1.9997064075587, "sensor_limit_warn": -3.0016227413275, @@ -33584,7 +33584,7 @@ "entPhysicalIndex": "63", "entPhysicalIndex_measured": "ports", "sensor_prev": 0, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -33596,8 +33596,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "module mau 0/7/1/18 - power Rx 0/7/1/18", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": 0, "sensor_limit": null, "sensor_limit_warn": null, @@ -33608,7 +33608,7 @@ "entPhysicalIndex": "49", "entPhysicalIndex_measured": "ports", "sensor_prev": 0, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -33620,8 +33620,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "module mau 0/0/1/18 - power Rx 0/0/1/18", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": 0, "sensor_limit": null, "sensor_limit_warn": null, @@ -33632,7 +33632,7 @@ "entPhysicalIndex": "80", "entPhysicalIndex_measured": "ports", "sensor_prev": 0, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -33644,8 +33644,8 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "module mau 0/7/1/19 - power Rx 0/7/1/19", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, "sensor_current": 0, "sensor_limit": null, "sensor_limit_warn": null, @@ -33656,7 +33656,7 @@ "entPhysicalIndex": "50", "entPhysicalIndex_measured": "ports", "sensor_prev": 0, - "user_func": null, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -33668,9 +33668,9 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "GigabitEthernet0/7/1/1 - power Tx 0/7/1/1", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": -5.884, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, + "sensor_current": -5.8838029403677, "sensor_limit": -1.9997064075587, "sensor_limit_warn": -3.0016227413275, "sensor_limit_low": -10, @@ -33679,8 +33679,8 @@ "sensor_custom": "No", "entPhysicalIndex": "32", "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": null, + "sensor_prev": -5.884, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -33692,9 +33692,9 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "GigabitEthernet0/7/1/2 - power Tx 0/7/1/2", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": -5.528, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, + "sensor_current": -5.5284196865778, "sensor_limit": -1.9997064075587, "sensor_limit_warn": -3.0016227413275, "sensor_limit_low": -10, @@ -33703,8 +33703,8 @@ "sensor_custom": "No", "entPhysicalIndex": "33", "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": null, + "sensor_prev": -5.528, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -33716,9 +33716,9 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "module mau 0/0/1/3 - power Tx 0/0/1/3", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": -7.19, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, + "sensor_current": -7.1896663275227, "sensor_limit": 0, "sensor_limit_warn": -3.0016227413275, "sensor_limit_low": -13.01029995664, @@ -33727,8 +33727,8 @@ "sensor_custom": "No", "entPhysicalIndex": "65", "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": null, + "sensor_prev": -7.19, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -33740,9 +33740,9 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "GigabitEthernet0/0/1/19 - power Tx 0/0/1/19", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": -5.834, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, + "sensor_current": -5.8335949266172, "sensor_limit": -1.9997064075587, "sensor_limit_warn": -3.0016227413275, "sensor_limit_low": -10, @@ -33751,8 +33751,8 @@ "sensor_custom": "No", "entPhysicalIndex": "81", "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": null, + "sensor_prev": -5.834, + "user_func": "mw_to_dbm", "state_name": null }, { @@ -33764,9 +33764,9 @@ "sensor_type": "cisco-entity-sensor", "sensor_descr": "GigabitEthernet0/7/1/6 - power Tx 0/7/1/6", "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": -5.969, + "sensor_divisor": 1000000, + "sensor_multiplier": 1000, + "sensor_current": -5.9687947882418, "sensor_limit": -1.9997064075587, "sensor_limit_warn": -3.0016227413275, "sensor_limit_low": -10, @@ -33775,8 +33775,8 @@ "sensor_custom": "No", "entPhysicalIndex": "37", "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": null, + "sensor_prev": -5.969, + "user_func": "mw_to_dbm", "state_name": null }, { diff --git a/tests/data/iosxr_asr9901.json b/tests/data/iosxr_asr9901.json new file mode 100644 index 0000000000..665cdc6e08 --- /dev/null +++ b/tests/data/iosxr_asr9901.json @@ -0,0 +1,21409 @@ +{ + "os": { + "discovery": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.9.1.2658", + "sysDescr": "Cisco IOS XR Software (ASR9K), Version 6.6.3 Copyright (c) 2013-2019 by Cisco Systems, Inc.", + "sysContact": "", + "version": "6.6.3", + "hardware": "ASR-9901", + "features": null, + "os": "iosxr", + "type": "network", + "serial": "FOC2211NMLZ", + "icon": "cisco.svg", + "location": "" + } + ] + }, + "poller": "matches discovery" + }, + "ports": { + "discovery": { + "ports": [ + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Null0", + "ifName": "Null0", + "portName": null, + "ifIndex": 2, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "Null0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "MgmtEth0/RSP0/CPU0/0", + "ifName": "MgmtEth0/RSP0/CPU0/0", + "portName": null, + "ifIndex": 3, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "MgmtEth0/RSP0/CPU0/0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "HundredGigE0/0/0/20", + "ifName": "HundredGigE0/0/0/20", + "portName": null, + "ifIndex": 9, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "LAB01-P01 Hu0/0/1/3", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/10", + "ifName": "TenGigE0/0/0/10", + "portName": null, + "ifIndex": 10, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigE0/0/0/10", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/11", + "ifName": "TenGigE0/0/0/11", + "portName": null, + "ifIndex": 11, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigE0/0/0/11", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/8", + "ifName": "TenGigE0/0/0/8", + "portName": null, + "ifIndex": 12, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "LAB01-PE01 Te0/0/2/2", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/9", + "ifName": "TenGigE0/0/0/9", + "portName": null, + "ifIndex": 13, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigE0/0/0/9", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/12", + "ifName": "TenGigE0/0/0/12", + "portName": null, + "ifIndex": 14, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigE0/0/0/12", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/13", + "ifName": "TenGigE0/0/0/13", + "portName": null, + "ifIndex": 15, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigE0/0/0/13", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/14", + "ifName": "TenGigE0/0/0/14", + "portName": null, + "ifIndex": 16, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigE0/0/0/14", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/15", + "ifName": "TenGigE0/0/0/15", + "portName": null, + "ifIndex": 17, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigE0/0/0/15", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/16", + "ifName": "TenGigE0/0/0/16", + "portName": null, + "ifIndex": 18, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigE0/0/0/16", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/17", + "ifName": "TenGigE0/0/0/17", + "portName": null, + "ifIndex": 19, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigE0/0/0/17", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/18", + "ifName": "TenGigE0/0/0/18", + "portName": null, + "ifIndex": 20, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigE0/0/0/18", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/19", + "ifName": "TenGigE0/0/0/19", + "portName": null, + "ifIndex": 21, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigE0/0/0/19", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "HundredGigE0/0/0/21", + "ifName": "HundredGigE0/0/0/21", + "portName": null, + "ifIndex": 22, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "HundredGigE0/0/0/21", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/0/0", + "ifName": "GigabitEthernet0/0/0/0", + "portName": null, + "ifIndex": 23, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/0/0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/0/1", + "ifName": "GigabitEthernet0/0/0/1", + "portName": null, + "ifIndex": 24, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/0/1", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/0/2", + "ifName": "GigabitEthernet0/0/0/2", + "portName": null, + "ifIndex": 25, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "C1111-CPE02 Gi0/0/0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/0/3", + "ifName": "GigabitEthernet0/0/0/3", + "portName": null, + "ifIndex": 26, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/0/3", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/0/4", + "ifName": "GigabitEthernet0/0/0/4", + "portName": null, + "ifIndex": 27, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/0/4", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/0/5", + "ifName": "GigabitEthernet0/0/0/5", + "portName": null, + "ifIndex": 28, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/0/5", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/0/6", + "ifName": "GigabitEthernet0/0/0/6", + "portName": null, + "ifIndex": 29, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/0/6", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/0/7", + "ifName": "GigabitEthernet0/0/0/7", + "portName": null, + "ifIndex": 30, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/0/7", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/22", + "ifName": "TenGigE0/0/0/22", + "portName": null, + "ifIndex": 31, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "LAB01-PE05 Te0/0/0/23", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/23", + "ifName": "TenGigE0/0/0/23", + "portName": null, + "ifIndex": 32, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigE0/0/0/23", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/24", + "ifName": "TenGigE0/0/0/24", + "portName": null, + "ifIndex": 33, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigE0/0/0/24", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/25", + "ifName": "TenGigE0/0/0/25", + "portName": null, + "ifIndex": 34, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigE0/0/0/25", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/26", + "ifName": "TenGigE0/0/0/26", + "portName": null, + "ifIndex": 35, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigE0/0/0/26", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/27", + "ifName": "TenGigE0/0/0/27", + "portName": null, + "ifIndex": 36, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigE0/0/0/27", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/28", + "ifName": "TenGigE0/0/0/28", + "portName": null, + "ifIndex": 37, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigE0/0/0/28", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/29", + "ifName": "TenGigE0/0/0/29", + "portName": null, + "ifIndex": 38, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigE0/0/0/29", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/30", + "ifName": "TenGigE0/0/0/30", + "portName": null, + "ifIndex": 39, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigE0/0/0/30", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/31", + "ifName": "TenGigE0/0/0/31", + "portName": null, + "ifIndex": 40, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigE0/0/0/31", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/32", + "ifName": "TenGigE0/0/0/32", + "portName": null, + "ifIndex": 41, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigE0/0/0/32", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/33", + "ifName": "TenGigE0/0/0/33", + "portName": null, + "ifIndex": 42, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigE0/0/0/33", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/0/34", + "ifName": "GigabitEthernet0/0/0/34", + "portName": null, + "ifIndex": 43, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/0/34", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/0/35", + "ifName": "GigabitEthernet0/0/0/35", + "portName": null, + "ifIndex": 44, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/0/35", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/0/36", + "ifName": "GigabitEthernet0/0/0/36", + "portName": null, + "ifIndex": 45, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/0/36", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/0/37", + "ifName": "GigabitEthernet0/0/0/37", + "portName": null, + "ifIndex": 46, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/0/37", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/0/38", + "ifName": "GigabitEthernet0/0/0/38", + "portName": null, + "ifIndex": 47, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/0/38", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/0/39", + "ifName": "GigabitEthernet0/0/0/39", + "portName": null, + "ifIndex": 48, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/0/39", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/0/40", + "ifName": "GigabitEthernet0/0/0/40", + "portName": null, + "ifIndex": 49, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/0/40", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/0/41", + "ifName": "GigabitEthernet0/0/0/41", + "portName": null, + "ifIndex": 50, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/0/41", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/0/2.10", + "ifName": "GigabitEthernet0/0/0/2.10", + "portName": null, + "ifIndex": 52, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "C1111-CPE02 Gi0/0/0.10", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Loopback0", + "ifName": "Loopback0", + "portName": null, + "ifIndex": 54, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "softwareLoopback", + "ifAlias": "Loopback0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Loopback10001", + "ifName": "Loopback10001", + "portName": null, + "ifIndex": 55, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "softwareLoopback", + "ifAlias": "Loopback10001", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "PW-Ether2", + "ifName": "PW-Ether2", + "portName": null, + "ifIndex": 56, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ifPwType", + "ifAlias": "C892FSP-CPE02 Gi9.10", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Bundle-Ether200", + "ifName": "Bundle-Ether200", + "portName": null, + "ifIndex": 57, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ieee8023adLag", + "ifAlias": "Bundle-Ether200", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Bundle-Ether200.2000", + "ifName": "Bundle-Ether200.2000", + "portName": null, + "ifIndex": 58, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "Bundle-Ether200.2000", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + } + ] + }, + "poller": { + "ports": [ + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Null0", + "ifName": "Null0", + "portName": null, + "ifIndex": 2, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "other", + "ifAlias": "Null0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "MgmtEth0/RSP0/CPU0/0", + "ifName": "MgmtEth0/RSP0/CPU0/0", + "portName": null, + "ifIndex": 3, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "MgmtEth0/RSP0/CPU0/0", + "ifPhysAddress": "b02680ac7ed0", + "ifHardType": null, + "ifLastChange": 1190, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 1847040, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 1801999, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 189098470, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 533427990, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 78036, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "HundredGigE0/0/0/20", + "ifName": "HundredGigE0/0/0/20", + "portName": null, + "ifIndex": 9, + "ifSpeed": 100000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 100000, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "LAB01-P01 Hu0/0/1/3", + "ifPhysAddress": "b02680ace69c", + "ifHardType": null, + "ifLastChange": 258933309, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 26509534, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 28377369, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 4287915887, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 4508761686, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 4, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 6, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 5, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 1784981, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 2068111, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/10", + "ifName": "TenGigE0/0/0/10", + "portName": null, + "ifIndex": 10, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigE0/0/0/10", + "ifPhysAddress": "b02680ace69d", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/11", + "ifName": "TenGigE0/0/0/11", + "portName": null, + "ifIndex": 11, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigE0/0/0/11", + "ifPhysAddress": "b02680ace69e", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/8", + "ifName": "TenGigE0/0/0/8", + "portName": null, + "ifIndex": 12, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "LAB01-PE01 Te0/0/2/2", + "ifPhysAddress": "b02680ace69f", + "ifHardType": null, + "ifLastChange": 24851, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 38818513, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 38821412, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 2722182088, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 2722546090, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 5, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 2, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 2, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 1, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 2604687, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 2604985, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/9", + "ifName": "TenGigE0/0/0/9", + "portName": null, + "ifIndex": 13, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigE0/0/0/9", + "ifPhysAddress": "b02680ace6a0", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/12", + "ifName": "TenGigE0/0/0/12", + "portName": null, + "ifIndex": 14, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigE0/0/0/12", + "ifPhysAddress": "b02680ace6a9", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/13", + "ifName": "TenGigE0/0/0/13", + "portName": null, + "ifIndex": 15, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigE0/0/0/13", + "ifPhysAddress": "b02680ace6aa", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/14", + "ifName": "TenGigE0/0/0/14", + "portName": null, + "ifIndex": 16, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigE0/0/0/14", + "ifPhysAddress": "b02680ace6ab", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/15", + "ifName": "TenGigE0/0/0/15", + "portName": null, + "ifIndex": 17, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigE0/0/0/15", + "ifPhysAddress": "b02680ace6ac", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/16", + "ifName": "TenGigE0/0/0/16", + "portName": null, + "ifIndex": 18, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigE0/0/0/16", + "ifPhysAddress": "b02680ace6ad", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/17", + "ifName": "TenGigE0/0/0/17", + "portName": null, + "ifIndex": 19, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigE0/0/0/17", + "ifPhysAddress": "b02680ace6ae", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/18", + "ifName": "TenGigE0/0/0/18", + "portName": null, + "ifIndex": 20, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigE0/0/0/18", + "ifPhysAddress": "b02680ace6af", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/19", + "ifName": "TenGigE0/0/0/19", + "portName": null, + "ifIndex": 21, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigE0/0/0/19", + "ifPhysAddress": "b02680ace6b0", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "HundredGigE0/0/0/21", + "ifName": "HundredGigE0/0/0/21", + "portName": null, + "ifIndex": 22, + "ifSpeed": 100000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 100000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "HundredGigE0/0/0/21", + "ifPhysAddress": "b02680ace6b1", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 17, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/0/0", + "ifName": "GigabitEthernet0/0/0/0", + "portName": null, + "ifIndex": 23, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/0/0", + "ifPhysAddress": "b02680ace6a1", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/0/1", + "ifName": "GigabitEthernet0/0/0/1", + "portName": null, + "ifIndex": 24, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/0/1", + "ifPhysAddress": "b02680ace6a2", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/0/2", + "ifName": "GigabitEthernet0/0/0/2", + "portName": null, + "ifIndex": 25, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "C1111-CPE02 Gi0/0/0", + "ifPhysAddress": "b02680ace6a3", + "ifHardType": null, + "ifLastChange": 25971, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 1816822, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 1753698, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 202527835, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 247115063, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 2, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 1, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 274354, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 449400, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/0/3", + "ifName": "GigabitEthernet0/0/0/3", + "portName": null, + "ifIndex": 26, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/0/3", + "ifPhysAddress": "b02680ace6a4", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/0/4", + "ifName": "GigabitEthernet0/0/0/4", + "portName": null, + "ifIndex": 27, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/0/4", + "ifPhysAddress": "b02680ace6a5", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/0/5", + "ifName": "GigabitEthernet0/0/0/5", + "portName": null, + "ifIndex": 28, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/0/5", + "ifPhysAddress": "b02680ace6a6", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/0/6", + "ifName": "GigabitEthernet0/0/0/6", + "portName": null, + "ifIndex": 29, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/0/6", + "ifPhysAddress": "b02680ace6a7", + "ifHardType": null, + "ifLastChange": 48886458, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/0/7", + "ifName": "GigabitEthernet0/0/0/7", + "portName": null, + "ifIndex": 30, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/0/7", + "ifPhysAddress": "b02680ace6a8", + "ifHardType": null, + "ifLastChange": 48886555, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/22", + "ifName": "TenGigE0/0/0/22", + "portName": null, + "ifIndex": 31, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "LAB01-PE05 Te0/0/0/23", + "ifPhysAddress": "b02680ace6b4", + "ifHardType": null, + "ifLastChange": 257369289, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 17983908, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 19645946, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 1423799512, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 1558897290, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 4, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 4, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 5, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 1784983, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 2068236, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/23", + "ifName": "TenGigE0/0/0/23", + "portName": null, + "ifIndex": 32, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigE0/0/0/23", + "ifPhysAddress": "b02680ace6b5", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/24", + "ifName": "TenGigE0/0/0/24", + "portName": null, + "ifIndex": 33, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigE0/0/0/24", + "ifPhysAddress": "b02680ace6b2", + "ifHardType": null, + "ifLastChange": 49652207, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/25", + "ifName": "TenGigE0/0/0/25", + "portName": null, + "ifIndex": 34, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigE0/0/0/25", + "ifPhysAddress": "b02680ace6b3", + "ifHardType": null, + "ifLastChange": 49652208, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/26", + "ifName": "TenGigE0/0/0/26", + "portName": null, + "ifIndex": 35, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigE0/0/0/26", + "ifPhysAddress": "b02680ace6be", + "ifHardType": null, + "ifLastChange": 49653618, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/27", + "ifName": "TenGigE0/0/0/27", + "portName": null, + "ifIndex": 36, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigE0/0/0/27", + "ifPhysAddress": "b02680ace6bf", + "ifHardType": null, + "ifLastChange": 49653619, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/28", + "ifName": "TenGigE0/0/0/28", + "portName": null, + "ifIndex": 37, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigE0/0/0/28", + "ifPhysAddress": "b02680ace6c0", + "ifHardType": null, + "ifLastChange": 49838253, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 12, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 96, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/29", + "ifName": "TenGigE0/0/0/29", + "portName": null, + "ifIndex": 38, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigE0/0/0/29", + "ifPhysAddress": "b02680ace6c1", + "ifHardType": null, + "ifLastChange": 49838254, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/30", + "ifName": "TenGigE0/0/0/30", + "portName": null, + "ifIndex": 39, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigE0/0/0/30", + "ifPhysAddress": "b02680ace6c2", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/31", + "ifName": "TenGigE0/0/0/31", + "portName": null, + "ifIndex": 40, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigE0/0/0/31", + "ifPhysAddress": "b02680ace6c3", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/32", + "ifName": "TenGigE0/0/0/32", + "portName": null, + "ifIndex": 41, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigE0/0/0/32", + "ifPhysAddress": "b02680ace6c4", + "ifHardType": null, + "ifLastChange": 49485192, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 167680, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 1310, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigE0/0/0/33", + "ifName": "TenGigE0/0/0/33", + "portName": null, + "ifIndex": 42, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9220, + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigE0/0/0/33", + "ifPhysAddress": "b02680ace6c5", + "ifHardType": null, + "ifLastChange": 49485193, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 167680, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 1310, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/0/34", + "ifName": "GigabitEthernet0/0/0/34", + "portName": null, + "ifIndex": 43, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/0/34", + "ifPhysAddress": "b02680ace6b6", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/0/35", + "ifName": "GigabitEthernet0/0/0/35", + "portName": null, + "ifIndex": 44, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/0/35", + "ifPhysAddress": "b02680ace6b7", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/0/36", + "ifName": "GigabitEthernet0/0/0/36", + "portName": null, + "ifIndex": 45, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/0/36", + "ifPhysAddress": "b02680ace6b8", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/0/37", + "ifName": "GigabitEthernet0/0/0/37", + "portName": null, + "ifIndex": 46, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/0/37", + "ifPhysAddress": "b02680ace6b9", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/0/38", + "ifName": "GigabitEthernet0/0/0/38", + "portName": null, + "ifIndex": 47, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/0/38", + "ifPhysAddress": "b02680ace6ba", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/0/39", + "ifName": "GigabitEthernet0/0/0/39", + "portName": null, + "ifIndex": 48, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/0/39", + "ifPhysAddress": "b02680ace6bb", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/0/40", + "ifName": "GigabitEthernet0/0/0/40", + "portName": null, + "ifIndex": 49, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/0/40", + "ifPhysAddress": "b02680ace6bc", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/0/41", + "ifName": "GigabitEthernet0/0/0/41", + "portName": null, + "ifIndex": 50, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9216, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/0/41", + "ifPhysAddress": "b02680ace6bd", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/0/2.10", + "ifName": "GigabitEthernet0/0/0/2.10", + "portName": null, + "ifIndex": 52, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 9220, + "ifType": "l2vlan", + "ifAlias": "C1111-CPE02 Gi0/0/0.10", + "ifPhysAddress": "b02680ace6a3", + "ifHardType": null, + "ifLastChange": 25974, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 1816817, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 202527378, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 23254980, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 2, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 1, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 274354, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 449400, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Loopback0", + "ifName": "Loopback0", + "portName": null, + "ifIndex": 54, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "softwareLoopback", + "ifAlias": "Loopback0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 969, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Loopback10001", + "ifName": "Loopback10001", + "portName": null, + "ifIndex": 55, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "softwareLoopback", + "ifAlias": "Loopback10001", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 969, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "PW-Ether2", + "ifName": "PW-Ether2", + "portName": null, + "ifIndex": 56, + "ifSpeed": 10000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 9216, + "ifType": "ifPwType", + "ifAlias": "C892FSP-CPE02 Gi9.10", + "ifPhysAddress": "b02680acb621", + "ifHardType": null, + "ifLastChange": 437125924, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 1589985, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 1480019, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 175745940, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 200286730, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 5, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 272848, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 449331, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Bundle-Ether200", + "ifName": "Bundle-Ether200", + "portName": null, + "ifIndex": 57, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 9216, + "ifType": "ieee8023adLag", + "ifAlias": "Bundle-Ether200", + "ifPhysAddress": "b02680acb625", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 167680, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 1310, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Bundle-Ether200.2000", + "ifName": "Bundle-Ether200.2000", + "portName": null, + "ifIndex": 58, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 9220, + "ifType": "l2vlan", + "ifAlias": "Bundle-Ether200.2000", + "ifPhysAddress": "b02680acb625", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + } + ] + } + }, + "processors": { + "discovery": { + "processors": [ + { + "entPhysicalIndex": 97, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.9.9.109.1.1.1.1.8.33", + "processor_index": "33", + "processor_type": "cpm", + "processor_usage": 5, + "processor_descr": "0/RSP0-Virtual processor for RP XR", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 96, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.9.9.109.1.1.1.1.8.65", + "processor_index": "65", + "processor_type": "cpm", + "processor_usage": 1, + "processor_descr": "0/RSP0-Virtual processor for admin", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 8289, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.9.9.109.1.1.1.1.8.33313", + "processor_index": "33313", + "processor_type": "cpm", + "processor_usage": 2, + "processor_descr": "0/0-Virtual processor for LC XR", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 8288, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.9.9.109.1.1.1.1.8.33345", + "processor_index": "33345", + "processor_type": "cpm", + "processor_usage": 1, + "processor_descr": "0/0-Virtual processor for admin", + "processor_precision": 1, + "processor_perc_warn": 75 + } + ] + }, + "poller": "matches discovery" + }, + "vrf": { + "discovery": { + "vrfs": [ + { + "vrf_oid": "4.109.103.109.116", + "vrf_name": "mgmt", + "bgpLocalAs": null, + "mplsVpnVrfRouteDistinguisher": "", + "mplsVpnVrfDescription": "", + "ifIndices": "3" + }, + { + "vrf_oid": "9.84.86.80.78.49.48.48.48.49", + "vrf_name": "TVPN10001", + "bgpLocalAs": null, + "mplsVpnVrfRouteDistinguisher": "10.246.0.3:10001", + "mplsVpnVrfDescription": "Test VRF", + "ifIndices": "52,55,56" + } + ] + } + }, + "sensors": { + "discovery": { + "sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10593", + "sensor_index": "10593", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-Hot Swap CS", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 29.345, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10593", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2375930", + "sensor_index": "2375930", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/PT0-PM0 - 0/PT0-PM0-Input Current", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.125, + "sensor_limit": 23.75, + "sensor_limit_warn": 22.5, + "sensor_limit_low": 1.25, + "sensor_limit_low_warn": 2.5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2375930", + "entPhysicalIndex_measured": "2375681", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2375931", + "sensor_index": "2375931", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/PT0-PM0 - 0/PT0-PM0-Output Current", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 17.843, + "sensor_limit": 285, + "sensor_limit_warn": 270, + "sensor_limit_low": 15, + "sensor_limit_low_warn": 30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2375931", + "entPhysicalIndex_measured": "2375681", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2380026", + "sensor_index": "2380026", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/PT0-PM1 - 0/PT0-PM1-Input Current", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.095, + "sensor_limit": 23.75, + "sensor_limit_warn": 22.5, + "sensor_limit_low": 1.25, + "sensor_limit_low_warn": 2.5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2380026", + "entPhysicalIndex_measured": "2379777", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2380027", + "sensor_index": "2380027", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/PT0-PM1 - 0/PT0-PM1-Output Current", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 17.531, + "sensor_limit": 285, + "sensor_limit_warn": 270, + "sensor_limit_low": 15, + "sensor_limit_low_warn": 30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2380027", + "entPhysicalIndex_measured": "2379777", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2401", + "sensor_index": "2401", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-Hot Swap CS", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 5.285, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2401", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2990330", + "sensor_index": "2990330", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-2 - 0/0-PORT-2-Tx Lane 0 Current", + "group": null, + "sensor_divisor": 1000000, + "sensor_multiplier": 1, + "sensor_current": 0.025012, + "sensor_limit": 0.075, + "sensor_limit_warn": 0, + "sensor_limit_low": 0.003, + "sensor_limit_low_warn": 0, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2990330", + "entPhysicalIndex_measured": "2990081", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2994426", + "sensor_index": "2994426", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-3 - 0/0-PORT-3-Tx Lane 0 Current", + "group": null, + "sensor_divisor": 1000000, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": 0, + "sensor_limit_low": null, + "sensor_limit_low_warn": 0, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2994426", + "entPhysicalIndex_measured": "2994177", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3014906", + "sensor_index": "3014906", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-8 - 0/0-PORT-8-Tx Lane 0 Current", + "group": null, + "sensor_divisor": 1000000, + "sensor_multiplier": 1, + "sensor_current": 0.029282, + "sensor_limit": 0.085002, + "sensor_limit_warn": 0, + "sensor_limit_low": 0.015, + "sensor_limit_low_warn": 0, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "3014906", + "entPhysicalIndex_measured": "3014657", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3072250", + "sensor_index": "3072250", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-22 - 0/0-PORT-22-Tx Lane 0 Current", + "group": null, + "sensor_divisor": 1000000, + "sensor_multiplier": 1, + "sensor_current": 0.034, + "sensor_limit": 0.1, + "sensor_limit_warn": 0, + "sensor_limit_low": 0.0001, + "sensor_limit_low_warn": 0, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "3072250", + "entPhysicalIndex_measured": "3072001", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2990350", + "sensor_index": "2990350", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-2 - 0/0-PORT-2-Tx Lane 0 Power", + "group": null, + "sensor_divisor": 100000000, + "sensor_multiplier": 1000, + "sensor_current": -4.787, + "sensor_limit": 0.99991233544684, + "sensor_limit_warn": null, + "sensor_limit_low": -13.496924768681, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2990350", + "entPhysicalIndex_measured": "2990081", + "sensor_prev": null, + "user_func": "mw_to_dbm", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2990362", + "sensor_index": "2990362", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-2 - 0/0-PORT-2-Rx Lane 0 Power", + "group": null, + "sensor_divisor": 100000000, + "sensor_multiplier": 1000, + "sensor_current": -3.342, + "sensor_limit": 0.99991233544684, + "sensor_limit_warn": null, + "sensor_limit_low": -23.01029995664, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2990362", + "entPhysicalIndex_measured": "2990081", + "sensor_prev": null, + "user_func": "mw_to_dbm", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2994446", + "sensor_index": "2994446", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-3 - 0/0-PORT-3-Tx Lane 0 Power", + "group": null, + "sensor_divisor": 100000000, + "sensor_multiplier": 1000, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2994446", + "entPhysicalIndex_measured": "2994177", + "sensor_prev": null, + "user_func": "mw_to_dbm", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2994458", + "sensor_index": "2994458", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-3 - 0/0-PORT-3-Rx Lane 0 Power", + "group": null, + "sensor_divisor": 100000000, + "sensor_multiplier": 1000, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2994458", + "entPhysicalIndex_measured": "2994177", + "sensor_prev": null, + "user_func": "mw_to_dbm", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3014926", + "sensor_index": "3014926", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-8 - 0/0-PORT-8-Tx Lane 0 Power", + "group": null, + "sensor_divisor": 100000000, + "sensor_multiplier": 1000, + "sensor_current": 2.52, + "sensor_limit": 6.0021030640933, + "sensor_limit_warn": null, + "sensor_limit_low": -2.998156703778, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "3014926", + "entPhysicalIndex_measured": "3014657", + "sensor_prev": null, + "user_func": "mw_to_dbm", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3014938", + "sensor_index": "3014938", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-8 - 0/0-PORT-8-Rx Lane 0 Power", + "group": null, + "sensor_divisor": 100000000, + "sensor_multiplier": 1000, + "sensor_current": -2.113, + "sensor_limit": 3.9963911496427, + "sensor_limit_warn": null, + "sensor_limit_low": -20, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "3014938", + "entPhysicalIndex_measured": "3014657", + "sensor_prev": null, + "user_func": "mw_to_dbm", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3072270", + "sensor_index": "3072270", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-22 - 0/0-PORT-22-Tx Lane 0 Power", + "group": null, + "sensor_divisor": 100000000, + "sensor_multiplier": 1000, + "sensor_current": -2.264, + "sensor_limit": 0.99991233544684, + "sensor_limit_warn": null, + "sensor_limit_low": -7.0005709997723, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "3072270", + "entPhysicalIndex_measured": "3072001", + "sensor_prev": null, + "user_func": "mw_to_dbm", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3072282", + "sensor_index": "3072282", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-22 - 0/0-PORT-22-Rx Lane 0 Power", + "group": null, + "sensor_divisor": 100000000, + "sensor_multiplier": 1000, + "sensor_current": -0.867, + "sensor_limit": 0.99991233544684, + "sensor_limit_warn": null, + "sensor_limit_low": -16.98970004336, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "3072282", + "entPhysicalIndex_measured": "3072001", + "sensor_prev": null, + "user_func": "mw_to_dbm", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2376630", + "sensor_index": "2376630", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/PT0-PM0-fan0 - 0/PT0-PM0-Fan 0 Speed", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 10432, + "sensor_limit": 2147483.647, + "sensor_limit_warn": 19.8, + "sensor_limit_low": -0.001, + "sensor_limit_low_warn": 2.2, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2376630", + "entPhysicalIndex_measured": "2376530", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2376631", + "sensor_index": "2376631", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/PT0-PM0-fan1 - 0/PT0-PM0-Fan 1 Speed", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 10016, + "sensor_limit": 2147483.647, + "sensor_limit_warn": 19.8, + "sensor_limit_low": -0.001, + "sensor_limit_low_warn": 2.2, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2376631", + "entPhysicalIndex_measured": "2376531", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2380726", + "sensor_index": "2380726", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/PT0-PM1-fan0 - 0/PT0-PM1-Fan 0 Speed", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 11136, + "sensor_limit": 2147483.647, + "sensor_limit_warn": 19.8, + "sensor_limit_low": -0.001, + "sensor_limit_low_warn": 2.2, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2380726", + "entPhysicalIndex_measured": "2380626", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2380727", + "sensor_index": "2380727", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/PT0-PM1-fan1 - 0/PT0-PM1-Fan 1 Speed", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 9984, + "sensor_limit": 2147483.647, + "sensor_limit_warn": 19.8, + "sensor_limit_low": -0.001, + "sensor_limit_low_warn": 2.2, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2380727", + "entPhysicalIndex_measured": "2380627", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.41910", + "sensor_index": "41910", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/FT0-Fan0 - 0/FT0-Fan Speed 0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6990, + "sensor_limit": 12582, + "sensor_limit_warn": null, + "sensor_limit_low": 5592, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "41910", + "entPhysicalIndex_measured": "41810", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.46006", + "sensor_index": "46006", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/FT1-Fan0 - 0/FT1-Fan Speed 0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6990, + "sensor_limit": 12582, + "sensor_limit_warn": null, + "sensor_limit_low": 5592, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "46006", + "entPhysicalIndex_measured": "45906", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.50102", + "sensor_index": "50102", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/FT2-Fan0 - 0/FT2-Fan Speed 0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 7050, + "sensor_limit": 12690, + "sensor_limit_warn": null, + "sensor_limit_low": 5640, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "50102", + "entPhysicalIndex_measured": "50002", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2375950", + "sensor_index": "2375950", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/PT0-PM0 - 0/PT0-PM0-Input Power", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 250.25, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2375950", + "entPhysicalIndex_measured": "2375681", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2375951", + "sensor_index": "2375951", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/PT0-PM0 - 0/PT0-PM0-Output Power", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 216, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2375951", + "entPhysicalIndex_measured": "2375681", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2380046", + "sensor_index": "2380046", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/PT0-PM1 - 0/PT0-PM1-Input Power", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 244.75, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2380046", + "entPhysicalIndex_measured": "2379777", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2380047", + "sensor_index": "2380047", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/PT0-PM1 - 0/PT0-PM1-Output Power", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 211.25, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2380047", + "entPhysicalIndex_measured": "2379777", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2990350", + "sensor_index": "2990350", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-2 - 0/0-PORT-2-Tx Lane 0 Power", + "group": null, + "sensor_divisor": 100000000, + "sensor_multiplier": 1, + "sensor_current": 0.0003321, + "sensor_limit": 0.0012589, + "sensor_limit_warn": 0, + "sensor_limit_low": 4.47e-5, + "sensor_limit_low_warn": 0, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2990350", + "entPhysicalIndex_measured": "2990081", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2990362", + "sensor_index": "2990362", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-2 - 0/0-PORT-2-Rx Lane 0 Power", + "group": null, + "sensor_divisor": 100000000, + "sensor_multiplier": 1, + "sensor_current": 0.0004632, + "sensor_limit": 0.0012589, + "sensor_limit_warn": 0, + "sensor_limit_low": 5.0e-6, + "sensor_limit_low_warn": 0, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2990362", + "entPhysicalIndex_measured": "2990081", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2994446", + "sensor_index": "2994446", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-3 - 0/0-PORT-3-Tx Lane 0 Power", + "group": null, + "sensor_divisor": 100000000, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": 0, + "sensor_limit_low": null, + "sensor_limit_low_warn": 0, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2994446", + "entPhysicalIndex_measured": "2994177", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2994458", + "sensor_index": "2994458", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-3 - 0/0-PORT-3-Rx Lane 0 Power", + "group": null, + "sensor_divisor": 100000000, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": 0, + "sensor_limit_low": null, + "sensor_limit_low_warn": 0, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2994458", + "entPhysicalIndex_measured": "2994177", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3014926", + "sensor_index": "3014926", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-8 - 0/0-PORT-8-Tx Lane 0 Power", + "group": null, + "sensor_divisor": 100000000, + "sensor_multiplier": 1, + "sensor_current": 0.0017864, + "sensor_limit": 0.003983, + "sensor_limit_warn": 0, + "sensor_limit_low": 0.0005014, + "sensor_limit_low_warn": 0, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "3014926", + "entPhysicalIndex_measured": "3014657", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3014938", + "sensor_index": "3014938", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-8 - 0/0-PORT-8-Rx Lane 0 Power", + "group": null, + "sensor_divisor": 100000000, + "sensor_multiplier": 1, + "sensor_current": 0.0006148, + "sensor_limit": 0.0025098, + "sensor_limit_warn": 0, + "sensor_limit_low": 1.0e-5, + "sensor_limit_low_warn": 0, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "3014938", + "entPhysicalIndex_measured": "3014657", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3072270", + "sensor_index": "3072270", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-22 - 0/0-PORT-22-Tx Lane 0 Power", + "group": null, + "sensor_divisor": 100000000, + "sensor_multiplier": 1, + "sensor_current": 0.0005937, + "sensor_limit": 0.0012589, + "sensor_limit_warn": 0, + "sensor_limit_low": 0.0001995, + "sensor_limit_low_warn": 0, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "3072270", + "entPhysicalIndex_measured": "3072001", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3072282", + "sensor_index": "3072282", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-22 - 0/0-PORT-22-Rx Lane 0 Power", + "group": null, + "sensor_divisor": 100000000, + "sensor_multiplier": 1, + "sensor_current": 0.000819, + "sensor_limit": 0.0012589, + "sensor_limit_warn": 0, + "sensor_limit_low": 2.0e-5, + "sensor_limit_low_warn": 0, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "3072282", + "entPhysicalIndex_measured": "3072001", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.1", + "sensor_index": "1", + "sensor_type": "cefcFRUPowerOperStatus", + "sensor_descr": "0/RSP0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "cefcFRUPowerOperStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.118785", + "sensor_index": "118785", + "sensor_type": "cefcFRUPowerOperStatus", + "sensor_descr": "0/PT0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "118785", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "cefcFRUPowerOperStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.2375681", + "sensor_index": "2375681", + "sensor_type": "cefcFRUPowerOperStatus", + "sensor_descr": "0/PT0-PM0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2375681", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "cefcFRUPowerOperStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.2379777", + "sensor_index": "2379777", + "sensor_type": "cefcFRUPowerOperStatus", + "sensor_descr": "0/PT0-PM1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2379777", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "cefcFRUPowerOperStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.2990081", + "sensor_index": "2990081", + "sensor_type": "cefcFRUPowerOperStatus", + "sensor_descr": "0/0-PORT-2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2990081", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "cefcFRUPowerOperStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.2994177", + "sensor_index": "2994177", + "sensor_type": "cefcFRUPowerOperStatus", + "sensor_descr": "0/0-PORT-3", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2994177", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "cefcFRUPowerOperStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.3014657", + "sensor_index": "3014657", + "sensor_type": "cefcFRUPowerOperStatus", + "sensor_descr": "0/0-PORT-8", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "3014657", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "cefcFRUPowerOperStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.3072001", + "sensor_index": "3072001", + "sensor_type": "cefcFRUPowerOperStatus", + "sensor_descr": "0/0-PORT-22", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "3072001", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "cefcFRUPowerOperStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.40961", + "sensor_index": "40961", + "sensor_type": "cefcFRUPowerOperStatus", + "sensor_descr": "0/FT0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "40961", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "cefcFRUPowerOperStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.45057", + "sensor_index": "45057", + "sensor_type": "cefcFRUPowerOperStatus", + "sensor_descr": "0/FT1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "45057", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "cefcFRUPowerOperStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.49153", + "sensor_index": "49153", + "sensor_type": "cefcFRUPowerOperStatus", + "sensor_descr": "0/FT2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "49153", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "cefcFRUPowerOperStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.8193", + "sensor_index": "8193", + "sensor_type": "cefcFRUPowerOperStatus", + "sensor_descr": "0/0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "8193", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "cefcFRUPowerOperStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.176.1.1.4.0", + "sensor_index": "0", + "sensor_type": "cRFStatusPeerUnitState", + "sensor_descr": "VSS Peer State", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "0", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "cRFStatusPeerUnitState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.176.1.1.2.0", + "sensor_index": "0", + "sensor_type": "cRFStatusUnitState", + "sensor_descr": "VSS Device State", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "0", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "cRFStatusUnitState" + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.178", + "sensor_index": "178", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-DIE_DIMM0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 22, + "sensor_limit": 85, + "sensor_limit_warn": 80, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "178", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.179", + "sensor_index": "179", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-DIE_DIMM1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 22, + "sensor_limit": 85, + "sensor_limit_warn": 80, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "179", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.182", + "sensor_index": "182", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-Hotspot", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 27, + "sensor_limit": 85, + "sensor_limit_warn": 75, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "182", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2375970", + "sensor_index": "2375970", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/PT0-PM0 - 0/PT0-PM0-Inlet Temperature", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 22, + "sensor_limit": 85, + "sensor_limit_warn": 75, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2375970", + "entPhysicalIndex_measured": "2375681", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2375971", + "sensor_index": "2375971", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/PT0-PM0 - 0/PT0-PM0-Outlet Temperature", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 30.25, + "sensor_limit": 125, + "sensor_limit_warn": 115, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2375971", + "entPhysicalIndex_measured": "2375681", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2375972", + "sensor_index": "2375972", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/PT0-PM0 - 0/PT0-PM0-Heat Sink Temperature", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 30.75, + "sensor_limit": 125, + "sensor_limit_warn": 115, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2375972", + "entPhysicalIndex_measured": "2375681", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2380066", + "sensor_index": "2380066", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/PT0-PM1 - 0/PT0-PM1-Inlet Temperature", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 20.5, + "sensor_limit": 85, + "sensor_limit_warn": 75, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2380066", + "entPhysicalIndex_measured": "2379777", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2380067", + "sensor_index": "2380067", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/PT0-PM1 - 0/PT0-PM1-Outlet Temperature", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 28.75, + "sensor_limit": 125, + "sensor_limit_warn": 115, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2380067", + "entPhysicalIndex_measured": "2379777", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2380068", + "sensor_index": "2380068", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/PT0-PM1 - 0/PT0-PM1-Heat Sink Temperature", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 30, + "sensor_limit": 125, + "sensor_limit_warn": 115, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2380068", + "entPhysicalIndex_measured": "2379777", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.290", + "sensor_index": "290", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-DIE_CPU", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 27, + "sensor_limit": 89, + "sensor_limit_warn": 77, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "290", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.293", + "sensor_index": "293", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-DIE_PCH", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 22, + "sensor_limit": 98, + "sensor_limit_warn": 88, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "293", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.296", + "sensor_index": "296", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-AIR_Inlet0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 20, + "sensor_limit": 68, + "sensor_limit_warn": 60, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "296", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.297", + "sensor_index": "297", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-AIR_Inlet1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 17, + "sensor_limit": 68, + "sensor_limit_warn": 60, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "297", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.298", + "sensor_index": "298", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-AIR_Inlet2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 23, + "sensor_limit": 68, + "sensor_limit_warn": 60, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "298", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2990470", + "sensor_index": "2990470", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-2 - 0/0-PORT-2-Module Temp", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 18.394, + "sensor_limit": 90, + "sensor_limit_warn": 0, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2990470", + "entPhysicalIndex_measured": "2990081", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2994566", + "sensor_index": "2994566", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-3 - 0/0-PORT-3-Module Temp", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": 20, + "sensor_limit_warn": 0, + "sensor_limit_low": -5, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2994566", + "entPhysicalIndex_measured": "2994177", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3015046", + "sensor_index": "3015046", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-8 - 0/0-PORT-8-Module Temp", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 29.812, + "sensor_limit": 75, + "sensor_limit_warn": 0, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "3015046", + "entPhysicalIndex_measured": "3014657", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.302", + "sensor_index": "302", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-Hotspot0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 25, + "sensor_limit": 85, + "sensor_limit_warn": 75, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "302", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.303", + "sensor_index": "303", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-Hotspot1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 26, + "sensor_limit": 85, + "sensor_limit_warn": 75, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "303", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.304", + "sensor_index": "304", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-AIR_Outlet0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 25, + "sensor_limit": 80, + "sensor_limit_warn": 70, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "304", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.305", + "sensor_index": "305", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-AIR_Outlet1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 26, + "sensor_limit": 80, + "sensor_limit_warn": 70, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "305", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.306", + "sensor_index": "306", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-Inlet", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 18, + "sensor_limit": 68, + "sensor_limit_warn": 60, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "306", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3072390", + "sensor_index": "3072390", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-22 - 0/0-PORT-22-Module Temp", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 31.3, + "sensor_limit": 90, + "sensor_limit_warn": 0, + "sensor_limit_low": -5, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "3072390", + "entPhysicalIndex_measured": "3072001", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.8492", + "sensor_index": "8492", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-DB AIR_Inlet0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 22, + "sensor_limit": 68, + "sensor_limit_warn": 60, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "8492", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.8493", + "sensor_index": "8493", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-DB AIR_Inlet1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 21, + "sensor_limit": 68, + "sensor_limit_warn": 60, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "8493", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.8494", + "sensor_index": "8494", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-DB AIR_Inlet2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 23, + "sensor_limit": 68, + "sensor_limit_warn": 60, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "8494", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.8495", + "sensor_index": "8495", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-DB Hotspot0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 31, + "sensor_limit": 85, + "sensor_limit_warn": 75, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "8495", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.8496", + "sensor_index": "8496", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-DB Hotspot1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 35, + "sensor_limit": 85, + "sensor_limit_warn": 75, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "8496", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.8497", + "sensor_index": "8497", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-DB Hotspot2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 34, + "sensor_limit": 85, + "sensor_limit_warn": 75, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "8497", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.8498", + "sensor_index": "8498", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-DB AIR_Outlet0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 33, + "sensor_limit": 80, + "sensor_limit_warn": 70, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "8498", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.8499", + "sensor_index": "8499", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-DB AIR_Outlet1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 31, + "sensor_limit": 80, + "sensor_limit_warn": 70, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "8499", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.8592", + "sensor_index": "8592", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-DIE_NP0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 37, + "sensor_limit": 110, + "sensor_limit_warn": 100, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "8592", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.8593", + "sensor_index": "8593", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-DIE_NP1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 34, + "sensor_limit": 110, + "sensor_limit_warn": 100, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "8593", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.8594", + "sensor_index": "8594", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-DIE_FabArbiter", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 34, + "sensor_limit": 122, + "sensor_limit_warn": 107, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "8594", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.8595", + "sensor_index": "8595", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-DIE_FIA0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 42, + "sensor_limit": 122, + "sensor_limit_warn": 107, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "8595", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.8596", + "sensor_index": "8596", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-DIE_FIA1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 40, + "sensor_limit": 122, + "sensor_limit_warn": 107, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "8596", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.8597", + "sensor_index": "8597", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-DIE_FabSwitch", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 34, + "sensor_limit": 122, + "sensor_limit_warn": 107, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "8597", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.8599", + "sensor_index": "8599", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-DIE_CPU", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 27, + "sensor_limit": 89, + "sensor_limit_warn": 77, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "8599", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.8600", + "sensor_index": "8600", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-DIE_PCH", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 23, + "sensor_limit": 98, + "sensor_limit_warn": 88, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "8600", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.8601", + "sensor_index": "8601", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-DIE_DIMM0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 23, + "sensor_limit": 85, + "sensor_limit_warn": 80, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "8601", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.8602", + "sensor_index": "8602", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-DIE_DIMM1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 23, + "sensor_limit": 85, + "sensor_limit_warn": 80, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "8602", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.8603", + "sensor_index": "8603", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-Inlet", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 21, + "sensor_limit": 68, + "sensor_limit_warn": 60, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "8603", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.8604", + "sensor_index": "8604", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-Hotspot", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 36, + "sensor_limit": 85, + "sensor_limit_warn": 75, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "8604", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10793", + "sensor_index": "10793", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-VP1P2_ARB", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.202, + "sensor_limit": 1.32, + "sensor_limit_warn": 1.308, + "sensor_limit_low": 1.08, + "sensor_limit_low_warn": 1.092, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10793", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10794", + "sensor_index": "10794", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-P1_2V_LC", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.199, + "sensor_limit": 1.32, + "sensor_limit_warn": 1.308, + "sensor_limit_low": 1.08, + "sensor_limit_low_warn": 1.092, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10794", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10795", + "sensor_index": "10795", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-VP3P3_MB_CAN", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.299, + "sensor_limit": 3.63, + "sensor_limit_warn": 3.594, + "sensor_limit_low": 2.97, + "sensor_limit_low_warn": 3.001, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10795", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10796", + "sensor_index": "10796", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-P1_8V_LC", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.8, + "sensor_limit": 1.98, + "sensor_limit_warn": 1.962, + "sensor_limit_low": 1.62, + "sensor_limit_low_warn": 1.638, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10796", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10797", + "sensor_index": "10797", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-P2_5V_LC", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 2.499, + "sensor_limit": 2.75, + "sensor_limit_warn": 2.725, + "sensor_limit_low": 2.25, + "sensor_limit_low_warn": 2.275, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10797", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10798", + "sensor_index": "10798", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-P1_5V_LC", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.5, + "sensor_limit": 1.65, + "sensor_limit_warn": 1.635, + "sensor_limit_low": 1.35, + "sensor_limit_low_warn": 1.365, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10798", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10799", + "sensor_index": "10799", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-VP0P6_VTT_B_MEM", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.606, + "sensor_limit": 0.66, + "sensor_limit_warn": 0.654, + "sensor_limit_low": 0.54, + "sensor_limit_low_warn": 0.546, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10799", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10800", + "sensor_index": "10800", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-VP1P2_CPU_L", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.21, + "sensor_limit": 1.332, + "sensor_limit_warn": 1.308, + "sensor_limit_low": 1.08, + "sensor_limit_low_warn": 1.092, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10800", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10801", + "sensor_index": "10801", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-P3_3V_LC", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.3, + "sensor_limit": 3.63, + "sensor_limit_warn": 3.597, + "sensor_limit_low": 2.97, + "sensor_limit_low_warn": 3.003, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10801", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10802", + "sensor_index": "10802", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-VP1P5_L", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.5, + "sensor_limit": 1.65, + "sensor_limit_warn": 1.635, + "sensor_limit_low": 1.35, + "sensor_limit_low_warn": 1.365, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10802", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10803", + "sensor_index": "10803", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-VP1P7_L", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.7, + "sensor_limit": 1.87, + "sensor_limit_warn": 1.853, + "sensor_limit_low": 1.53, + "sensor_limit_low_warn": 1.547, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10803", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10804", + "sensor_index": "10804", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-VP3P3_CPU_L", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.3, + "sensor_limit": 3.63, + "sensor_limit_warn": 3.597, + "sensor_limit_low": 2.97, + "sensor_limit_low_warn": 3.003, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10804", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10805", + "sensor_index": "10805", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-VP1P05_LCCPU", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.05, + "sensor_limit": 1.155, + "sensor_limit_warn": 1.144, + "sensor_limit_low": 0.945, + "sensor_limit_low_warn": 0.955, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10805", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10806", + "sensor_index": "10806", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-VP1P8_VCCIN_L", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.787, + "sensor_limit": 1.98, + "sensor_limit_warn": 1.96, + "sensor_limit_low": 1.62, + "sensor_limit_low_warn": 1.638, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10806", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10807", + "sensor_index": "10807", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-VP1P3_L", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.3, + "sensor_limit": 1.43, + "sensor_limit_warn": 1.417, + "sensor_limit_low": 1.17, + "sensor_limit_low_warn": 1.183, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10807", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10808", + "sensor_index": "10808", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-VP0P6_VTT_A_MEM", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.606, + "sensor_limit": 0.66, + "sensor_limit_warn": 0.654, + "sensor_limit_low": 0.54, + "sensor_limit_low_warn": 0.546, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10808", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10809", + "sensor_index": "10809", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-VP1P0_ARB_VDD", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.999, + "sensor_limit": 1.1, + "sensor_limit_warn": 1.09, + "sensor_limit_low": 0.9, + "sensor_limit_low_warn": 0.91, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10809", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10810", + "sensor_index": "10810", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-P1_0V_LC", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.999, + "sensor_limit": 1.1, + "sensor_limit_warn": 1.09, + "sensor_limit_low": 0.9, + "sensor_limit_low_warn": 0.909, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10810", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10811", + "sensor_index": "10811", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP1P0_MGTAVCC_LF0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": 1.1, + "sensor_limit_warn": 1.09, + "sensor_limit_low": 0.9, + "sensor_limit_low_warn": 0.91, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10811", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10812", + "sensor_index": "10812", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP1P2_LF_IPU", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.199, + "sensor_limit": 1.32, + "sensor_limit_warn": 1.308, + "sensor_limit_low": 1.08, + "sensor_limit_low_warn": 1.092, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10812", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10813", + "sensor_index": "10813", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-P1_8V0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.8, + "sensor_limit": 1.981, + "sensor_limit_warn": 1.962, + "sensor_limit_low": 1.62, + "sensor_limit_low_warn": 1.638, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10813", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10814", + "sensor_index": "10814", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-P3_3V0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.299, + "sensor_limit": 3.63, + "sensor_limit_warn": 3.597, + "sensor_limit_low": 2.97, + "sensor_limit_low_warn": 3.003, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10814", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10815", + "sensor_index": "10815", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-P2_5V0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 2.5, + "sensor_limit": 2.75, + "sensor_limit_warn": 2.725, + "sensor_limit_low": 2.25, + "sensor_limit_low_warn": 2.275, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10815", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10816", + "sensor_index": "10816", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-P7_0V0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 6.999, + "sensor_limit": 7.7, + "sensor_limit_warn": 7.63, + "sensor_limit_low": 6.3, + "sensor_limit_low_warn": 6.37, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10816", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10817", + "sensor_index": "10817", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-P5_0V0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 5, + "sensor_limit": 5.5, + "sensor_limit_warn": 5.45, + "sensor_limit_low": 4.5, + "sensor_limit_low_warn": 4.55, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10817", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10818", + "sensor_index": "10818", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-CS4343_VP0P9", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.9, + "sensor_limit": 0.99, + "sensor_limit_warn": 0.981, + "sensor_limit_low": 0.81, + "sensor_limit_low_warn": 0.819, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10818", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10819", + "sensor_index": "10819", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-CS4343_VP1P8", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.799, + "sensor_limit": 1.98, + "sensor_limit_warn": 1.962, + "sensor_limit_low": 1.62, + "sensor_limit_low_warn": 1.637, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10819", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10820", + "sensor_index": "10820", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-GB_VP1P0_DVDD", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": 1.1, + "sensor_limit_warn": 1.09, + "sensor_limit_low": 0.9, + "sensor_limit_low_warn": 0.91, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10820", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10821", + "sensor_index": "10821", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-GB_VP1P0_AVDD", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.999, + "sensor_limit": 1.1, + "sensor_limit_warn": 1.095, + "sensor_limit_low": 0.9, + "sensor_limit_low_warn": 0.91, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10821", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10822", + "sensor_index": "10822", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP1P0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.999, + "sensor_limit": 1.1, + "sensor_limit_warn": 1.09, + "sensor_limit_low": 0.9, + "sensor_limit_low_warn": 0.91, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10822", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10823", + "sensor_index": "10823", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-MACSEC_10G_AVDD", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": 1.1, + "sensor_limit_warn": 1.095, + "sensor_limit_low": 0.9, + "sensor_limit_low_warn": 0.91, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10823", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10824", + "sensor_index": "10824", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-MACSEC_100G_AVDD", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": 1.1, + "sensor_limit_warn": 1.09, + "sensor_limit_low": 0.9, + "sensor_limit_low_warn": 0.91, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10824", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10825", + "sensor_index": "10825", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-MACSEC_100G_VP1P0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.999, + "sensor_limit": 1.1, + "sensor_limit_warn": 1.09, + "sensor_limit_low": 0.9, + "sensor_limit_low_warn": 0.91, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10825", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10826", + "sensor_index": "10826", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP1P8_NP1_IO", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.799, + "sensor_limit": 1.98, + "sensor_limit_warn": 1.962, + "sensor_limit_low": 1.62, + "sensor_limit_low_warn": 1.638, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10826", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10827", + "sensor_index": "10827", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP1P5_NP1_IO", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.499, + "sensor_limit": 1.65, + "sensor_limit_warn": 1.635, + "sensor_limit_low": 1.35, + "sensor_limit_low_warn": 1.365, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10827", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10828", + "sensor_index": "10828", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP1P0_NP1_CORE", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.979, + "sensor_limit": 1.1, + "sensor_limit_warn": 1.09, + "sensor_limit_low": 0.9, + "sensor_limit_low_warn": 0.91, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10828", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10829", + "sensor_index": "10829", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP0P75_NP1_VTT", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.748, + "sensor_limit": 0.825, + "sensor_limit_warn": 0.817, + "sensor_limit_low": 0.675, + "sensor_limit_low_warn": 0.682, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10829", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10830", + "sensor_index": "10830", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP2P5_TS1_VDDH", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 2.499, + "sensor_limit": 2.35, + "sensor_limit_warn": 2.725, + "sensor_limit_low": 2.25, + "sensor_limit_low_warn": 2.275, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10830", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10831", + "sensor_index": "10831", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP1P5_TS1_VDDH", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.5, + "sensor_limit": 1.65, + "sensor_limit_warn": 1.635, + "sensor_limit_low": 1.35, + "sensor_limit_low_warn": 1.365, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10831", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10832", + "sensor_index": "10832", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP1P0_TS1_AVDD", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.999, + "sensor_limit": 1.1, + "sensor_limit_warn": 1.09, + "sensor_limit_low": 0.9, + "sensor_limit_low_warn": 0.91, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10832", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10833", + "sensor_index": "10833", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP0P9_TS1_VDD", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.924, + "sensor_limit": 0.99, + "sensor_limit_warn": 0.98, + "sensor_limit_low": 0.81, + "sensor_limit_low_warn": 0.819, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10833", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10834", + "sensor_index": "10834", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP0P75_TS1_VTT", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.75, + "sensor_limit": 0.825, + "sensor_limit_warn": 0.817, + "sensor_limit_low": 0.675, + "sensor_limit_low_warn": 0.682, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10834", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10835", + "sensor_index": "10835", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP1P0_TS1_PLVDDD", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": 1.1, + "sensor_limit_warn": 1.09, + "sensor_limit_low": 0.9, + "sensor_limit_low_warn": 0.91, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10835", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10836", + "sensor_index": "10836", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP1P0_SM15_PLVDD", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.999, + "sensor_limit": 1.1, + "sensor_limit_warn": 1.09, + "sensor_limit_low": 0.9, + "sensor_limit_low_warn": 0.91, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10836", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10837", + "sensor_index": "10837", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP0P9_SM15_VDD", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.825, + "sensor_limit": 0.99, + "sensor_limit_warn": 0.981, + "sensor_limit_low": 0.81, + "sensor_limit_low_warn": 0.819, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10837", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10838", + "sensor_index": "10838", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP1P0_SM15_AVDD", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.998, + "sensor_limit": 1.1, + "sensor_limit_warn": 1.09, + "sensor_limit_low": 0.9, + "sensor_limit_low_warn": 0.91, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10838", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10839", + "sensor_index": "10839", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP0P9_PCIE", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.9, + "sensor_limit": 0.99, + "sensor_limit_warn": 0.981, + "sensor_limit_low": 0.81, + "sensor_limit_low_warn": 0.819, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10839", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10840", + "sensor_index": "10840", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP1P8_TCAM_IO", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.8, + "sensor_limit": 1.98, + "sensor_limit_warn": 1.962, + "sensor_limit_low": 1.62, + "sensor_limit_low_warn": 1.638, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10840", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10841", + "sensor_index": "10841", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP0P9_TCAM_VDDS", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.899, + "sensor_limit": 0.99, + "sensor_limit_warn": 0.981, + "sensor_limit_low": 0.81, + "sensor_limit_low_warn": 0.819, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10841", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10842", + "sensor_index": "10842", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP0P9_TCAM_VTT", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.9, + "sensor_limit": 0.99, + "sensor_limit_warn": 0.981, + "sensor_limit_low": 0.81, + "sensor_limit_low_warn": 0.819, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10842", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10843", + "sensor_index": "10843", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP0P9_TCAM_CORE", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.9, + "sensor_limit": 0.99, + "sensor_limit_warn": 0.981, + "sensor_limit_low": 0.81, + "sensor_limit_low_warn": 0.819, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10843", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10844", + "sensor_index": "10844", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP3P3_SUPR", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.299, + "sensor_limit": 3.63, + "sensor_limit_warn": 3.597, + "sensor_limit_low": 2.97, + "sensor_limit_low_warn": 3.003, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10844", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10845", + "sensor_index": "10845", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP1P8_ZL_CORE", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.8, + "sensor_limit": 1.98, + "sensor_limit_warn": 1.96, + "sensor_limit_low": 1.62, + "sensor_limit_low_warn": 1.638, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10845", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10846", + "sensor_index": "10846", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP3P3_ZL_VDD", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.3, + "sensor_limit": 3.63, + "sensor_limit_warn": 3.597, + "sensor_limit_low": 2.97, + "sensor_limit_low_warn": 3.003, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10846", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10847", + "sensor_index": "10847", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP3P3_DB_CAN", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.28, + "sensor_limit": 3.63, + "sensor_limit_warn": 3.597, + "sensor_limit_low": 2.97, + "sensor_limit_low_warn": 3.003, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10847", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10848", + "sensor_index": "10848", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP1P8_NP0_IO", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.799, + "sensor_limit": 1.98, + "sensor_limit_warn": 1.962, + "sensor_limit_low": 1.62, + "sensor_limit_low_warn": 1.638, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10848", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10849", + "sensor_index": "10849", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP1P5_NP0_IO", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.5, + "sensor_limit": 1.65, + "sensor_limit_warn": 1.634, + "sensor_limit_low": 1.35, + "sensor_limit_low_warn": 1.365, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10849", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10850", + "sensor_index": "10850", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP1P0_NP0_CORE", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.977, + "sensor_limit": 1.1, + "sensor_limit_warn": 1.09, + "sensor_limit_low": 0.9, + "sensor_limit_low_warn": 0.91, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10850", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10851", + "sensor_index": "10851", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP0P75_NP0_VTT", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.749, + "sensor_limit": 0.825, + "sensor_limit_warn": 0.817, + "sensor_limit_low": 0.675, + "sensor_limit_low_warn": 0.682, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10851", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10852", + "sensor_index": "10852", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP2P5_TS0_VDDH", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 2.51, + "sensor_limit": 2.75, + "sensor_limit_warn": 2.725, + "sensor_limit_low": 2.25, + "sensor_limit_low_warn": 2.275, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10852", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10853", + "sensor_index": "10853", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP1P5_TS0_VDDH", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.5, + "sensor_limit": 1.65, + "sensor_limit_warn": 1.635, + "sensor_limit_low": 1.35, + "sensor_limit_low_warn": 1.365, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10853", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10854", + "sensor_index": "10854", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP1P0_TS0_AVDD", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": 1.1, + "sensor_limit_warn": 1.09, + "sensor_limit_low": 0.9, + "sensor_limit_low_warn": 0.91, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10854", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10855", + "sensor_index": "10855", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP0P9_TS0_VDD", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.925, + "sensor_limit": 0.99, + "sensor_limit_warn": 0.981, + "sensor_limit_low": 0.81, + "sensor_limit_low_warn": 0.819, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10855", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10856", + "sensor_index": "10856", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP0P75_TS0_VTT", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.75, + "sensor_limit": 0.825, + "sensor_limit_warn": 0.817, + "sensor_limit_low": 0.675, + "sensor_limit_low_warn": 0.682, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10856", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10857", + "sensor_index": "10857", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP1P0_TS0_PLVDDD", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.999, + "sensor_limit": 1.1, + "sensor_limit_warn": 1.09, + "sensor_limit_low": 0.9, + "sensor_limit_low_warn": 0.91, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10857", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10858", + "sensor_index": "10858", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-Hot Swap VS", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 12.021, + "sensor_limit": 13.2, + "sensor_limit_warn": 12.96, + "sensor_limit_low": 10.8, + "sensor_limit_low_warn": 11.4, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10858", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2375940", + "sensor_index": "2375940", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/PT0-PM0 - 0/PT0-PM0-Input Voltage", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 232.5, + "sensor_limit": 285, + "sensor_limit_warn": 270, + "sensor_limit_low": 15, + "sensor_limit_low_warn": 30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2375940", + "entPhysicalIndex_measured": "2375681", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2375941", + "sensor_index": "2375941", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/PT0-PM0 - 0/PT0-PM0-Output Voltage", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 12.043, + "sensor_limit": 14.25, + "sensor_limit_warn": 13.5, + "sensor_limit_low": 0.75, + "sensor_limit_low_warn": 1.5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2375941", + "entPhysicalIndex_measured": "2375681", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2380036", + "sensor_index": "2380036", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/PT0-PM1 - 0/PT0-PM1-Input Voltage", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 232.5, + "sensor_limit": 285, + "sensor_limit_warn": 270, + "sensor_limit_low": 15, + "sensor_limit_low_warn": 30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2380036", + "entPhysicalIndex_measured": "2379777", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2380037", + "sensor_index": "2380037", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/PT0-PM1 - 0/PT0-PM1-Output Voltage", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 12.044, + "sensor_limit": 14.25, + "sensor_limit_warn": 13.5, + "sensor_limit_low": 0.75, + "sensor_limit_low_warn": 1.5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2380037", + "entPhysicalIndex_measured": "2379777", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2601", + "sensor_index": "2601", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-P5V", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 5.002, + "sensor_limit": 5.5, + "sensor_limit_warn": 5.45, + "sensor_limit_low": 4.5, + "sensor_limit_low_warn": 4.55, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2601", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2602", + "sensor_index": "2602", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-P7V", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 6.999, + "sensor_limit": 7.7, + "sensor_limit_warn": 7.63, + "sensor_limit_low": 6.3, + "sensor_limit_low_warn": 6.37, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2602", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2603", + "sensor_index": "2603", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-P3_3V_AUX", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.299, + "sensor_limit": 3.63, + "sensor_limit_warn": 3.597, + "sensor_limit_low": 2.97, + "sensor_limit_low_warn": 3.003, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2603", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2604", + "sensor_index": "2604", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-P1_8V", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.799, + "sensor_limit": 1.98, + "sensor_limit_warn": 1.962, + "sensor_limit_low": 1.62, + "sensor_limit_low_warn": 1.638, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2604", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2605", + "sensor_index": "2605", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-P2_5V", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 2.5, + "sensor_limit": 2.75, + "sensor_limit_warn": 2.725, + "sensor_limit_low": 2.25, + "sensor_limit_low_warn": 2.275, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2605", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2606", + "sensor_index": "2606", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-P1_0V_ALDRIN_CORE", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.985, + "sensor_limit": 1.1, + "sensor_limit_warn": 1.09, + "sensor_limit_low": 0.9, + "sensor_limit_low_warn": 0.91, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2606", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2607", + "sensor_index": "2607", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-VP1P2_CPU_C", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.211, + "sensor_limit": 1.32, + "sensor_limit_warn": 1.308, + "sensor_limit_low": 1.08, + "sensor_limit_low_warn": 1.092, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2607", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2608", + "sensor_index": "2608", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-P3_3V", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.299, + "sensor_limit": 3.63, + "sensor_limit_warn": 3.597, + "sensor_limit_low": 2.97, + "sensor_limit_low_warn": 3.003, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2608", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2609", + "sensor_index": "2609", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-VP1P5_C", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.5, + "sensor_limit": 1.65, + "sensor_limit_warn": 1.635, + "sensor_limit_low": 1.35, + "sensor_limit_low_warn": 1.365, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2609", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2610", + "sensor_index": "2610", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-VP1P7_C", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.699, + "sensor_limit": 1.87, + "sensor_limit_warn": 1.853, + "sensor_limit_low": 1.53, + "sensor_limit_low_warn": 1.547, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2610", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2611", + "sensor_index": "2611", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-VP3P3_CPU_C", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.297, + "sensor_limit": 3.63, + "sensor_limit_warn": 3.597, + "sensor_limit_low": 2.97, + "sensor_limit_low_warn": 3.003, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2611", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2612", + "sensor_index": "2612", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-VP1P05_CPU_C", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.052, + "sensor_limit": 1.155, + "sensor_limit_warn": 1.144, + "sensor_limit_low": 0.945, + "sensor_limit_low_warn": 0.955, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2612", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2613", + "sensor_index": "2613", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-VP1P8_VCCIN_C", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.788, + "sensor_limit": 1.98, + "sensor_limit_warn": 1.962, + "sensor_limit_low": 1.62, + "sensor_limit_low_warn": 1.638, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2613", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2614", + "sensor_index": "2614", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-VP1P3_C", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.3, + "sensor_limit": 1.43, + "sensor_limit_warn": 1.417, + "sensor_limit_low": 1.17, + "sensor_limit_low_warn": 1.183, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2614", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2615", + "sensor_index": "2615", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-VP0P6_VTT_A_MEM_C", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.604, + "sensor_limit": 0.66, + "sensor_limit_warn": 0.654, + "sensor_limit_low": 0.54, + "sensor_limit_low_warn": 0.546, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2615", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2616", + "sensor_index": "2616", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-VP1P8_OCXO", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.799, + "sensor_limit": 1.98, + "sensor_limit_warn": 1.962, + "sensor_limit_low": 1.62, + "sensor_limit_low_warn": 1.638, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2616", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2617", + "sensor_index": "2617", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-VP3P3_OCXO", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.3, + "sensor_limit": 3.63, + "sensor_limit_warn": 3.597, + "sensor_limit_low": 2.97, + "sensor_limit_low_warn": 3.003, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2617", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2618", + "sensor_index": "2618", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-P0_9V", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.9, + "sensor_limit": 0.99, + "sensor_limit_warn": 0.981, + "sensor_limit_low": 0.81, + "sensor_limit_low_warn": 0.819, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2618", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2619", + "sensor_index": "2619", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-P1V", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": 1.1, + "sensor_limit_warn": 1.09, + "sensor_limit_low": 0.9, + "sensor_limit_low_warn": 0.91, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2619", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2620", + "sensor_index": "2620", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-ALD_P1P8_LDO", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.8, + "sensor_limit": 1.98, + "sensor_limit_warn": 1.962, + "sensor_limit_low": 1.62, + "sensor_limit_low_warn": 1.638, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2620", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2621", + "sensor_index": "2621", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-OMG_P1P8_LDO", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.8, + "sensor_limit": 1.98, + "sensor_limit_warn": 1.962, + "sensor_limit_low": 1.62, + "sensor_limit_low_warn": 1.638, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2621", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2622", + "sensor_index": "2622", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-P1_2V", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.2, + "sensor_limit": 1.32, + "sensor_limit_warn": 1.308, + "sensor_limit_low": 1.08, + "sensor_limit_low_warn": 1.092, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2622", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2623", + "sensor_index": "2623", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-VP0P6_VTT_B_MEM_C", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.605, + "sensor_limit": 0.66, + "sensor_limit_warn": 0.654, + "sensor_limit_low": 0.54, + "sensor_limit_low_warn": 0.546, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2623", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2624", + "sensor_index": "2624", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-VP1P2_MGTAVTT_OMG", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.199, + "sensor_limit": 1.32, + "sensor_limit_warn": 1.308, + "sensor_limit_low": 1.08, + "sensor_limit_low_warn": 1.092, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2624", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2625", + "sensor_index": "2625", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-P1_0V_ALDRIN_SD_AVDD", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": 1.1, + "sensor_limit_warn": 1.09, + "sensor_limit_low": 0.9, + "sensor_limit_low_warn": 0.91, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2625", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2626", + "sensor_index": "2626", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-VP1P0_MGTAVCC_IPU", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.999, + "sensor_limit": 1.1, + "sensor_limit_warn": 1.09, + "sensor_limit_low": 0.9, + "sensor_limit_low_warn": 0.91, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2626", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2627", + "sensor_index": "2627", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-P1_5V", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.5, + "sensor_limit": 1.65, + "sensor_limit_warn": 1.635, + "sensor_limit_low": 1.35, + "sensor_limit_low_warn": 1.365, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2627", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2628", + "sensor_index": "2628", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-VP1P0_MGTAVCC_OMG", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": 1.1, + "sensor_limit_warn": 1.09, + "sensor_limit_low": 0.9, + "sensor_limit_low_warn": 0.91, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2628", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2629", + "sensor_index": "2629", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-VP1P2_MGTAVTT_IPU", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.2, + "sensor_limit": 1.32, + "sensor_limit_warn": 1.308, + "sensor_limit_low": 1.08, + "sensor_limit_low_warn": 1.092, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2629", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2630", + "sensor_index": "2630", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-VP1P8_MGTVCCAUX_IPU", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.799, + "sensor_limit": 2.068, + "sensor_limit_warn": 2.03, + "sensor_limit_low": 1.62, + "sensor_limit_low_warn": 1.638, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2630", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2631", + "sensor_index": "2631", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-Hot Swap VS", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 12.049, + "sensor_limit": 13.2, + "sensor_limit_warn": 12.96, + "sensor_limit_low": 10.8, + "sensor_limit_low_warn": 11.4, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2631", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2990320", + "sensor_index": "2990320", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-2 - 0/0-PORT-2-3.3 V", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.38, + "sensor_limit": 3.6, + "sensor_limit_warn": 0, + "sensor_limit_low": 3, + "sensor_limit_low_warn": 0, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2990320", + "entPhysicalIndex_measured": "2990081", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2994416", + "sensor_index": "2994416", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-3 - 0/0-PORT-3-3.3 V", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": 0, + "sensor_limit_warn": 0, + "sensor_limit_low": 0, + "sensor_limit_low_warn": 0, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2994416", + "entPhysicalIndex_measured": "2994177", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3014896", + "sensor_index": "3014896", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-8 - 0/0-PORT-8-3.3 V", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.359, + "sensor_limit": 3.701, + "sensor_limit_warn": 0, + "sensor_limit_low": 2.897, + "sensor_limit_low_warn": 0, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "3014896", + "entPhysicalIndex_measured": "3014657", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3072240", + "sensor_index": "3072240", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-22 - 0/0-PORT-22-3.3 V", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.265, + "sensor_limit": 3.8, + "sensor_limit_warn": 0, + "sensor_limit_low": 2.7, + "sensor_limit_low_warn": 0, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "3072240", + "entPhysicalIndex_measured": "3072001", + "sensor_prev": null, + "user_func": null, + "state_name": null + } + ], + "state_indexes": [ + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "off (other)", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 2 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "on", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "off (admin)", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 1 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "off (denied)", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 2 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "off (environmental)", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 2 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "off (temperature)", + "state_draw_graph": 0, + "state_value": 6, + "state_generic_value": 2 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "off (fan)", + "state_draw_graph": 0, + "state_value": 7, + "state_generic_value": 2 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "failed", + "state_draw_graph": 0, + "state_value": 8, + "state_generic_value": 2 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "on (fan failed)", + "state_draw_graph": 0, + "state_value": 9, + "state_generic_value": 1 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "off (cooling)", + "state_draw_graph": 0, + "state_value": 10, + "state_generic_value": 2 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "off (connector rating)", + "state_draw_graph": 0, + "state_value": 11, + "state_generic_value": 2 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "on (no inline power)", + "state_draw_graph": 0, + "state_value": 12, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "notKnown", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 3 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "disabled", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "initialization", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "negotiation", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "standbyCold", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "standbyColdConfig", + "state_draw_graph": 0, + "state_value": 6, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "standbyColdFileSys", + "state_draw_graph": 0, + "state_value": 7, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "standbyColdBulk", + "state_draw_graph": 0, + "state_value": 8, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "standbyHot", + "state_draw_graph": 0, + "state_value": 9, + "state_generic_value": 0 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "activeFast", + "state_draw_graph": 0, + "state_value": 10, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "activeDrain", + "state_draw_graph": 0, + "state_value": 11, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "activePreconfig", + "state_draw_graph": 0, + "state_value": 12, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "activePostconfig", + "state_draw_graph": 0, + "state_value": 13, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "active", + "state_draw_graph": 0, + "state_value": 14, + "state_generic_value": 0 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "activeExtraload", + "state_draw_graph": 0, + "state_value": 15, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "activeHandback", + "state_draw_graph": 0, + "state_value": 16, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "notKnown", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 3 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "disabled", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "initialization", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "negotiation", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "standbyCold", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "standbyColdConfig", + "state_draw_graph": 0, + "state_value": 6, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "standbyColdFileSys", + "state_draw_graph": 0, + "state_value": 7, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "standbyColdBulk", + "state_draw_graph": 0, + "state_value": 8, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "standbyHot", + "state_draw_graph": 0, + "state_value": 9, + "state_generic_value": 0 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "activeFast", + "state_draw_graph": 0, + "state_value": 10, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "activeDrain", + "state_draw_graph": 0, + "state_value": 11, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "activePreconfig", + "state_draw_graph": 0, + "state_value": 12, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "activePostconfig", + "state_draw_graph": 0, + "state_value": 13, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "active", + "state_draw_graph": 0, + "state_value": 14, + "state_generic_value": 0 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "activeExtraload", + "state_draw_graph": 0, + "state_value": 15, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "activeHandback", + "state_draw_graph": 0, + "state_value": 16, + "state_generic_value": 1 + } + ] + }, + "poller": { + "sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10593", + "sensor_index": "10593", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-Hot Swap CS", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 29.345, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10593", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2375930", + "sensor_index": "2375930", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/PT0-PM0 - 0/PT0-PM0-Input Current", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.125, + "sensor_limit": 23.75, + "sensor_limit_warn": 22.5, + "sensor_limit_low": 1.25, + "sensor_limit_low_warn": 2.5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2375930", + "entPhysicalIndex_measured": "2375681", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2375931", + "sensor_index": "2375931", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/PT0-PM0 - 0/PT0-PM0-Output Current", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 17.843, + "sensor_limit": 285, + "sensor_limit_warn": 270, + "sensor_limit_low": 15, + "sensor_limit_low_warn": 30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2375931", + "entPhysicalIndex_measured": "2375681", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2380026", + "sensor_index": "2380026", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/PT0-PM1 - 0/PT0-PM1-Input Current", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.095, + "sensor_limit": 23.75, + "sensor_limit_warn": 22.5, + "sensor_limit_low": 1.25, + "sensor_limit_low_warn": 2.5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2380026", + "entPhysicalIndex_measured": "2379777", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2380027", + "sensor_index": "2380027", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/PT0-PM1 - 0/PT0-PM1-Output Current", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 17.531, + "sensor_limit": 285, + "sensor_limit_warn": 270, + "sensor_limit_low": 15, + "sensor_limit_low_warn": 30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2380027", + "entPhysicalIndex_measured": "2379777", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2401", + "sensor_index": "2401", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-Hot Swap CS", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 5.285, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2401", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2990330", + "sensor_index": "2990330", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-2 - 0/0-PORT-2-Tx Lane 0 Current", + "group": null, + "sensor_divisor": 1000000, + "sensor_multiplier": 1, + "sensor_current": 0.025012, + "sensor_limit": 0.075, + "sensor_limit_warn": 0, + "sensor_limit_low": 0.003, + "sensor_limit_low_warn": 0, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2990330", + "entPhysicalIndex_measured": "2990081", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2994426", + "sensor_index": "2994426", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-3 - 0/0-PORT-3-Tx Lane 0 Current", + "group": null, + "sensor_divisor": 1000000, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": 0, + "sensor_limit_low": null, + "sensor_limit_low_warn": 0, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2994426", + "entPhysicalIndex_measured": "2994177", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3014906", + "sensor_index": "3014906", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-8 - 0/0-PORT-8-Tx Lane 0 Current", + "group": null, + "sensor_divisor": 1000000, + "sensor_multiplier": 1, + "sensor_current": 0.029282, + "sensor_limit": 0.085002, + "sensor_limit_warn": 0, + "sensor_limit_low": 0.015, + "sensor_limit_low_warn": 0, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "3014906", + "entPhysicalIndex_measured": "3014657", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3072250", + "sensor_index": "3072250", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-22 - 0/0-PORT-22-Tx Lane 0 Current", + "group": null, + "sensor_divisor": 1000000, + "sensor_multiplier": 1, + "sensor_current": 0.034, + "sensor_limit": 0.1, + "sensor_limit_warn": 0, + "sensor_limit_low": 0.0001, + "sensor_limit_low_warn": 0, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "3072250", + "entPhysicalIndex_measured": "3072001", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2990350", + "sensor_index": "2990350", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-2 - 0/0-PORT-2-Tx Lane 0 Power", + "group": null, + "sensor_divisor": 100000000, + "sensor_multiplier": 1000, + "sensor_current": -4.7873112440161, + "sensor_limit": 0.99991233544684, + "sensor_limit_warn": null, + "sensor_limit_low": -13.496924768681, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2990350", + "entPhysicalIndex_measured": "2990081", + "sensor_prev": -4.787, + "user_func": "mw_to_dbm", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2990362", + "sensor_index": "2990362", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-2 - 0/0-PORT-2-Rx Lane 0 Power", + "group": null, + "sensor_divisor": 100000000, + "sensor_multiplier": 1000, + "sensor_current": -3.3423144928062, + "sensor_limit": 0.99991233544684, + "sensor_limit_warn": null, + "sensor_limit_low": -23.01029995664, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2990362", + "entPhysicalIndex_measured": "2990081", + "sensor_prev": -3.342, + "user_func": "mw_to_dbm", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2994446", + "sensor_index": "2994446", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-3 - 0/0-PORT-3-Tx Lane 0 Power", + "group": null, + "sensor_divisor": 100000000, + "sensor_multiplier": 1000, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2994446", + "entPhysicalIndex_measured": "2994177", + "sensor_prev": 0, + "user_func": "mw_to_dbm", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2994458", + "sensor_index": "2994458", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-3 - 0/0-PORT-3-Rx Lane 0 Power", + "group": null, + "sensor_divisor": 100000000, + "sensor_multiplier": 1000, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2994458", + "entPhysicalIndex_measured": "2994177", + "sensor_prev": 0, + "user_func": "mw_to_dbm", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3014926", + "sensor_index": "3014926", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-8 - 0/0-PORT-8-Tx Lane 0 Power", + "group": null, + "sensor_divisor": 100000000, + "sensor_multiplier": 1000, + "sensor_current": 2.5197871006338, + "sensor_limit": 6.0021030640933, + "sensor_limit_warn": null, + "sensor_limit_low": -2.998156703778, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "3014926", + "entPhysicalIndex_measured": "3014657", + "sensor_prev": 2.52, + "user_func": "mw_to_dbm", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3014938", + "sensor_index": "3014938", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-8 - 0/0-PORT-8-Rx Lane 0 Power", + "group": null, + "sensor_divisor": 100000000, + "sensor_multiplier": 1000, + "sensor_current": -2.1126614117229, + "sensor_limit": 3.9963911496427, + "sensor_limit_warn": null, + "sensor_limit_low": -20, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "3014938", + "entPhysicalIndex_measured": "3014657", + "sensor_prev": -2.113, + "user_func": "mw_to_dbm", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3072270", + "sensor_index": "3072270", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-22 - 0/0-PORT-22-Tx Lane 0 Power", + "group": null, + "sensor_divisor": 100000000, + "sensor_multiplier": 1000, + "sensor_current": -2.2643295107394, + "sensor_limit": 0.99991233544684, + "sensor_limit_warn": null, + "sensor_limit_low": -7.0005709997723, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "3072270", + "entPhysicalIndex_measured": "3072001", + "sensor_prev": -2.264, + "user_func": "mw_to_dbm", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3072282", + "sensor_index": "3072282", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-22 - 0/0-PORT-22-Rx Lane 0 Power", + "group": null, + "sensor_divisor": 100000000, + "sensor_multiplier": 1000, + "sensor_current": -0.86716098239582, + "sensor_limit": 0.99991233544684, + "sensor_limit_warn": null, + "sensor_limit_low": -16.98970004336, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "3072282", + "entPhysicalIndex_measured": "3072001", + "sensor_prev": -0.867, + "user_func": "mw_to_dbm", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2376630", + "sensor_index": "2376630", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/PT0-PM0-fan0 - 0/PT0-PM0-Fan 0 Speed", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 10432, + "sensor_limit": 2147483.647, + "sensor_limit_warn": 19.8, + "sensor_limit_low": -0.001, + "sensor_limit_low_warn": 2.2, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2376630", + "entPhysicalIndex_measured": "2376530", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2376631", + "sensor_index": "2376631", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/PT0-PM0-fan1 - 0/PT0-PM0-Fan 1 Speed", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 10016, + "sensor_limit": 2147483.647, + "sensor_limit_warn": 19.8, + "sensor_limit_low": -0.001, + "sensor_limit_low_warn": 2.2, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2376631", + "entPhysicalIndex_measured": "2376531", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2380726", + "sensor_index": "2380726", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/PT0-PM1-fan0 - 0/PT0-PM1-Fan 0 Speed", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 11136, + "sensor_limit": 2147483.647, + "sensor_limit_warn": 19.8, + "sensor_limit_low": -0.001, + "sensor_limit_low_warn": 2.2, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2380726", + "entPhysicalIndex_measured": "2380626", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2380727", + "sensor_index": "2380727", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/PT0-PM1-fan1 - 0/PT0-PM1-Fan 1 Speed", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 9984, + "sensor_limit": 2147483.647, + "sensor_limit_warn": 19.8, + "sensor_limit_low": -0.001, + "sensor_limit_low_warn": 2.2, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2380727", + "entPhysicalIndex_measured": "2380627", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.41910", + "sensor_index": "41910", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/FT0-Fan0 - 0/FT0-Fan Speed 0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6990, + "sensor_limit": 12582, + "sensor_limit_warn": null, + "sensor_limit_low": 5592, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "41910", + "entPhysicalIndex_measured": "41810", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.46006", + "sensor_index": "46006", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/FT1-Fan0 - 0/FT1-Fan Speed 0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6990, + "sensor_limit": 12582, + "sensor_limit_warn": null, + "sensor_limit_low": 5592, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "46006", + "entPhysicalIndex_measured": "45906", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "fanspeed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.50102", + "sensor_index": "50102", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/FT2-Fan0 - 0/FT2-Fan Speed 0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 7050, + "sensor_limit": 12690, + "sensor_limit_warn": null, + "sensor_limit_low": 5640, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "50102", + "entPhysicalIndex_measured": "50002", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2375950", + "sensor_index": "2375950", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/PT0-PM0 - 0/PT0-PM0-Input Power", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 250.25, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2375950", + "entPhysicalIndex_measured": "2375681", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2375951", + "sensor_index": "2375951", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/PT0-PM0 - 0/PT0-PM0-Output Power", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 216, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2375951", + "entPhysicalIndex_measured": "2375681", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2380046", + "sensor_index": "2380046", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/PT0-PM1 - 0/PT0-PM1-Input Power", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 244.75, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2380046", + "entPhysicalIndex_measured": "2379777", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2380047", + "sensor_index": "2380047", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/PT0-PM1 - 0/PT0-PM1-Output Power", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 211.25, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2380047", + "entPhysicalIndex_measured": "2379777", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2990350", + "sensor_index": "2990350", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-2 - 0/0-PORT-2-Tx Lane 0 Power", + "group": null, + "sensor_divisor": 100000000, + "sensor_multiplier": 1, + "sensor_current": 0.0003321, + "sensor_limit": 0.0012589, + "sensor_limit_warn": 0, + "sensor_limit_low": 4.47e-5, + "sensor_limit_low_warn": 0, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2990350", + "entPhysicalIndex_measured": "2990081", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2990362", + "sensor_index": "2990362", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-2 - 0/0-PORT-2-Rx Lane 0 Power", + "group": null, + "sensor_divisor": 100000000, + "sensor_multiplier": 1, + "sensor_current": 0.0004632, + "sensor_limit": 0.0012589, + "sensor_limit_warn": 0, + "sensor_limit_low": 5.0e-6, + "sensor_limit_low_warn": 0, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2990362", + "entPhysicalIndex_measured": "2990081", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2994446", + "sensor_index": "2994446", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-3 - 0/0-PORT-3-Tx Lane 0 Power", + "group": null, + "sensor_divisor": 100000000, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": 0, + "sensor_limit_low": null, + "sensor_limit_low_warn": 0, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2994446", + "entPhysicalIndex_measured": "2994177", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2994458", + "sensor_index": "2994458", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-3 - 0/0-PORT-3-Rx Lane 0 Power", + "group": null, + "sensor_divisor": 100000000, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": 0, + "sensor_limit_low": null, + "sensor_limit_low_warn": 0, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2994458", + "entPhysicalIndex_measured": "2994177", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3014926", + "sensor_index": "3014926", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-8 - 0/0-PORT-8-Tx Lane 0 Power", + "group": null, + "sensor_divisor": 100000000, + "sensor_multiplier": 1, + "sensor_current": 0.0017864, + "sensor_limit": 0.003983, + "sensor_limit_warn": 0, + "sensor_limit_low": 0.0005014, + "sensor_limit_low_warn": 0, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "3014926", + "entPhysicalIndex_measured": "3014657", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3014938", + "sensor_index": "3014938", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-8 - 0/0-PORT-8-Rx Lane 0 Power", + "group": null, + "sensor_divisor": 100000000, + "sensor_multiplier": 1, + "sensor_current": 0.0006148, + "sensor_limit": 0.0025098, + "sensor_limit_warn": 0, + "sensor_limit_low": 1.0e-5, + "sensor_limit_low_warn": 0, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "3014938", + "entPhysicalIndex_measured": "3014657", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3072270", + "sensor_index": "3072270", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-22 - 0/0-PORT-22-Tx Lane 0 Power", + "group": null, + "sensor_divisor": 100000000, + "sensor_multiplier": 1, + "sensor_current": 0.0005937, + "sensor_limit": 0.0012589, + "sensor_limit_warn": 0, + "sensor_limit_low": 0.0001995, + "sensor_limit_low_warn": 0, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "3072270", + "entPhysicalIndex_measured": "3072001", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3072282", + "sensor_index": "3072282", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-22 - 0/0-PORT-22-Rx Lane 0 Power", + "group": null, + "sensor_divisor": 100000000, + "sensor_multiplier": 1, + "sensor_current": 0.000819, + "sensor_limit": 0.0012589, + "sensor_limit_warn": 0, + "sensor_limit_low": 2.0e-5, + "sensor_limit_low_warn": 0, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "3072282", + "entPhysicalIndex_measured": "3072001", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.1", + "sensor_index": "1", + "sensor_type": "cefcFRUPowerOperStatus", + "sensor_descr": "0/RSP0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1", + "entPhysicalIndex_measured": null, + "sensor_prev": 0, + "user_func": null, + "state_name": "cefcFRUPowerOperStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.118785", + "sensor_index": "118785", + "sensor_type": "cefcFRUPowerOperStatus", + "sensor_descr": "0/PT0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "118785", + "entPhysicalIndex_measured": null, + "sensor_prev": 0, + "user_func": null, + "state_name": "cefcFRUPowerOperStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.2375681", + "sensor_index": "2375681", + "sensor_type": "cefcFRUPowerOperStatus", + "sensor_descr": "0/PT0-PM0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2375681", + "entPhysicalIndex_measured": null, + "sensor_prev": 0, + "user_func": null, + "state_name": "cefcFRUPowerOperStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.2379777", + "sensor_index": "2379777", + "sensor_type": "cefcFRUPowerOperStatus", + "sensor_descr": "0/PT0-PM1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2379777", + "entPhysicalIndex_measured": null, + "sensor_prev": 0, + "user_func": null, + "state_name": "cefcFRUPowerOperStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.2990081", + "sensor_index": "2990081", + "sensor_type": "cefcFRUPowerOperStatus", + "sensor_descr": "0/0-PORT-2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2990081", + "entPhysicalIndex_measured": null, + "sensor_prev": 0, + "user_func": null, + "state_name": "cefcFRUPowerOperStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.2994177", + "sensor_index": "2994177", + "sensor_type": "cefcFRUPowerOperStatus", + "sensor_descr": "0/0-PORT-3", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2994177", + "entPhysicalIndex_measured": null, + "sensor_prev": 0, + "user_func": null, + "state_name": "cefcFRUPowerOperStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.3014657", + "sensor_index": "3014657", + "sensor_type": "cefcFRUPowerOperStatus", + "sensor_descr": "0/0-PORT-8", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "3014657", + "entPhysicalIndex_measured": null, + "sensor_prev": 0, + "user_func": null, + "state_name": "cefcFRUPowerOperStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.3072001", + "sensor_index": "3072001", + "sensor_type": "cefcFRUPowerOperStatus", + "sensor_descr": "0/0-PORT-22", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "3072001", + "entPhysicalIndex_measured": null, + "sensor_prev": 0, + "user_func": null, + "state_name": "cefcFRUPowerOperStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.40961", + "sensor_index": "40961", + "sensor_type": "cefcFRUPowerOperStatus", + "sensor_descr": "0/FT0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "40961", + "entPhysicalIndex_measured": null, + "sensor_prev": 0, + "user_func": null, + "state_name": "cefcFRUPowerOperStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.45057", + "sensor_index": "45057", + "sensor_type": "cefcFRUPowerOperStatus", + "sensor_descr": "0/FT1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "45057", + "entPhysicalIndex_measured": null, + "sensor_prev": 0, + "user_func": null, + "state_name": "cefcFRUPowerOperStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.49153", + "sensor_index": "49153", + "sensor_type": "cefcFRUPowerOperStatus", + "sensor_descr": "0/FT2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "49153", + "entPhysicalIndex_measured": null, + "sensor_prev": 0, + "user_func": null, + "state_name": "cefcFRUPowerOperStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.8193", + "sensor_index": "8193", + "sensor_type": "cefcFRUPowerOperStatus", + "sensor_descr": "0/0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "8193", + "entPhysicalIndex_measured": null, + "sensor_prev": 0, + "user_func": null, + "state_name": "cefcFRUPowerOperStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.176.1.1.4.0", + "sensor_index": "0", + "sensor_type": "cRFStatusPeerUnitState", + "sensor_descr": "VSS Peer State", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "0", + "entPhysicalIndex_measured": null, + "sensor_prev": 0, + "user_func": null, + "state_name": "cRFStatusPeerUnitState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.176.1.1.2.0", + "sensor_index": "0", + "sensor_type": "cRFStatusUnitState", + "sensor_descr": "VSS Device State", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 14, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "0", + "entPhysicalIndex_measured": null, + "sensor_prev": 0, + "user_func": null, + "state_name": "cRFStatusUnitState" + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.178", + "sensor_index": "178", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-DIE_DIMM0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 22, + "sensor_limit": 85, + "sensor_limit_warn": 80, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "178", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.179", + "sensor_index": "179", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-DIE_DIMM1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 22, + "sensor_limit": 85, + "sensor_limit_warn": 80, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "179", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.182", + "sensor_index": "182", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-Hotspot", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 27, + "sensor_limit": 85, + "sensor_limit_warn": 75, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "182", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2375970", + "sensor_index": "2375970", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/PT0-PM0 - 0/PT0-PM0-Inlet Temperature", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 22, + "sensor_limit": 85, + "sensor_limit_warn": 75, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2375970", + "entPhysicalIndex_measured": "2375681", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2375971", + "sensor_index": "2375971", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/PT0-PM0 - 0/PT0-PM0-Outlet Temperature", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 30.25, + "sensor_limit": 125, + "sensor_limit_warn": 115, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2375971", + "entPhysicalIndex_measured": "2375681", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2375972", + "sensor_index": "2375972", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/PT0-PM0 - 0/PT0-PM0-Heat Sink Temperature", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 30.75, + "sensor_limit": 125, + "sensor_limit_warn": 115, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2375972", + "entPhysicalIndex_measured": "2375681", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2380066", + "sensor_index": "2380066", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/PT0-PM1 - 0/PT0-PM1-Inlet Temperature", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 20.5, + "sensor_limit": 85, + "sensor_limit_warn": 75, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2380066", + "entPhysicalIndex_measured": "2379777", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2380067", + "sensor_index": "2380067", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/PT0-PM1 - 0/PT0-PM1-Outlet Temperature", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 28.75, + "sensor_limit": 125, + "sensor_limit_warn": 115, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2380067", + "entPhysicalIndex_measured": "2379777", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2380068", + "sensor_index": "2380068", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/PT0-PM1 - 0/PT0-PM1-Heat Sink Temperature", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 30, + "sensor_limit": 125, + "sensor_limit_warn": 115, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2380068", + "entPhysicalIndex_measured": "2379777", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.290", + "sensor_index": "290", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-DIE_CPU", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 27, + "sensor_limit": 89, + "sensor_limit_warn": 77, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "290", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.293", + "sensor_index": "293", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-DIE_PCH", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 22, + "sensor_limit": 98, + "sensor_limit_warn": 88, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "293", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.296", + "sensor_index": "296", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-AIR_Inlet0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 20, + "sensor_limit": 68, + "sensor_limit_warn": 60, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "296", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.297", + "sensor_index": "297", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-AIR_Inlet1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 17, + "sensor_limit": 68, + "sensor_limit_warn": 60, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "297", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.298", + "sensor_index": "298", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-AIR_Inlet2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 23, + "sensor_limit": 68, + "sensor_limit_warn": 60, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "298", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2990470", + "sensor_index": "2990470", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-2 - 0/0-PORT-2-Module Temp", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 18.394, + "sensor_limit": 90, + "sensor_limit_warn": 0, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2990470", + "entPhysicalIndex_measured": "2990081", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2994566", + "sensor_index": "2994566", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-3 - 0/0-PORT-3-Module Temp", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": 20, + "sensor_limit_warn": 0, + "sensor_limit_low": -5, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2994566", + "entPhysicalIndex_measured": "2994177", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3015046", + "sensor_index": "3015046", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-8 - 0/0-PORT-8-Module Temp", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 29.812, + "sensor_limit": 75, + "sensor_limit_warn": 0, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "3015046", + "entPhysicalIndex_measured": "3014657", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.302", + "sensor_index": "302", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-Hotspot0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 25, + "sensor_limit": 85, + "sensor_limit_warn": 75, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "302", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.303", + "sensor_index": "303", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-Hotspot1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 26, + "sensor_limit": 85, + "sensor_limit_warn": 75, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "303", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.304", + "sensor_index": "304", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-AIR_Outlet0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 25, + "sensor_limit": 80, + "sensor_limit_warn": 70, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "304", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.305", + "sensor_index": "305", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-AIR_Outlet1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 26, + "sensor_limit": 80, + "sensor_limit_warn": 70, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "305", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.306", + "sensor_index": "306", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-Inlet", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 18, + "sensor_limit": 68, + "sensor_limit_warn": 60, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "306", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3072390", + "sensor_index": "3072390", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-22 - 0/0-PORT-22-Module Temp", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 31.3, + "sensor_limit": 90, + "sensor_limit_warn": 0, + "sensor_limit_low": -5, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "3072390", + "entPhysicalIndex_measured": "3072001", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.8492", + "sensor_index": "8492", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-DB AIR_Inlet0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 22, + "sensor_limit": 68, + "sensor_limit_warn": 60, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "8492", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.8493", + "sensor_index": "8493", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-DB AIR_Inlet1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 21, + "sensor_limit": 68, + "sensor_limit_warn": 60, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "8493", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.8494", + "sensor_index": "8494", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-DB AIR_Inlet2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 23, + "sensor_limit": 68, + "sensor_limit_warn": 60, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "8494", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.8495", + "sensor_index": "8495", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-DB Hotspot0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 31, + "sensor_limit": 85, + "sensor_limit_warn": 75, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "8495", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.8496", + "sensor_index": "8496", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-DB Hotspot1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 35, + "sensor_limit": 85, + "sensor_limit_warn": 75, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "8496", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.8497", + "sensor_index": "8497", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-DB Hotspot2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 34, + "sensor_limit": 85, + "sensor_limit_warn": 75, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "8497", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.8498", + "sensor_index": "8498", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-DB AIR_Outlet0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 33, + "sensor_limit": 80, + "sensor_limit_warn": 70, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "8498", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.8499", + "sensor_index": "8499", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-DB AIR_Outlet1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 31, + "sensor_limit": 80, + "sensor_limit_warn": 70, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "8499", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.8592", + "sensor_index": "8592", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-DIE_NP0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 37, + "sensor_limit": 110, + "sensor_limit_warn": 100, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "8592", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.8593", + "sensor_index": "8593", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-DIE_NP1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 34, + "sensor_limit": 110, + "sensor_limit_warn": 100, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "8593", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.8594", + "sensor_index": "8594", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-DIE_FabArbiter", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 34, + "sensor_limit": 122, + "sensor_limit_warn": 107, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "8594", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.8595", + "sensor_index": "8595", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-DIE_FIA0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 42, + "sensor_limit": 122, + "sensor_limit_warn": 107, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "8595", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.8596", + "sensor_index": "8596", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-DIE_FIA1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 40, + "sensor_limit": 122, + "sensor_limit_warn": 107, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "8596", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.8597", + "sensor_index": "8597", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-DIE_FabSwitch", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 34, + "sensor_limit": 122, + "sensor_limit_warn": 107, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "8597", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.8599", + "sensor_index": "8599", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-DIE_CPU", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 27, + "sensor_limit": 89, + "sensor_limit_warn": 77, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "8599", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.8600", + "sensor_index": "8600", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-DIE_PCH", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 23, + "sensor_limit": 98, + "sensor_limit_warn": 88, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "8600", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.8601", + "sensor_index": "8601", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-DIE_DIMM0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 23, + "sensor_limit": 85, + "sensor_limit_warn": 80, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "8601", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.8602", + "sensor_index": "8602", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-DIE_DIMM1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 23, + "sensor_limit": 85, + "sensor_limit_warn": 80, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "8602", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.8603", + "sensor_index": "8603", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-Inlet", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 21, + "sensor_limit": 68, + "sensor_limit_warn": 60, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "8603", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.8604", + "sensor_index": "8604", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-Hotspot", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 36, + "sensor_limit": 85, + "sensor_limit_warn": 75, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "8604", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10793", + "sensor_index": "10793", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-VP1P2_ARB", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.202, + "sensor_limit": 1.32, + "sensor_limit_warn": 1.308, + "sensor_limit_low": 1.08, + "sensor_limit_low_warn": 1.092, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10793", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10794", + "sensor_index": "10794", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-P1_2V_LC", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.199, + "sensor_limit": 1.32, + "sensor_limit_warn": 1.308, + "sensor_limit_low": 1.08, + "sensor_limit_low_warn": 1.092, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10794", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10795", + "sensor_index": "10795", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-VP3P3_MB_CAN", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.299, + "sensor_limit": 3.63, + "sensor_limit_warn": 3.594, + "sensor_limit_low": 2.97, + "sensor_limit_low_warn": 3.001, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10795", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10796", + "sensor_index": "10796", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-P1_8V_LC", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.8, + "sensor_limit": 1.98, + "sensor_limit_warn": 1.962, + "sensor_limit_low": 1.62, + "sensor_limit_low_warn": 1.638, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10796", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10797", + "sensor_index": "10797", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-P2_5V_LC", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 2.499, + "sensor_limit": 2.75, + "sensor_limit_warn": 2.725, + "sensor_limit_low": 2.25, + "sensor_limit_low_warn": 2.275, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10797", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10798", + "sensor_index": "10798", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-P1_5V_LC", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.5, + "sensor_limit": 1.65, + "sensor_limit_warn": 1.635, + "sensor_limit_low": 1.35, + "sensor_limit_low_warn": 1.365, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10798", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10799", + "sensor_index": "10799", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-VP0P6_VTT_B_MEM", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.606, + "sensor_limit": 0.66, + "sensor_limit_warn": 0.654, + "sensor_limit_low": 0.54, + "sensor_limit_low_warn": 0.546, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10799", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10800", + "sensor_index": "10800", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-VP1P2_CPU_L", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.21, + "sensor_limit": 1.332, + "sensor_limit_warn": 1.308, + "sensor_limit_low": 1.08, + "sensor_limit_low_warn": 1.092, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10800", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10801", + "sensor_index": "10801", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-P3_3V_LC", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.3, + "sensor_limit": 3.63, + "sensor_limit_warn": 3.597, + "sensor_limit_low": 2.97, + "sensor_limit_low_warn": 3.003, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10801", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10802", + "sensor_index": "10802", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-VP1P5_L", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.5, + "sensor_limit": 1.65, + "sensor_limit_warn": 1.635, + "sensor_limit_low": 1.35, + "sensor_limit_low_warn": 1.365, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10802", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10803", + "sensor_index": "10803", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-VP1P7_L", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.7, + "sensor_limit": 1.87, + "sensor_limit_warn": 1.853, + "sensor_limit_low": 1.53, + "sensor_limit_low_warn": 1.547, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10803", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10804", + "sensor_index": "10804", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-VP3P3_CPU_L", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.3, + "sensor_limit": 3.63, + "sensor_limit_warn": 3.597, + "sensor_limit_low": 2.97, + "sensor_limit_low_warn": 3.003, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10804", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10805", + "sensor_index": "10805", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-VP1P05_LCCPU", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.05, + "sensor_limit": 1.155, + "sensor_limit_warn": 1.144, + "sensor_limit_low": 0.945, + "sensor_limit_low_warn": 0.955, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10805", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10806", + "sensor_index": "10806", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-VP1P8_VCCIN_L", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.787, + "sensor_limit": 1.98, + "sensor_limit_warn": 1.96, + "sensor_limit_low": 1.62, + "sensor_limit_low_warn": 1.638, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10806", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10807", + "sensor_index": "10807", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-VP1P3_L", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.3, + "sensor_limit": 1.43, + "sensor_limit_warn": 1.417, + "sensor_limit_low": 1.17, + "sensor_limit_low_warn": 1.183, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10807", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10808", + "sensor_index": "10808", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-VP0P6_VTT_A_MEM", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.606, + "sensor_limit": 0.66, + "sensor_limit_warn": 0.654, + "sensor_limit_low": 0.54, + "sensor_limit_low_warn": 0.546, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10808", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10809", + "sensor_index": "10809", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-VP1P0_ARB_VDD", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.999, + "sensor_limit": 1.1, + "sensor_limit_warn": 1.09, + "sensor_limit_low": 0.9, + "sensor_limit_low_warn": 0.91, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10809", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10810", + "sensor_index": "10810", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Motherboard - 0/0-P1_0V_LC", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.999, + "sensor_limit": 1.1, + "sensor_limit_warn": 1.09, + "sensor_limit_low": 0.9, + "sensor_limit_low_warn": 0.909, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10810", + "entPhysicalIndex_measured": "8222", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10811", + "sensor_index": "10811", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP1P0_MGTAVCC_LF0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": 1.1, + "sensor_limit_warn": 1.09, + "sensor_limit_low": 0.9, + "sensor_limit_low_warn": 0.91, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10811", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10812", + "sensor_index": "10812", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP1P2_LF_IPU", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.199, + "sensor_limit": 1.32, + "sensor_limit_warn": 1.308, + "sensor_limit_low": 1.08, + "sensor_limit_low_warn": 1.092, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10812", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10813", + "sensor_index": "10813", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-P1_8V0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.8, + "sensor_limit": 1.981, + "sensor_limit_warn": 1.962, + "sensor_limit_low": 1.62, + "sensor_limit_low_warn": 1.638, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10813", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10814", + "sensor_index": "10814", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-P3_3V0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.299, + "sensor_limit": 3.63, + "sensor_limit_warn": 3.597, + "sensor_limit_low": 2.97, + "sensor_limit_low_warn": 3.003, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10814", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10815", + "sensor_index": "10815", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-P2_5V0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 2.5, + "sensor_limit": 2.75, + "sensor_limit_warn": 2.725, + "sensor_limit_low": 2.25, + "sensor_limit_low_warn": 2.275, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10815", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10816", + "sensor_index": "10816", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-P7_0V0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 6.999, + "sensor_limit": 7.7, + "sensor_limit_warn": 7.63, + "sensor_limit_low": 6.3, + "sensor_limit_low_warn": 6.37, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10816", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10817", + "sensor_index": "10817", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-P5_0V0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 5, + "sensor_limit": 5.5, + "sensor_limit_warn": 5.45, + "sensor_limit_low": 4.5, + "sensor_limit_low_warn": 4.55, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10817", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10818", + "sensor_index": "10818", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-CS4343_VP0P9", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.9, + "sensor_limit": 0.99, + "sensor_limit_warn": 0.981, + "sensor_limit_low": 0.81, + "sensor_limit_low_warn": 0.819, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10818", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10819", + "sensor_index": "10819", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-CS4343_VP1P8", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.799, + "sensor_limit": 1.98, + "sensor_limit_warn": 1.962, + "sensor_limit_low": 1.62, + "sensor_limit_low_warn": 1.637, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10819", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10820", + "sensor_index": "10820", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-GB_VP1P0_DVDD", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": 1.1, + "sensor_limit_warn": 1.09, + "sensor_limit_low": 0.9, + "sensor_limit_low_warn": 0.91, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10820", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10821", + "sensor_index": "10821", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-GB_VP1P0_AVDD", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.999, + "sensor_limit": 1.1, + "sensor_limit_warn": 1.095, + "sensor_limit_low": 0.9, + "sensor_limit_low_warn": 0.91, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10821", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10822", + "sensor_index": "10822", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP1P0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.999, + "sensor_limit": 1.1, + "sensor_limit_warn": 1.09, + "sensor_limit_low": 0.9, + "sensor_limit_low_warn": 0.91, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10822", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10823", + "sensor_index": "10823", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-MACSEC_10G_AVDD", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": 1.1, + "sensor_limit_warn": 1.095, + "sensor_limit_low": 0.9, + "sensor_limit_low_warn": 0.91, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10823", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10824", + "sensor_index": "10824", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-MACSEC_100G_AVDD", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": 1.1, + "sensor_limit_warn": 1.09, + "sensor_limit_low": 0.9, + "sensor_limit_low_warn": 0.91, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10824", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10825", + "sensor_index": "10825", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-MACSEC_100G_VP1P0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.999, + "sensor_limit": 1.1, + "sensor_limit_warn": 1.09, + "sensor_limit_low": 0.9, + "sensor_limit_low_warn": 0.91, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10825", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10826", + "sensor_index": "10826", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP1P8_NP1_IO", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.799, + "sensor_limit": 1.98, + "sensor_limit_warn": 1.962, + "sensor_limit_low": 1.62, + "sensor_limit_low_warn": 1.638, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10826", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10827", + "sensor_index": "10827", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP1P5_NP1_IO", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.499, + "sensor_limit": 1.65, + "sensor_limit_warn": 1.635, + "sensor_limit_low": 1.35, + "sensor_limit_low_warn": 1.365, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10827", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10828", + "sensor_index": "10828", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP1P0_NP1_CORE", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.979, + "sensor_limit": 1.1, + "sensor_limit_warn": 1.09, + "sensor_limit_low": 0.9, + "sensor_limit_low_warn": 0.91, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10828", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10829", + "sensor_index": "10829", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP0P75_NP1_VTT", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.748, + "sensor_limit": 0.825, + "sensor_limit_warn": 0.817, + "sensor_limit_low": 0.675, + "sensor_limit_low_warn": 0.682, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10829", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10830", + "sensor_index": "10830", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP2P5_TS1_VDDH", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 2.499, + "sensor_limit": 2.35, + "sensor_limit_warn": 2.725, + "sensor_limit_low": 2.25, + "sensor_limit_low_warn": 2.275, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10830", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10831", + "sensor_index": "10831", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP1P5_TS1_VDDH", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.5, + "sensor_limit": 1.65, + "sensor_limit_warn": 1.635, + "sensor_limit_low": 1.35, + "sensor_limit_low_warn": 1.365, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10831", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10832", + "sensor_index": "10832", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP1P0_TS1_AVDD", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.999, + "sensor_limit": 1.1, + "sensor_limit_warn": 1.09, + "sensor_limit_low": 0.9, + "sensor_limit_low_warn": 0.91, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10832", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10833", + "sensor_index": "10833", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP0P9_TS1_VDD", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.924, + "sensor_limit": 0.99, + "sensor_limit_warn": 0.98, + "sensor_limit_low": 0.81, + "sensor_limit_low_warn": 0.819, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10833", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10834", + "sensor_index": "10834", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP0P75_TS1_VTT", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.75, + "sensor_limit": 0.825, + "sensor_limit_warn": 0.817, + "sensor_limit_low": 0.675, + "sensor_limit_low_warn": 0.682, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10834", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10835", + "sensor_index": "10835", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP1P0_TS1_PLVDDD", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": 1.1, + "sensor_limit_warn": 1.09, + "sensor_limit_low": 0.9, + "sensor_limit_low_warn": 0.91, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10835", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10836", + "sensor_index": "10836", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP1P0_SM15_PLVDD", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.999, + "sensor_limit": 1.1, + "sensor_limit_warn": 1.09, + "sensor_limit_low": 0.9, + "sensor_limit_low_warn": 0.91, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10836", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10837", + "sensor_index": "10837", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP0P9_SM15_VDD", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.825, + "sensor_limit": 0.99, + "sensor_limit_warn": 0.981, + "sensor_limit_low": 0.81, + "sensor_limit_low_warn": 0.819, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10837", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10838", + "sensor_index": "10838", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP1P0_SM15_AVDD", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.998, + "sensor_limit": 1.1, + "sensor_limit_warn": 1.09, + "sensor_limit_low": 0.9, + "sensor_limit_low_warn": 0.91, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10838", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10839", + "sensor_index": "10839", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP0P9_PCIE", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.9, + "sensor_limit": 0.99, + "sensor_limit_warn": 0.981, + "sensor_limit_low": 0.81, + "sensor_limit_low_warn": 0.819, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10839", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10840", + "sensor_index": "10840", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP1P8_TCAM_IO", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.8, + "sensor_limit": 1.98, + "sensor_limit_warn": 1.962, + "sensor_limit_low": 1.62, + "sensor_limit_low_warn": 1.638, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10840", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10841", + "sensor_index": "10841", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP0P9_TCAM_VDDS", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.899, + "sensor_limit": 0.99, + "sensor_limit_warn": 0.981, + "sensor_limit_low": 0.81, + "sensor_limit_low_warn": 0.819, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10841", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10842", + "sensor_index": "10842", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP0P9_TCAM_VTT", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.9, + "sensor_limit": 0.99, + "sensor_limit_warn": 0.981, + "sensor_limit_low": 0.81, + "sensor_limit_low_warn": 0.819, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10842", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10843", + "sensor_index": "10843", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP0P9_TCAM_CORE", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.9, + "sensor_limit": 0.99, + "sensor_limit_warn": 0.981, + "sensor_limit_low": 0.81, + "sensor_limit_low_warn": 0.819, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10843", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10844", + "sensor_index": "10844", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP3P3_SUPR", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.299, + "sensor_limit": 3.63, + "sensor_limit_warn": 3.597, + "sensor_limit_low": 2.97, + "sensor_limit_low_warn": 3.003, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10844", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10845", + "sensor_index": "10845", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP1P8_ZL_CORE", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.8, + "sensor_limit": 1.98, + "sensor_limit_warn": 1.96, + "sensor_limit_low": 1.62, + "sensor_limit_low_warn": 1.638, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10845", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10846", + "sensor_index": "10846", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP3P3_ZL_VDD", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.3, + "sensor_limit": 3.63, + "sensor_limit_warn": 3.597, + "sensor_limit_low": 2.97, + "sensor_limit_low_warn": 3.003, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10846", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10847", + "sensor_index": "10847", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP3P3_DB_CAN", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.28, + "sensor_limit": 3.63, + "sensor_limit_warn": 3.597, + "sensor_limit_low": 2.97, + "sensor_limit_low_warn": 3.003, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10847", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10848", + "sensor_index": "10848", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP1P8_NP0_IO", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.799, + "sensor_limit": 1.98, + "sensor_limit_warn": 1.962, + "sensor_limit_low": 1.62, + "sensor_limit_low_warn": 1.638, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10848", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10849", + "sensor_index": "10849", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP1P5_NP0_IO", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.5, + "sensor_limit": 1.65, + "sensor_limit_warn": 1.634, + "sensor_limit_low": 1.35, + "sensor_limit_low_warn": 1.365, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10849", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10850", + "sensor_index": "10850", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP1P0_NP0_CORE", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.977, + "sensor_limit": 1.1, + "sensor_limit_warn": 1.09, + "sensor_limit_low": 0.9, + "sensor_limit_low_warn": 0.91, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10850", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10851", + "sensor_index": "10851", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP0P75_NP0_VTT", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.749, + "sensor_limit": 0.825, + "sensor_limit_warn": 0.817, + "sensor_limit_low": 0.675, + "sensor_limit_low_warn": 0.682, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10851", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10852", + "sensor_index": "10852", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP2P5_TS0_VDDH", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 2.51, + "sensor_limit": 2.75, + "sensor_limit_warn": 2.725, + "sensor_limit_low": 2.25, + "sensor_limit_low_warn": 2.275, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10852", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10853", + "sensor_index": "10853", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP1P5_TS0_VDDH", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.5, + "sensor_limit": 1.65, + "sensor_limit_warn": 1.635, + "sensor_limit_low": 1.35, + "sensor_limit_low_warn": 1.365, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10853", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10854", + "sensor_index": "10854", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP1P0_TS0_AVDD", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": 1.1, + "sensor_limit_warn": 1.09, + "sensor_limit_low": 0.9, + "sensor_limit_low_warn": 0.91, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10854", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10855", + "sensor_index": "10855", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP0P9_TS0_VDD", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.925, + "sensor_limit": 0.99, + "sensor_limit_warn": 0.981, + "sensor_limit_low": 0.81, + "sensor_limit_low_warn": 0.819, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10855", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10856", + "sensor_index": "10856", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP0P75_TS0_VTT", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.75, + "sensor_limit": 0.825, + "sensor_limit_warn": 0.817, + "sensor_limit_low": 0.675, + "sensor_limit_low_warn": 0.682, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10856", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10857", + "sensor_index": "10857", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-VP1P0_TS0_PLVDDD", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.999, + "sensor_limit": 1.1, + "sensor_limit_warn": 1.09, + "sensor_limit_low": 0.9, + "sensor_limit_low_warn": 0.91, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10857", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.10858", + "sensor_index": "10858", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-Daughterboard - 0/0-Hot Swap VS", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 12.021, + "sensor_limit": 13.2, + "sensor_limit_warn": 12.96, + "sensor_limit_low": 10.8, + "sensor_limit_low_warn": 11.4, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10858", + "entPhysicalIndex_measured": "8223", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2375940", + "sensor_index": "2375940", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/PT0-PM0 - 0/PT0-PM0-Input Voltage", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 232.5, + "sensor_limit": 285, + "sensor_limit_warn": 270, + "sensor_limit_low": 15, + "sensor_limit_low_warn": 30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2375940", + "entPhysicalIndex_measured": "2375681", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2375941", + "sensor_index": "2375941", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/PT0-PM0 - 0/PT0-PM0-Output Voltage", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 12.043, + "sensor_limit": 14.25, + "sensor_limit_warn": 13.5, + "sensor_limit_low": 0.75, + "sensor_limit_low_warn": 1.5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2375941", + "entPhysicalIndex_measured": "2375681", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2380036", + "sensor_index": "2380036", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/PT0-PM1 - 0/PT0-PM1-Input Voltage", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 232.5, + "sensor_limit": 285, + "sensor_limit_warn": 270, + "sensor_limit_low": 15, + "sensor_limit_low_warn": 30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2380036", + "entPhysicalIndex_measured": "2379777", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2380037", + "sensor_index": "2380037", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/PT0-PM1 - 0/PT0-PM1-Output Voltage", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 12.044, + "sensor_limit": 14.25, + "sensor_limit_warn": 13.5, + "sensor_limit_low": 0.75, + "sensor_limit_low_warn": 1.5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2380037", + "entPhysicalIndex_measured": "2379777", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2601", + "sensor_index": "2601", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-P5V", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 5.002, + "sensor_limit": 5.5, + "sensor_limit_warn": 5.45, + "sensor_limit_low": 4.5, + "sensor_limit_low_warn": 4.55, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2601", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2602", + "sensor_index": "2602", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-P7V", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 6.999, + "sensor_limit": 7.7, + "sensor_limit_warn": 7.63, + "sensor_limit_low": 6.3, + "sensor_limit_low_warn": 6.37, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2602", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2603", + "sensor_index": "2603", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-P3_3V_AUX", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.299, + "sensor_limit": 3.63, + "sensor_limit_warn": 3.597, + "sensor_limit_low": 2.97, + "sensor_limit_low_warn": 3.003, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2603", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2604", + "sensor_index": "2604", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-P1_8V", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.799, + "sensor_limit": 1.98, + "sensor_limit_warn": 1.962, + "sensor_limit_low": 1.62, + "sensor_limit_low_warn": 1.638, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2604", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2605", + "sensor_index": "2605", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-P2_5V", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 2.5, + "sensor_limit": 2.75, + "sensor_limit_warn": 2.725, + "sensor_limit_low": 2.25, + "sensor_limit_low_warn": 2.275, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2605", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2606", + "sensor_index": "2606", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-P1_0V_ALDRIN_CORE", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.985, + "sensor_limit": 1.1, + "sensor_limit_warn": 1.09, + "sensor_limit_low": 0.9, + "sensor_limit_low_warn": 0.91, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2606", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2607", + "sensor_index": "2607", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-VP1P2_CPU_C", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.211, + "sensor_limit": 1.32, + "sensor_limit_warn": 1.308, + "sensor_limit_low": 1.08, + "sensor_limit_low_warn": 1.092, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2607", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2608", + "sensor_index": "2608", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-P3_3V", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.299, + "sensor_limit": 3.63, + "sensor_limit_warn": 3.597, + "sensor_limit_low": 2.97, + "sensor_limit_low_warn": 3.003, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2608", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2609", + "sensor_index": "2609", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-VP1P5_C", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.5, + "sensor_limit": 1.65, + "sensor_limit_warn": 1.635, + "sensor_limit_low": 1.35, + "sensor_limit_low_warn": 1.365, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2609", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2610", + "sensor_index": "2610", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-VP1P7_C", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.699, + "sensor_limit": 1.87, + "sensor_limit_warn": 1.853, + "sensor_limit_low": 1.53, + "sensor_limit_low_warn": 1.547, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2610", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2611", + "sensor_index": "2611", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-VP3P3_CPU_C", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.297, + "sensor_limit": 3.63, + "sensor_limit_warn": 3.597, + "sensor_limit_low": 2.97, + "sensor_limit_low_warn": 3.003, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2611", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2612", + "sensor_index": "2612", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-VP1P05_CPU_C", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.052, + "sensor_limit": 1.155, + "sensor_limit_warn": 1.144, + "sensor_limit_low": 0.945, + "sensor_limit_low_warn": 0.955, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2612", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2613", + "sensor_index": "2613", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-VP1P8_VCCIN_C", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.788, + "sensor_limit": 1.98, + "sensor_limit_warn": 1.962, + "sensor_limit_low": 1.62, + "sensor_limit_low_warn": 1.638, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2613", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2614", + "sensor_index": "2614", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-VP1P3_C", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.3, + "sensor_limit": 1.43, + "sensor_limit_warn": 1.417, + "sensor_limit_low": 1.17, + "sensor_limit_low_warn": 1.183, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2614", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2615", + "sensor_index": "2615", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-VP0P6_VTT_A_MEM_C", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.604, + "sensor_limit": 0.66, + "sensor_limit_warn": 0.654, + "sensor_limit_low": 0.54, + "sensor_limit_low_warn": 0.546, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2615", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2616", + "sensor_index": "2616", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-VP1P8_OCXO", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.799, + "sensor_limit": 1.98, + "sensor_limit_warn": 1.962, + "sensor_limit_low": 1.62, + "sensor_limit_low_warn": 1.638, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2616", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2617", + "sensor_index": "2617", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-VP3P3_OCXO", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.3, + "sensor_limit": 3.63, + "sensor_limit_warn": 3.597, + "sensor_limit_low": 2.97, + "sensor_limit_low_warn": 3.003, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2617", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2618", + "sensor_index": "2618", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-P0_9V", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.9, + "sensor_limit": 0.99, + "sensor_limit_warn": 0.981, + "sensor_limit_low": 0.81, + "sensor_limit_low_warn": 0.819, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2618", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2619", + "sensor_index": "2619", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-P1V", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": 1.1, + "sensor_limit_warn": 1.09, + "sensor_limit_low": 0.9, + "sensor_limit_low_warn": 0.91, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2619", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2620", + "sensor_index": "2620", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-ALD_P1P8_LDO", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.8, + "sensor_limit": 1.98, + "sensor_limit_warn": 1.962, + "sensor_limit_low": 1.62, + "sensor_limit_low_warn": 1.638, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2620", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2621", + "sensor_index": "2621", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-OMG_P1P8_LDO", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.8, + "sensor_limit": 1.98, + "sensor_limit_warn": 1.962, + "sensor_limit_low": 1.62, + "sensor_limit_low_warn": 1.638, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2621", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2622", + "sensor_index": "2622", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-P1_2V", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.2, + "sensor_limit": 1.32, + "sensor_limit_warn": 1.308, + "sensor_limit_low": 1.08, + "sensor_limit_low_warn": 1.092, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2622", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2623", + "sensor_index": "2623", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-VP0P6_VTT_B_MEM_C", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.605, + "sensor_limit": 0.66, + "sensor_limit_warn": 0.654, + "sensor_limit_low": 0.54, + "sensor_limit_low_warn": 0.546, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2623", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2624", + "sensor_index": "2624", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-VP1P2_MGTAVTT_OMG", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.199, + "sensor_limit": 1.32, + "sensor_limit_warn": 1.308, + "sensor_limit_low": 1.08, + "sensor_limit_low_warn": 1.092, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2624", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2625", + "sensor_index": "2625", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-P1_0V_ALDRIN_SD_AVDD", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": 1.1, + "sensor_limit_warn": 1.09, + "sensor_limit_low": 0.9, + "sensor_limit_low_warn": 0.91, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2625", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2626", + "sensor_index": "2626", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-VP1P0_MGTAVCC_IPU", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.999, + "sensor_limit": 1.1, + "sensor_limit_warn": 1.09, + "sensor_limit_low": 0.9, + "sensor_limit_low_warn": 0.91, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2626", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2627", + "sensor_index": "2627", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-P1_5V", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.5, + "sensor_limit": 1.65, + "sensor_limit_warn": 1.635, + "sensor_limit_low": 1.35, + "sensor_limit_low_warn": 1.365, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2627", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2628", + "sensor_index": "2628", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-VP1P0_MGTAVCC_OMG", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": 1.1, + "sensor_limit_warn": 1.09, + "sensor_limit_low": 0.9, + "sensor_limit_low_warn": 0.91, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2628", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2629", + "sensor_index": "2629", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-VP1P2_MGTAVTT_IPU", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.2, + "sensor_limit": 1.32, + "sensor_limit_warn": 1.308, + "sensor_limit_low": 1.08, + "sensor_limit_low_warn": 1.092, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2629", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2630", + "sensor_index": "2630", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-VP1P8_MGTVCCAUX_IPU", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.799, + "sensor_limit": 2.068, + "sensor_limit_warn": 2.03, + "sensor_limit_low": 1.62, + "sensor_limit_low_warn": 1.638, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2630", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2631", + "sensor_index": "2631", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/RSP0-Motherboard - 0/RSP0-Hot Swap VS", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 12.049, + "sensor_limit": 13.2, + "sensor_limit_warn": 12.96, + "sensor_limit_low": 10.8, + "sensor_limit_low_warn": 11.4, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2631", + "entPhysicalIndex_measured": "30", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2990320", + "sensor_index": "2990320", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-2 - 0/0-PORT-2-3.3 V", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.38, + "sensor_limit": 3.6, + "sensor_limit_warn": 0, + "sensor_limit_low": 3, + "sensor_limit_low_warn": 0, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2990320", + "entPhysicalIndex_measured": "2990081", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2994416", + "sensor_index": "2994416", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-3 - 0/0-PORT-3-3.3 V", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": 0, + "sensor_limit_warn": 0, + "sensor_limit_low": 0, + "sensor_limit_low_warn": 0, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2994416", + "entPhysicalIndex_measured": "2994177", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3014896", + "sensor_index": "3014896", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-8 - 0/0-PORT-8-3.3 V", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.359, + "sensor_limit": 3.701, + "sensor_limit_warn": 0, + "sensor_limit_low": 2.897, + "sensor_limit_low_warn": 0, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "3014896", + "entPhysicalIndex_measured": "3014657", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3072240", + "sensor_index": "3072240", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "0/0-PORT-22 - 0/0-PORT-22-3.3 V", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.265, + "sensor_limit": 3.8, + "sensor_limit_warn": 0, + "sensor_limit_low": 2.7, + "sensor_limit_low_warn": 0, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "3072240", + "entPhysicalIndex_measured": "3072001", + "sensor_prev": null, + "user_func": null, + "state_name": null + } + ], + "state_indexes": [ + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "off (other)", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 2 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "on", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "off (admin)", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 1 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "off (denied)", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 2 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "off (environmental)", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 2 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "off (temperature)", + "state_draw_graph": 0, + "state_value": 6, + "state_generic_value": 2 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "off (fan)", + "state_draw_graph": 0, + "state_value": 7, + "state_generic_value": 2 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "failed", + "state_draw_graph": 0, + "state_value": 8, + "state_generic_value": 2 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "on (fan failed)", + "state_draw_graph": 0, + "state_value": 9, + "state_generic_value": 1 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "off (cooling)", + "state_draw_graph": 0, + "state_value": 10, + "state_generic_value": 2 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "off (connector rating)", + "state_draw_graph": 0, + "state_value": 11, + "state_generic_value": 2 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "on (no inline power)", + "state_draw_graph": 0, + "state_value": 12, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "notKnown", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 3 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "disabled", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "initialization", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "negotiation", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "standbyCold", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "standbyColdConfig", + "state_draw_graph": 0, + "state_value": 6, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "standbyColdFileSys", + "state_draw_graph": 0, + "state_value": 7, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "standbyColdBulk", + "state_draw_graph": 0, + "state_value": 8, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "standbyHot", + "state_draw_graph": 0, + "state_value": 9, + "state_generic_value": 0 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "activeFast", + "state_draw_graph": 0, + "state_value": 10, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "activeDrain", + "state_draw_graph": 0, + "state_value": 11, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "activePreconfig", + "state_draw_graph": 0, + "state_value": 12, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "activePostconfig", + "state_draw_graph": 0, + "state_value": 13, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "active", + "state_draw_graph": 0, + "state_value": 14, + "state_generic_value": 0 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "activeExtraload", + "state_draw_graph": 0, + "state_value": 15, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "activeHandback", + "state_draw_graph": 0, + "state_value": 16, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "notKnown", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 3 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "disabled", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "initialization", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "negotiation", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "standbyCold", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "standbyColdConfig", + "state_draw_graph": 0, + "state_value": 6, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "standbyColdFileSys", + "state_draw_graph": 0, + "state_value": 7, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "standbyColdBulk", + "state_draw_graph": 0, + "state_value": 8, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "standbyHot", + "state_draw_graph": 0, + "state_value": 9, + "state_generic_value": 0 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "activeFast", + "state_draw_graph": 0, + "state_value": 10, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "activeDrain", + "state_draw_graph": 0, + "state_value": 11, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "activePreconfig", + "state_draw_graph": 0, + "state_value": 12, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "activePostconfig", + "state_draw_graph": 0, + "state_value": 13, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "active", + "state_draw_graph": 0, + "state_value": 14, + "state_generic_value": 0 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "activeExtraload", + "state_draw_graph": 0, + "state_value": 15, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "activeHandback", + "state_draw_graph": 0, + "state_value": 16, + "state_generic_value": 1 + } + ] + } + }, + "bgp-peers": { + "discovery": { + "bgpPeers": [ + { + "astext": "", + "bgpPeerIdentifier": "10.246.0.1", + "bgpPeerRemoteAs": 65056, + "bgpPeerState": "idle", + "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpLocalAddr": "0.0.0.0", + "bgpPeerRemoteAddr": "0.0.0.0", + "bgpPeerDescr": "", + "bgpPeerInUpdates": 0, + "bgpPeerOutUpdates": 0, + "bgpPeerInTotalMessages": 0, + "bgpPeerOutTotalMessages": 0, + "bgpPeerFsmEstablishedTime": 0, + "bgpPeerInUpdateElapsedTime": 0, + "context_name": "", + "bgpLocalAs": 65056, + "vrfLocalAs": null + }, + { + "astext": "", + "bgpPeerIdentifier": "10.246.0.4", + "bgpPeerRemoteAs": 65056, + "bgpPeerState": "idle", + "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpLocalAddr": "0.0.0.0", + "bgpPeerRemoteAddr": "0.0.0.0", + "bgpPeerDescr": "", + "bgpPeerInUpdates": 0, + "bgpPeerOutUpdates": 0, + "bgpPeerInTotalMessages": 0, + "bgpPeerOutTotalMessages": 0, + "bgpPeerFsmEstablishedTime": 0, + "bgpPeerInUpdateElapsedTime": 0, + "context_name": "", + "bgpLocalAs": 65056, + "vrfLocalAs": null + } + ], + "bgpPeers_cbgp": [ + { + "bgpPeerIdentifier": "10.246.0.1", + "afi": "ipv4", + "safi": "vpn", + "AcceptedPrefixes": 0, + "DeniedPrefixes": 0, + "PrefixAdminLimit": 0, + "PrefixThreshold": 0, + "PrefixClearThreshold": 0, + "AdvertisedPrefixes": 0, + "SuppressedPrefixes": 0, + "WithdrawnPrefixes": 0, + "AcceptedPrefixes_delta": 0, + "AcceptedPrefixes_prev": 0, + "DeniedPrefixes_delta": 0, + "DeniedPrefixes_prev": 0, + "AdvertisedPrefixes_delta": 0, + "AdvertisedPrefixes_prev": 0, + "SuppressedPrefixes_delta": 0, + "SuppressedPrefixes_prev": 0, + "WithdrawnPrefixes_delta": 0, + "WithdrawnPrefixes_prev": 0, + "context_name": "" + }, + { + "bgpPeerIdentifier": "10.246.0.1", + "afi": "ipv6", + "safi": "vpn", + "AcceptedPrefixes": 0, + "DeniedPrefixes": 0, + "PrefixAdminLimit": 0, + "PrefixThreshold": 0, + "PrefixClearThreshold": 0, + "AdvertisedPrefixes": 0, + "SuppressedPrefixes": 0, + "WithdrawnPrefixes": 0, + "AcceptedPrefixes_delta": 0, + "AcceptedPrefixes_prev": 0, + "DeniedPrefixes_delta": 0, + "DeniedPrefixes_prev": 0, + "AdvertisedPrefixes_delta": 0, + "AdvertisedPrefixes_prev": 0, + "SuppressedPrefixes_delta": 0, + "SuppressedPrefixes_prev": 0, + "WithdrawnPrefixes_delta": 0, + "WithdrawnPrefixes_prev": 0, + "context_name": "" + }, + { + "bgpPeerIdentifier": "10.246.0.4", + "afi": "ipv4", + "safi": "vpn", + "AcceptedPrefixes": 0, + "DeniedPrefixes": 0, + "PrefixAdminLimit": 0, + "PrefixThreshold": 0, + "PrefixClearThreshold": 0, + "AdvertisedPrefixes": 0, + "SuppressedPrefixes": 0, + "WithdrawnPrefixes": 0, + "AcceptedPrefixes_delta": 0, + "AcceptedPrefixes_prev": 0, + "DeniedPrefixes_delta": 0, + "DeniedPrefixes_prev": 0, + "AdvertisedPrefixes_delta": 0, + "AdvertisedPrefixes_prev": 0, + "SuppressedPrefixes_delta": 0, + "SuppressedPrefixes_prev": 0, + "WithdrawnPrefixes_delta": 0, + "WithdrawnPrefixes_prev": 0, + "context_name": "" + }, + { + "bgpPeerIdentifier": "10.246.0.4", + "afi": "ipv6", + "safi": "vpn", + "AcceptedPrefixes": 0, + "DeniedPrefixes": 0, + "PrefixAdminLimit": 0, + "PrefixThreshold": 0, + "PrefixClearThreshold": 0, + "AdvertisedPrefixes": 0, + "SuppressedPrefixes": 0, + "WithdrawnPrefixes": 0, + "AcceptedPrefixes_delta": 0, + "AcceptedPrefixes_prev": 0, + "DeniedPrefixes_delta": 0, + "DeniedPrefixes_prev": 0, + "AdvertisedPrefixes_delta": 0, + "AdvertisedPrefixes_prev": 0, + "SuppressedPrefixes_delta": 0, + "SuppressedPrefixes_prev": 0, + "WithdrawnPrefixes_delta": 0, + "WithdrawnPrefixes_prev": 0, + "context_name": "" + } + ] + }, + "poller": { + "bgpPeers": [ + { + "astext": "", + "bgpPeerIdentifier": "10.246.0.1", + "bgpPeerRemoteAs": 65056, + "bgpPeerState": "established", + "bgpPeerAdminStatus": "start", + "bgpPeerLastErrorCode": 0, + "bgpPeerLastErrorSubCode": 0, + "bgpPeerLastErrorText": null, + "bgpLocalAddr": "10.246.0.3", + "bgpPeerRemoteAddr": "0.0.0.0", + "bgpPeerDescr": "", + "bgpPeerInUpdates": 68, + "bgpPeerOutUpdates": 31, + "bgpPeerInTotalMessages": 360026, + "bgpPeerOutTotalMessages": 360018, + "bgpPeerFsmEstablishedTime": 5399904, + "bgpPeerInUpdateElapsedTime": 1028915, + "context_name": "", + "bgpLocalAs": 65056, + "vrfLocalAs": null + }, + { + "astext": "", + "bgpPeerIdentifier": "10.246.0.4", + "bgpPeerRemoteAs": 65056, + "bgpPeerState": "idle", + "bgpPeerAdminStatus": "start", + "bgpPeerLastErrorCode": 0, + "bgpPeerLastErrorSubCode": 0, + "bgpPeerLastErrorText": null, + "bgpLocalAddr": "0.0.0.0", + "bgpPeerRemoteAddr": "0.0.0.0", + "bgpPeerDescr": "", + "bgpPeerInUpdates": 0, + "bgpPeerOutUpdates": 0, + "bgpPeerInTotalMessages": 0, + "bgpPeerOutTotalMessages": 0, + "bgpPeerFsmEstablishedTime": 0, + "bgpPeerInUpdateElapsedTime": 0, + "context_name": "", + "bgpLocalAs": 65056, + "vrfLocalAs": null + } + ], + "bgpPeers_cbgp": [ + { + "bgpPeerIdentifier": "10.246.0.1", + "afi": "ipv4", + "safi": "vpn", + "AcceptedPrefixes": 5, + "DeniedPrefixes": 0, + "PrefixAdminLimit": 2097152, + "PrefixThreshold": 75, + "PrefixClearThreshold": 75, + "AdvertisedPrefixes": 12, + "SuppressedPrefixes": 0, + "WithdrawnPrefixes": 2, + "AcceptedPrefixes_delta": 5, + "AcceptedPrefixes_prev": 0, + "DeniedPrefixes_delta": 0, + "DeniedPrefixes_prev": 0, + "AdvertisedPrefixes_delta": 12, + "AdvertisedPrefixes_prev": 0, + "SuppressedPrefixes_delta": 0, + "SuppressedPrefixes_prev": 0, + "WithdrawnPrefixes_delta": 2, + "WithdrawnPrefixes_prev": 0, + "context_name": "" + }, + { + "bgpPeerIdentifier": "10.246.0.1", + "afi": "ipv6", + "safi": "vpn", + "AcceptedPrefixes": 5, + "DeniedPrefixes": 0, + "PrefixAdminLimit": 2097152, + "PrefixThreshold": 75, + "PrefixClearThreshold": 75, + "AdvertisedPrefixes": 12, + "SuppressedPrefixes": 0, + "WithdrawnPrefixes": 2, + "AcceptedPrefixes_delta": 5, + "AcceptedPrefixes_prev": 0, + "DeniedPrefixes_delta": 0, + "DeniedPrefixes_prev": 0, + "AdvertisedPrefixes_delta": 12, + "AdvertisedPrefixes_prev": 0, + "SuppressedPrefixes_delta": 0, + "SuppressedPrefixes_prev": 0, + "WithdrawnPrefixes_delta": 2, + "WithdrawnPrefixes_prev": 0, + "context_name": "" + }, + { + "bgpPeerIdentifier": "10.246.0.4", + "afi": "ipv4", + "safi": "vpn", + "AcceptedPrefixes": 0, + "DeniedPrefixes": 0, + "PrefixAdminLimit": 2097152, + "PrefixThreshold": 75, + "PrefixClearThreshold": 75, + "AdvertisedPrefixes": 0, + "SuppressedPrefixes": 0, + "WithdrawnPrefixes": 0, + "AcceptedPrefixes_delta": 0, + "AcceptedPrefixes_prev": 0, + "DeniedPrefixes_delta": 0, + "DeniedPrefixes_prev": 0, + "AdvertisedPrefixes_delta": 0, + "AdvertisedPrefixes_prev": 0, + "SuppressedPrefixes_delta": 0, + "SuppressedPrefixes_prev": 0, + "WithdrawnPrefixes_delta": 0, + "WithdrawnPrefixes_prev": 0, + "context_name": "" + }, + { + "bgpPeerIdentifier": "10.246.0.4", + "afi": "ipv6", + "safi": "vpn", + "AcceptedPrefixes": 0, + "DeniedPrefixes": 0, + "PrefixAdminLimit": 2097152, + "PrefixThreshold": 75, + "PrefixClearThreshold": 75, + "AdvertisedPrefixes": 0, + "SuppressedPrefixes": 0, + "WithdrawnPrefixes": 0, + "AcceptedPrefixes_delta": 0, + "AcceptedPrefixes_prev": 0, + "DeniedPrefixes_delta": 0, + "DeniedPrefixes_prev": 0, + "AdvertisedPrefixes_delta": 0, + "AdvertisedPrefixes_prev": 0, + "SuppressedPrefixes_delta": 0, + "SuppressedPrefixes_prev": 0, + "WithdrawnPrefixes_delta": 0, + "WithdrawnPrefixes_prev": 0, + "context_name": "" + } + ] + } + }, + "mempools": { + "discovery": { + "mempools": [ + { + "mempool_index": "96.1", + "entPhysicalIndex": 96, + "mempool_type": "cemp", + "mempool_class": "system", + "mempool_precision": 1, + "mempool_descr": "0/RSP0-Virtual Processor For Admin - Processor", + "mempool_perc": 41, + "mempool_perc_oid": null, + "mempool_used": 805801984, + "mempool_used_oid": ".1.3.6.1.4.1.9.9.221.1.1.1.1.18.96.1", + "mempool_free": 1180704768, + "mempool_free_oid": ".1.3.6.1.4.1.9.9.221.1.1.1.1.20.96.1", + "mempool_total": 1986506752, + "mempool_total_oid": null, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + }, + { + "mempool_index": "97.1", + "entPhysicalIndex": 97, + "mempool_type": "cemp", + "mempool_class": "system", + "mempool_precision": 1, + "mempool_descr": "0/RSP0-Virtual Processor For RP XR - Processor", + "mempool_perc": 17, + "mempool_perc_oid": null, + "mempool_used": 4771332096, + "mempool_used_oid": ".1.3.6.1.4.1.9.9.221.1.1.1.1.18.97.1", + "mempool_free": 23633354752, + "mempool_free_oid": ".1.3.6.1.4.1.9.9.221.1.1.1.1.20.97.1", + "mempool_total": 28404686848, + "mempool_total_oid": null, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + }, + { + "mempool_index": "97.3", + "entPhysicalIndex": 97, + "mempool_type": "cemp", + "mempool_class": "system", + "mempool_precision": 1, + "mempool_descr": "0/RSP0-Virtual Processor For RP XR - Image", + "mempool_perc": 100, + "mempool_perc_oid": null, + "mempool_used": 4194304, + "mempool_used_oid": ".1.3.6.1.4.1.9.9.221.1.1.1.1.18.97.3", + "mempool_free": 0, + "mempool_free_oid": ".1.3.6.1.4.1.9.9.221.1.1.1.1.20.97.3", + "mempool_total": 4194304, + "mempool_total_oid": null, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + }, + { + "mempool_index": "8288.1", + "entPhysicalIndex": 8288, + "mempool_type": "cemp", + "mempool_class": "system", + "mempool_precision": 1, + "mempool_descr": "0/0-Virtual Processor For Admin - Processor", + "mempool_perc": 45, + "mempool_perc_oid": null, + "mempool_used": 469211136, + "mempool_used_oid": ".1.3.6.1.4.1.9.9.221.1.1.1.1.18.8288.1", + "mempool_free": 563116032, + "mempool_free_oid": ".1.3.6.1.4.1.9.9.221.1.1.1.1.20.8288.1", + "mempool_total": 1032327168, + "mempool_total_oid": null, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + }, + { + "mempool_index": "8289.1", + "entPhysicalIndex": 8289, + "mempool_type": "cemp", + "mempool_class": "system", + "mempool_precision": 1, + "mempool_descr": "0/0-Virtual Processor For LC XR - Processor", + "mempool_perc": 41, + "mempool_perc_oid": null, + "mempool_used": 5727830016, + "mempool_used_oid": ".1.3.6.1.4.1.9.9.221.1.1.1.1.18.8289.1", + "mempool_free": 8080580608, + "mempool_free_oid": ".1.3.6.1.4.1.9.9.221.1.1.1.1.20.8289.1", + "mempool_total": 13808410624, + "mempool_total_oid": null, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + }, + { + "mempool_index": "8289.3", + "entPhysicalIndex": 8289, + "mempool_type": "cemp", + "mempool_class": "system", + "mempool_precision": 1, + "mempool_descr": "0/0-Virtual Processor For LC XR - Image", + "mempool_perc": 100, + "mempool_perc_oid": null, + "mempool_used": 4194304, + "mempool_used_oid": ".1.3.6.1.4.1.9.9.221.1.1.1.1.18.8289.3", + "mempool_free": 0, + "mempool_free_oid": ".1.3.6.1.4.1.9.9.221.1.1.1.1.20.8289.3", + "mempool_total": 4194304, + "mempool_total_oid": null, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + } + ] + }, + "poller": "matches discovery" + } +} diff --git a/tests/snmpsim/iosxr_asr9001.snmprec b/tests/snmpsim/iosxr_asr9001.snmprec new file mode 100644 index 0000000000..180d25095a --- /dev/null +++ b/tests/snmpsim/iosxr_asr9001.snmprec @@ -0,0 +1,9254 @@ +1.3.6.1.2.1.1.1.0|4x|436973636f20494f5320585220536f6674776172652028436973636f20415352394b20536572696573292c202056657273696f6e20362e362e335b44656661756c745d0a436f7079726967687420286329203230313920627920436973636f2053797374656d732c20496e632e +1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.9.1.1639 +1.3.6.1.2.1.1.3.0|67|839354088 +1.3.6.1.2.1.1.4.0|4| +1.3.6.1.2.1.1.5.0|4| +1.3.6.1.2.1.1.6.0|4| +1.3.6.1.2.1.2.2.1.2.2|4|Null0 +1.3.6.1.2.1.2.2.1.2.3|4|MgmtEth0/RSP0/CPU0/0 +1.3.6.1.2.1.2.2.1.2.4|4|MgmtEth0/RSP0/CPU0/1 +1.3.6.1.2.1.2.2.1.2.10|4|dwdm0/0/0/0 +1.3.6.1.2.1.2.2.1.2.11|4|dwdm0/0/2/0 +1.3.6.1.2.1.2.2.1.2.12|4|dwdm0/0/0/1 +1.3.6.1.2.1.2.2.1.2.13|4|dwdm0/0/0/2 +1.3.6.1.2.1.2.2.1.2.14|4|dwdm0/0/2/1 +1.3.6.1.2.1.2.2.1.2.15|4|dwdm0/0/2/2 +1.3.6.1.2.1.2.2.1.2.16|4|dwdm0/0/0/3 +1.3.6.1.2.1.2.2.1.2.17|4|dwdm0/0/2/3 +1.3.6.1.2.1.2.2.1.2.18|4|TenGigE0/0/0/0 +1.3.6.1.2.1.2.2.1.2.19|4|TenGigE0/0/0/1 +1.3.6.1.2.1.2.2.1.2.20|4|TenGigE0/0/0/2 +1.3.6.1.2.1.2.2.1.2.21|4|TenGigE0/0/0/3 +1.3.6.1.2.1.2.2.1.2.22|4|GigabitEthernet0/0/1/0 +1.3.6.1.2.1.2.2.1.2.23|4|GigabitEthernet0/0/1/1 +1.3.6.1.2.1.2.2.1.2.24|4|GigabitEthernet0/0/1/2 +1.3.6.1.2.1.2.2.1.2.25|4|GigabitEthernet0/0/1/3 +1.3.6.1.2.1.2.2.1.2.26|4|GigabitEthernet0/0/1/4 +1.3.6.1.2.1.2.2.1.2.27|4|GigabitEthernet0/0/1/5 +1.3.6.1.2.1.2.2.1.2.28|4|GigabitEthernet0/0/1/6 +1.3.6.1.2.1.2.2.1.2.29|4|GigabitEthernet0/0/1/7 +1.3.6.1.2.1.2.2.1.2.30|4|GigabitEthernet0/0/1/8 +1.3.6.1.2.1.2.2.1.2.31|4|GigabitEthernet0/0/1/9 +1.3.6.1.2.1.2.2.1.2.32|4|GigabitEthernet0/0/1/10 +1.3.6.1.2.1.2.2.1.2.33|4|GigabitEthernet0/0/1/11 +1.3.6.1.2.1.2.2.1.2.34|4|GigabitEthernet0/0/1/12 +1.3.6.1.2.1.2.2.1.2.35|4|GigabitEthernet0/0/1/13 +1.3.6.1.2.1.2.2.1.2.36|4|GigabitEthernet0/0/1/14 +1.3.6.1.2.1.2.2.1.2.37|4|GigabitEthernet0/0/1/15 +1.3.6.1.2.1.2.2.1.2.38|4|GigabitEthernet0/0/1/16 +1.3.6.1.2.1.2.2.1.2.39|4|GigabitEthernet0/0/1/17 +1.3.6.1.2.1.2.2.1.2.40|4|GigabitEthernet0/0/1/18 +1.3.6.1.2.1.2.2.1.2.41|4|GigabitEthernet0/0/1/19 +1.3.6.1.2.1.2.2.1.2.42|4|TenGigE0/0/2/0 +1.3.6.1.2.1.2.2.1.2.43|4|TenGigE0/0/2/1 +1.3.6.1.2.1.2.2.1.2.44|4|TenGigE0/0/2/2 +1.3.6.1.2.1.2.2.1.2.45|4|TenGigE0/0/2/3 +1.3.6.1.2.1.2.2.1.2.54|4|Loopback0 +1.3.6.1.2.1.2.2.1.2.73|4|GigabitEthernet0/0/1/1.10 +1.3.6.1.2.1.2.2.1.2.74|4|PW-Ether1 +1.3.6.1.2.1.2.2.1.2.76|4|Loopback10001 +1.3.6.1.2.1.2.2.1.2.1073741825|4|ControlEthernet0/RSP0/CPU0 +1.3.6.1.2.1.2.2.1.2.1073741826|4|ControlEthernet0/RSP0/CPU0/S0/0 +1.3.6.1.2.1.2.2.1.2.1073741827|4|ControlEthernet0/RSP0/CPU0/S0/1 +1.3.6.1.2.1.2.2.1.2.1073741828|4|ControlEthernet0/RSP0/CPU0/S0/2 +1.3.6.1.2.1.2.2.1.2.1073741829|4|ControlEthernet0/RSP0/CPU0/S0/3 +1.3.6.1.2.1.2.2.1.2.1073741830|4|ControlEthernet0/RSP0/CPU0/S0/4 +1.3.6.1.2.1.2.2.1.2.1073741831|4|ControlEthernet0/RSP0/CPU0/S0/5 +1.3.6.1.2.1.2.2.1.2.1073741832|4|ControlEthernet0/RSP0/CPU0/S0/6 +1.3.6.1.2.1.2.2.1.2.1073741833|4|ControlEthernet0/RSP0/CPU0/S0/7 +1.3.6.1.2.1.2.2.1.2.1073741834|4|ControlEthernet0/RSP0/CPU0/S0/8 +1.3.6.1.2.1.2.2.1.2.1073741835|4|ControlEthernet0/RSP0/CPU0/S0/9 +1.3.6.1.2.1.2.2.1.2.1073741836|4|ControlEthernet0/RSP0/CPU0/S0/10 +1.3.6.1.2.1.2.2.1.2.1073741837|4|ControlEthernet0/RSP0/CPU0/S0/11 +1.3.6.1.2.1.2.2.1.2.1073741838|4|ControlEthernet0/RSP0/CPU0/S0/12 +1.3.6.1.2.1.2.2.1.2.1073741839|4|ControlEthernet0/RSP0/CPU0/S0/13 +1.3.6.1.2.1.2.2.1.2.1073741840|4|ControlEthernet0/RSP0/CPU0/S0/14 +1.3.6.1.2.1.2.2.1.2.1073741841|4|ControlEthernet0/RSP0/CPU0/S0/15 +1.3.6.1.2.1.2.2.1.2.1073741842|4|ControlEthernet0/RSP0/CPU0/S0/16 +1.3.6.1.2.1.2.2.1.2.1073741843|4|ControlEthernet0/RSP0/CPU0/S0/17 +1.3.6.1.2.1.2.2.1.2.1073741844|4|ControlEthernet0/RSP0/CPU0/S0/18 +1.3.6.1.2.1.2.2.1.2.1073741845|4|ControlEthernet0/RSP0/CPU0/S0/19 +1.3.6.1.2.1.2.2.1.2.1073741846|4|ControlEthernet0/RSP0/CPU0/S0/20 +1.3.6.1.2.1.2.2.1.2.1073741847|4|ControlEthernet0/RSP0/CPU0/S0/21 +1.3.6.1.2.1.2.2.1.2.1073741848|4|ControlEthernet0/RSP0/CPU0/S0/22 +1.3.6.1.2.1.2.2.1.3.2|2|1 +1.3.6.1.2.1.2.2.1.3.3|2|6 +1.3.6.1.2.1.2.2.1.3.4|2|6 +1.3.6.1.2.1.2.2.1.3.10|2|1 +1.3.6.1.2.1.2.2.1.3.11|2|1 +1.3.6.1.2.1.2.2.1.3.12|2|1 +1.3.6.1.2.1.2.2.1.3.13|2|1 +1.3.6.1.2.1.2.2.1.3.14|2|1 +1.3.6.1.2.1.2.2.1.3.15|2|1 +1.3.6.1.2.1.2.2.1.3.16|2|1 +1.3.6.1.2.1.2.2.1.3.17|2|1 +1.3.6.1.2.1.2.2.1.3.18|2|6 +1.3.6.1.2.1.2.2.1.3.19|2|6 +1.3.6.1.2.1.2.2.1.3.20|2|6 +1.3.6.1.2.1.2.2.1.3.21|2|6 +1.3.6.1.2.1.2.2.1.3.22|2|6 +1.3.6.1.2.1.2.2.1.3.23|2|6 +1.3.6.1.2.1.2.2.1.3.24|2|6 +1.3.6.1.2.1.2.2.1.3.25|2|6 +1.3.6.1.2.1.2.2.1.3.26|2|6 +1.3.6.1.2.1.2.2.1.3.27|2|6 +1.3.6.1.2.1.2.2.1.3.28|2|6 +1.3.6.1.2.1.2.2.1.3.29|2|6 +1.3.6.1.2.1.2.2.1.3.30|2|6 +1.3.6.1.2.1.2.2.1.3.31|2|6 +1.3.6.1.2.1.2.2.1.3.32|2|6 +1.3.6.1.2.1.2.2.1.3.33|2|6 +1.3.6.1.2.1.2.2.1.3.34|2|6 +1.3.6.1.2.1.2.2.1.3.35|2|6 +1.3.6.1.2.1.2.2.1.3.36|2|6 +1.3.6.1.2.1.2.2.1.3.37|2|6 +1.3.6.1.2.1.2.2.1.3.38|2|6 +1.3.6.1.2.1.2.2.1.3.39|2|6 +1.3.6.1.2.1.2.2.1.3.40|2|6 +1.3.6.1.2.1.2.2.1.3.41|2|6 +1.3.6.1.2.1.2.2.1.3.42|2|6 +1.3.6.1.2.1.2.2.1.3.43|2|6 +1.3.6.1.2.1.2.2.1.3.44|2|6 +1.3.6.1.2.1.2.2.1.3.45|2|6 +1.3.6.1.2.1.2.2.1.3.54|2|24 +1.3.6.1.2.1.2.2.1.3.73|2|135 +1.3.6.1.2.1.2.2.1.3.74|2|246 +1.3.6.1.2.1.2.2.1.3.76|2|24 +1.3.6.1.2.1.2.2.1.3.1073741825|2|6 +1.3.6.1.2.1.2.2.1.3.1073741826|2|6 +1.3.6.1.2.1.2.2.1.3.1073741827|2|6 +1.3.6.1.2.1.2.2.1.3.1073741828|2|6 +1.3.6.1.2.1.2.2.1.3.1073741829|2|6 +1.3.6.1.2.1.2.2.1.3.1073741830|2|6 +1.3.6.1.2.1.2.2.1.3.1073741831|2|6 +1.3.6.1.2.1.2.2.1.3.1073741832|2|6 +1.3.6.1.2.1.2.2.1.3.1073741833|2|6 +1.3.6.1.2.1.2.2.1.3.1073741834|2|6 +1.3.6.1.2.1.2.2.1.3.1073741835|2|6 +1.3.6.1.2.1.2.2.1.3.1073741836|2|6 +1.3.6.1.2.1.2.2.1.3.1073741837|2|6 +1.3.6.1.2.1.2.2.1.3.1073741838|2|6 +1.3.6.1.2.1.2.2.1.3.1073741839|2|6 +1.3.6.1.2.1.2.2.1.3.1073741840|2|6 +1.3.6.1.2.1.2.2.1.3.1073741841|2|6 +1.3.6.1.2.1.2.2.1.3.1073741842|2|6 +1.3.6.1.2.1.2.2.1.3.1073741843|2|6 +1.3.6.1.2.1.2.2.1.3.1073741844|2|6 +1.3.6.1.2.1.2.2.1.3.1073741845|2|6 +1.3.6.1.2.1.2.2.1.3.1073741846|2|6 +1.3.6.1.2.1.2.2.1.3.1073741847|2|6 +1.3.6.1.2.1.2.2.1.3.1073741848|2|6 +1.3.6.1.2.1.2.2.1.4.2|2|1500 +1.3.6.1.2.1.2.2.1.4.3|2|1514 +1.3.6.1.2.1.2.2.1.4.4|2|1514 +1.3.6.1.2.1.2.2.1.4.18|2|9216 +1.3.6.1.2.1.2.2.1.4.19|2|9216 +1.3.6.1.2.1.2.2.1.4.20|2|9216 +1.3.6.1.2.1.2.2.1.4.21|2|9216 +1.3.6.1.2.1.2.2.1.4.22|2|9216 +1.3.6.1.2.1.2.2.1.4.23|2|9216 +1.3.6.1.2.1.2.2.1.4.24|2|9216 +1.3.6.1.2.1.2.2.1.4.25|2|9216 +1.3.6.1.2.1.2.2.1.4.26|2|9216 +1.3.6.1.2.1.2.2.1.4.27|2|9216 +1.3.6.1.2.1.2.2.1.4.28|2|9216 +1.3.6.1.2.1.2.2.1.4.29|2|9216 +1.3.6.1.2.1.2.2.1.4.30|2|9216 +1.3.6.1.2.1.2.2.1.4.31|2|9216 +1.3.6.1.2.1.2.2.1.4.32|2|9216 +1.3.6.1.2.1.2.2.1.4.33|2|9216 +1.3.6.1.2.1.2.2.1.4.34|2|9216 +1.3.6.1.2.1.2.2.1.4.35|2|9216 +1.3.6.1.2.1.2.2.1.4.36|2|9216 +1.3.6.1.2.1.2.2.1.4.37|2|9216 +1.3.6.1.2.1.2.2.1.4.38|2|9216 +1.3.6.1.2.1.2.2.1.4.39|2|9216 +1.3.6.1.2.1.2.2.1.4.40|2|9216 +1.3.6.1.2.1.2.2.1.4.41|2|9216 +1.3.6.1.2.1.2.2.1.4.42|2|9216 +1.3.6.1.2.1.2.2.1.4.43|2|9216 +1.3.6.1.2.1.2.2.1.4.44|2|9216 +1.3.6.1.2.1.2.2.1.4.45|2|9216 +1.3.6.1.2.1.2.2.1.4.54|2|1500 +1.3.6.1.2.1.2.2.1.4.73|2|9220 +1.3.6.1.2.1.2.2.1.4.74|2|9216 +1.3.6.1.2.1.2.2.1.4.76|2|1500 +1.3.6.1.2.1.2.2.1.6.2|4| +1.3.6.1.2.1.2.2.1.6.3|4x|70E4220EA836 +1.3.6.1.2.1.2.2.1.6.4|4x|70E4220EA837 +1.3.6.1.2.1.2.2.1.6.10|4| +1.3.6.1.2.1.2.2.1.6.11|4| +1.3.6.1.2.1.2.2.1.6.12|4| +1.3.6.1.2.1.2.2.1.6.13|4| +1.3.6.1.2.1.2.2.1.6.14|4| +1.3.6.1.2.1.2.2.1.6.15|4| +1.3.6.1.2.1.2.2.1.6.16|4| +1.3.6.1.2.1.2.2.1.6.17|4| +1.3.6.1.2.1.2.2.1.6.18|4x|70E4220EAA82 +1.3.6.1.2.1.2.2.1.6.19|4x|70E4220EAA83 +1.3.6.1.2.1.2.2.1.6.20|4x|70E4220EAA84 +1.3.6.1.2.1.2.2.1.6.21|4x|70E4220EAA85 +1.3.6.1.2.1.2.2.1.6.22|4x|70E4220EAA98 +1.3.6.1.2.1.2.2.1.6.23|4x|70E4220EAA99 +1.3.6.1.2.1.2.2.1.6.24|4x|70E4220EAA9A +1.3.6.1.2.1.2.2.1.6.25|4x|70E4220EAA9B +1.3.6.1.2.1.2.2.1.6.26|4x|70E4220EAA9C +1.3.6.1.2.1.2.2.1.6.27|4x|70E4220EAA9D +1.3.6.1.2.1.2.2.1.6.28|4x|70E4220EAA9E +1.3.6.1.2.1.2.2.1.6.29|4x|70E4220EAA9F +1.3.6.1.2.1.2.2.1.6.30|4x|70E4220EAAA0 +1.3.6.1.2.1.2.2.1.6.31|4x|70E4220EAAA1 +1.3.6.1.2.1.2.2.1.6.32|4x|70E4220EAAA2 +1.3.6.1.2.1.2.2.1.6.33|4x|70E4220EAAA3 +1.3.6.1.2.1.2.2.1.6.34|4x|70E4220EAAA4 +1.3.6.1.2.1.2.2.1.6.35|4x|70E4220EAAA5 +1.3.6.1.2.1.2.2.1.6.36|4x|70E4220EAAA6 +1.3.6.1.2.1.2.2.1.6.37|4x|70E4220EAAA7 +1.3.6.1.2.1.2.2.1.6.38|4x|70E4220EAAA8 +1.3.6.1.2.1.2.2.1.6.39|4x|70E4220EAAA9 +1.3.6.1.2.1.2.2.1.6.40|4x|70E4220EAAAA +1.3.6.1.2.1.2.2.1.6.41|4x|70E4220EAAAB +1.3.6.1.2.1.2.2.1.6.42|4x|70E4220EAA80 +1.3.6.1.2.1.2.2.1.6.43|4x|70E4220EAA81 +1.3.6.1.2.1.2.2.1.6.44|4x|70E4220EAA96 +1.3.6.1.2.1.2.2.1.6.45|4x|70E4220EAA97 +1.3.6.1.2.1.2.2.1.6.54|4| +1.3.6.1.2.1.2.2.1.6.73|4x|70E4220EAA99 +1.3.6.1.2.1.2.2.1.6.74|4x|70E4220F96DE +1.3.6.1.2.1.2.2.1.6.76|4| +1.3.6.1.2.1.2.2.1.6.1073741825|4x|000000000000 +1.3.6.1.2.1.2.2.1.6.1073741826|4| +1.3.6.1.2.1.2.2.1.6.1073741827|4| +1.3.6.1.2.1.2.2.1.6.1073741828|4| +1.3.6.1.2.1.2.2.1.6.1073741829|4| +1.3.6.1.2.1.2.2.1.6.1073741830|4| +1.3.6.1.2.1.2.2.1.6.1073741831|4| +1.3.6.1.2.1.2.2.1.6.1073741832|4| +1.3.6.1.2.1.2.2.1.6.1073741833|4| +1.3.6.1.2.1.2.2.1.6.1073741834|4| +1.3.6.1.2.1.2.2.1.6.1073741835|4| +1.3.6.1.2.1.2.2.1.6.1073741836|4| +1.3.6.1.2.1.2.2.1.6.1073741837|4| +1.3.6.1.2.1.2.2.1.6.1073741838|4| +1.3.6.1.2.1.2.2.1.6.1073741839|4| +1.3.6.1.2.1.2.2.1.6.1073741840|4| +1.3.6.1.2.1.2.2.1.6.1073741841|4| +1.3.6.1.2.1.2.2.1.6.1073741842|4| +1.3.6.1.2.1.2.2.1.6.1073741843|4| +1.3.6.1.2.1.2.2.1.6.1073741844|4| +1.3.6.1.2.1.2.2.1.6.1073741845|4| +1.3.6.1.2.1.2.2.1.6.1073741846|4| +1.3.6.1.2.1.2.2.1.6.1073741847|4| +1.3.6.1.2.1.2.2.1.6.1073741848|4| +1.3.6.1.2.1.2.2.1.7.2|2|1 +1.3.6.1.2.1.2.2.1.7.3|2|1 +1.3.6.1.2.1.2.2.1.7.4|2|2 +1.3.6.1.2.1.2.2.1.7.10|2|1 +1.3.6.1.2.1.2.2.1.7.11|2|1 +1.3.6.1.2.1.2.2.1.7.12|2|1 +1.3.6.1.2.1.2.2.1.7.13|2|1 +1.3.6.1.2.1.2.2.1.7.14|2|1 +1.3.6.1.2.1.2.2.1.7.15|2|1 +1.3.6.1.2.1.2.2.1.7.16|2|1 +1.3.6.1.2.1.2.2.1.7.17|2|1 +1.3.6.1.2.1.2.2.1.7.18|2|2 +1.3.6.1.2.1.2.2.1.7.19|2|2 +1.3.6.1.2.1.2.2.1.7.20|2|2 +1.3.6.1.2.1.2.2.1.7.21|2|1 +1.3.6.1.2.1.2.2.1.7.22|2|2 +1.3.6.1.2.1.2.2.1.7.23|2|1 +1.3.6.1.2.1.2.2.1.7.24|2|2 +1.3.6.1.2.1.2.2.1.7.25|2|2 +1.3.6.1.2.1.2.2.1.7.26|2|2 +1.3.6.1.2.1.2.2.1.7.27|2|2 +1.3.6.1.2.1.2.2.1.7.28|2|2 +1.3.6.1.2.1.2.2.1.7.29|2|2 +1.3.6.1.2.1.2.2.1.7.30|2|2 +1.3.6.1.2.1.2.2.1.7.31|2|2 +1.3.6.1.2.1.2.2.1.7.32|2|2 +1.3.6.1.2.1.2.2.1.7.33|2|2 +1.3.6.1.2.1.2.2.1.7.34|2|2 +1.3.6.1.2.1.2.2.1.7.35|2|2 +1.3.6.1.2.1.2.2.1.7.36|2|2 +1.3.6.1.2.1.2.2.1.7.37|2|2 +1.3.6.1.2.1.2.2.1.7.38|2|2 +1.3.6.1.2.1.2.2.1.7.39|2|2 +1.3.6.1.2.1.2.2.1.7.40|2|2 +1.3.6.1.2.1.2.2.1.7.41|2|2 +1.3.6.1.2.1.2.2.1.7.42|2|1 +1.3.6.1.2.1.2.2.1.7.43|2|2 +1.3.6.1.2.1.2.2.1.7.44|2|1 +1.3.6.1.2.1.2.2.1.7.45|2|2 +1.3.6.1.2.1.2.2.1.7.54|2|1 +1.3.6.1.2.1.2.2.1.7.73|2|1 +1.3.6.1.2.1.2.2.1.7.74|2|1 +1.3.6.1.2.1.2.2.1.7.76|2|1 +1.3.6.1.2.1.2.2.1.7.1073741825|2|1 +1.3.6.1.2.1.2.2.1.7.1073741826|2|1 +1.3.6.1.2.1.2.2.1.7.1073741827|2|1 +1.3.6.1.2.1.2.2.1.7.1073741828|2|1 +1.3.6.1.2.1.2.2.1.7.1073741829|2|1 +1.3.6.1.2.1.2.2.1.7.1073741830|2|1 +1.3.6.1.2.1.2.2.1.7.1073741831|2|1 +1.3.6.1.2.1.2.2.1.7.1073741832|2|1 +1.3.6.1.2.1.2.2.1.7.1073741833|2|1 +1.3.6.1.2.1.2.2.1.7.1073741834|2|1 +1.3.6.1.2.1.2.2.1.7.1073741835|2|1 +1.3.6.1.2.1.2.2.1.7.1073741836|2|1 +1.3.6.1.2.1.2.2.1.7.1073741837|2|1 +1.3.6.1.2.1.2.2.1.7.1073741838|2|1 +1.3.6.1.2.1.2.2.1.7.1073741839|2|1 +1.3.6.1.2.1.2.2.1.7.1073741840|2|1 +1.3.6.1.2.1.2.2.1.7.1073741841|2|1 +1.3.6.1.2.1.2.2.1.7.1073741842|2|1 +1.3.6.1.2.1.2.2.1.7.1073741843|2|1 +1.3.6.1.2.1.2.2.1.7.1073741844|2|1 +1.3.6.1.2.1.2.2.1.7.1073741845|2|1 +1.3.6.1.2.1.2.2.1.7.1073741846|2|1 +1.3.6.1.2.1.2.2.1.7.1073741847|2|1 +1.3.6.1.2.1.2.2.1.7.1073741848|2|1 +1.3.6.1.2.1.2.2.1.8.2|2|1 +1.3.6.1.2.1.2.2.1.8.3|2|1 +1.3.6.1.2.1.2.2.1.8.4|2|2 +1.3.6.1.2.1.2.2.1.8.10|2|1 +1.3.6.1.2.1.2.2.1.8.11|2|1 +1.3.6.1.2.1.2.2.1.8.12|2|1 +1.3.6.1.2.1.2.2.1.8.13|2|1 +1.3.6.1.2.1.2.2.1.8.14|2|1 +1.3.6.1.2.1.2.2.1.8.15|2|1 +1.3.6.1.2.1.2.2.1.8.16|2|1 +1.3.6.1.2.1.2.2.1.8.17|2|1 +1.3.6.1.2.1.2.2.1.8.18|2|2 +1.3.6.1.2.1.2.2.1.8.19|2|2 +1.3.6.1.2.1.2.2.1.8.20|2|2 +1.3.6.1.2.1.2.2.1.8.21|2|1 +1.3.6.1.2.1.2.2.1.8.22|2|2 +1.3.6.1.2.1.2.2.1.8.23|2|1 +1.3.6.1.2.1.2.2.1.8.24|2|2 +1.3.6.1.2.1.2.2.1.8.25|2|2 +1.3.6.1.2.1.2.2.1.8.26|2|2 +1.3.6.1.2.1.2.2.1.8.27|2|2 +1.3.6.1.2.1.2.2.1.8.28|2|2 +1.3.6.1.2.1.2.2.1.8.29|2|2 +1.3.6.1.2.1.2.2.1.8.30|2|2 +1.3.6.1.2.1.2.2.1.8.31|2|2 +1.3.6.1.2.1.2.2.1.8.32|2|2 +1.3.6.1.2.1.2.2.1.8.33|2|2 +1.3.6.1.2.1.2.2.1.8.34|2|2 +1.3.6.1.2.1.2.2.1.8.35|2|2 +1.3.6.1.2.1.2.2.1.8.36|2|2 +1.3.6.1.2.1.2.2.1.8.37|2|2 +1.3.6.1.2.1.2.2.1.8.38|2|2 +1.3.6.1.2.1.2.2.1.8.39|2|2 +1.3.6.1.2.1.2.2.1.8.40|2|2 +1.3.6.1.2.1.2.2.1.8.41|2|2 +1.3.6.1.2.1.2.2.1.8.42|2|1 +1.3.6.1.2.1.2.2.1.8.43|2|2 +1.3.6.1.2.1.2.2.1.8.44|2|1 +1.3.6.1.2.1.2.2.1.8.45|2|2 +1.3.6.1.2.1.2.2.1.8.54|2|1 +1.3.6.1.2.1.2.2.1.8.73|2|1 +1.3.6.1.2.1.2.2.1.8.74|2|1 +1.3.6.1.2.1.2.2.1.8.76|2|1 +1.3.6.1.2.1.2.2.1.8.1073741825|2|1 +1.3.6.1.2.1.2.2.1.8.1073741826|2|2 +1.3.6.1.2.1.2.2.1.8.1073741827|2|2 +1.3.6.1.2.1.2.2.1.8.1073741828|2|2 +1.3.6.1.2.1.2.2.1.8.1073741829|2|2 +1.3.6.1.2.1.2.2.1.8.1073741830|2|2 +1.3.6.1.2.1.2.2.1.8.1073741831|2|2 +1.3.6.1.2.1.2.2.1.8.1073741832|2|2 +1.3.6.1.2.1.2.2.1.8.1073741833|2|2 +1.3.6.1.2.1.2.2.1.8.1073741834|2|2 +1.3.6.1.2.1.2.2.1.8.1073741835|2|2 +1.3.6.1.2.1.2.2.1.8.1073741836|2|2 +1.3.6.1.2.1.2.2.1.8.1073741837|2|2 +1.3.6.1.2.1.2.2.1.8.1073741838|2|2 +1.3.6.1.2.1.2.2.1.8.1073741839|2|2 +1.3.6.1.2.1.2.2.1.8.1073741840|2|2 +1.3.6.1.2.1.2.2.1.8.1073741841|2|2 +1.3.6.1.2.1.2.2.1.8.1073741842|2|2 +1.3.6.1.2.1.2.2.1.8.1073741843|2|2 +1.3.6.1.2.1.2.2.1.8.1073741844|2|2 +1.3.6.1.2.1.2.2.1.8.1073741845|2|2 +1.3.6.1.2.1.2.2.1.8.1073741846|2|2 +1.3.6.1.2.1.2.2.1.8.1073741847|2|2 +1.3.6.1.2.1.2.2.1.8.1073741848|2|2 +1.3.6.1.2.1.2.2.1.9.2|67|0 +1.3.6.1.2.1.2.2.1.9.3|67|3132 +1.3.6.1.2.1.2.2.1.9.4|67|0 +1.3.6.1.2.1.2.2.1.9.10|67|15850 +1.3.6.1.2.1.2.2.1.9.11|67|15851 +1.3.6.1.2.1.2.2.1.9.12|67|15850 +1.3.6.1.2.1.2.2.1.9.13|67|15850 +1.3.6.1.2.1.2.2.1.9.14|67|15851 +1.3.6.1.2.1.2.2.1.9.15|67|15851 +1.3.6.1.2.1.2.2.1.9.16|67|15850 +1.3.6.1.2.1.2.2.1.9.17|67|15851 +1.3.6.1.2.1.2.2.1.9.18|67|0 +1.3.6.1.2.1.2.2.1.9.19|67|0 +1.3.6.1.2.1.2.2.1.9.20|67|0 +1.3.6.1.2.1.2.2.1.9.21|67|356389576 +1.3.6.1.2.1.2.2.1.9.22|67|0 +1.3.6.1.2.1.2.2.1.9.23|67|17501 +1.3.6.1.2.1.2.2.1.9.24|67|0 +1.3.6.1.2.1.2.2.1.9.25|67|0 +1.3.6.1.2.1.2.2.1.9.26|67|0 +1.3.6.1.2.1.2.2.1.9.27|67|0 +1.3.6.1.2.1.2.2.1.9.28|67|348234006 +1.3.6.1.2.1.2.2.1.9.29|67|348234007 +1.3.6.1.2.1.2.2.1.9.30|67|0 +1.3.6.1.2.1.2.2.1.9.31|67|0 +1.3.6.1.2.1.2.2.1.9.32|67|0 +1.3.6.1.2.1.2.2.1.9.33|67|0 +1.3.6.1.2.1.2.2.1.9.34|67|0 +1.3.6.1.2.1.2.2.1.9.35|67|0 +1.3.6.1.2.1.2.2.1.9.36|67|0 +1.3.6.1.2.1.2.2.1.9.37|67|0 +1.3.6.1.2.1.2.2.1.9.38|67|0 +1.3.6.1.2.1.2.2.1.9.39|67|0 +1.3.6.1.2.1.2.2.1.9.40|67|0 +1.3.6.1.2.1.2.2.1.9.41|67|0 +1.3.6.1.2.1.2.2.1.9.42|67|558278955 +1.3.6.1.2.1.2.2.1.9.43|67|0 +1.3.6.1.2.1.2.2.1.9.44|67|299370578 +1.3.6.1.2.1.2.2.1.9.45|67|0 +1.3.6.1.2.1.2.2.1.9.54|67|2333 +1.3.6.1.2.1.2.2.1.9.73|67|17502 +1.3.6.1.2.1.2.2.1.9.74|67|736471258 +1.3.6.1.2.1.2.2.1.9.76|67|2333 +1.3.6.1.2.1.2.2.1.9.1073741825|67|0 +1.3.6.1.2.1.2.2.1.9.1073741826|67|0 +1.3.6.1.2.1.2.2.1.9.1073741827|67|0 +1.3.6.1.2.1.2.2.1.9.1073741828|67|0 +1.3.6.1.2.1.2.2.1.9.1073741829|67|0 +1.3.6.1.2.1.2.2.1.9.1073741830|67|0 +1.3.6.1.2.1.2.2.1.9.1073741831|67|0 +1.3.6.1.2.1.2.2.1.9.1073741832|67|0 +1.3.6.1.2.1.2.2.1.9.1073741833|67|0 +1.3.6.1.2.1.2.2.1.9.1073741834|67|0 +1.3.6.1.2.1.2.2.1.9.1073741835|67|0 +1.3.6.1.2.1.2.2.1.9.1073741836|67|0 +1.3.6.1.2.1.2.2.1.9.1073741837|67|0 +1.3.6.1.2.1.2.2.1.9.1073741838|67|0 +1.3.6.1.2.1.2.2.1.9.1073741839|67|0 +1.3.6.1.2.1.2.2.1.9.1073741840|67|0 +1.3.6.1.2.1.2.2.1.9.1073741841|67|0 +1.3.6.1.2.1.2.2.1.9.1073741842|67|0 +1.3.6.1.2.1.2.2.1.9.1073741843|67|0 +1.3.6.1.2.1.2.2.1.9.1073741844|67|0 +1.3.6.1.2.1.2.2.1.9.1073741845|67|0 +1.3.6.1.2.1.2.2.1.9.1073741846|67|0 +1.3.6.1.2.1.2.2.1.9.1073741847|67|0 +1.3.6.1.2.1.2.2.1.9.1073741848|67|0 +1.3.6.1.2.1.2.2.1.13.2|65|0 +1.3.6.1.2.1.2.2.1.13.3|65|6318 +1.3.6.1.2.1.2.2.1.13.4|65|0 +1.3.6.1.2.1.2.2.1.13.18|65|0 +1.3.6.1.2.1.2.2.1.13.19|65|0 +1.3.6.1.2.1.2.2.1.13.20|65|0 +1.3.6.1.2.1.2.2.1.13.21|65|4 +1.3.6.1.2.1.2.2.1.13.22|65|0 +1.3.6.1.2.1.2.2.1.13.23|65|0 +1.3.6.1.2.1.2.2.1.13.24|65|0 +1.3.6.1.2.1.2.2.1.13.25|65|0 +1.3.6.1.2.1.2.2.1.13.26|65|0 +1.3.6.1.2.1.2.2.1.13.27|65|0 +1.3.6.1.2.1.2.2.1.13.28|65|0 +1.3.6.1.2.1.2.2.1.13.29|65|0 +1.3.6.1.2.1.2.2.1.13.30|65|0 +1.3.6.1.2.1.2.2.1.13.31|65|0 +1.3.6.1.2.1.2.2.1.13.32|65|0 +1.3.6.1.2.1.2.2.1.13.33|65|0 +1.3.6.1.2.1.2.2.1.13.34|65|0 +1.3.6.1.2.1.2.2.1.13.35|65|0 +1.3.6.1.2.1.2.2.1.13.36|65|0 +1.3.6.1.2.1.2.2.1.13.37|65|0 +1.3.6.1.2.1.2.2.1.13.38|65|0 +1.3.6.1.2.1.2.2.1.13.39|65|0 +1.3.6.1.2.1.2.2.1.13.40|65|0 +1.3.6.1.2.1.2.2.1.13.41|65|0 +1.3.6.1.2.1.2.2.1.13.42|65|26 +1.3.6.1.2.1.2.2.1.13.43|65|0 +1.3.6.1.2.1.2.2.1.13.44|65|29 +1.3.6.1.2.1.2.2.1.13.45|65|0 +1.3.6.1.2.1.2.2.1.13.73|65|0 +1.3.6.1.2.1.2.2.1.13.74|65|2 +1.3.6.1.2.1.2.2.1.13.1073741825|65|0 +1.3.6.1.2.1.2.2.1.13.1073741826|65|0 +1.3.6.1.2.1.2.2.1.13.1073741827|65|0 +1.3.6.1.2.1.2.2.1.13.1073741828|65|0 +1.3.6.1.2.1.2.2.1.13.1073741829|65|0 +1.3.6.1.2.1.2.2.1.13.1073741830|65|0 +1.3.6.1.2.1.2.2.1.13.1073741831|65|0 +1.3.6.1.2.1.2.2.1.13.1073741832|65|0 +1.3.6.1.2.1.2.2.1.13.1073741833|65|0 +1.3.6.1.2.1.2.2.1.13.1073741834|65|0 +1.3.6.1.2.1.2.2.1.13.1073741835|65|0 +1.3.6.1.2.1.2.2.1.13.1073741836|65|0 +1.3.6.1.2.1.2.2.1.13.1073741837|65|0 +1.3.6.1.2.1.2.2.1.13.1073741838|65|0 +1.3.6.1.2.1.2.2.1.13.1073741839|65|0 +1.3.6.1.2.1.2.2.1.13.1073741840|65|0 +1.3.6.1.2.1.2.2.1.13.1073741841|65|0 +1.3.6.1.2.1.2.2.1.13.1073741842|65|0 +1.3.6.1.2.1.2.2.1.13.1073741843|65|0 +1.3.6.1.2.1.2.2.1.13.1073741844|65|0 +1.3.6.1.2.1.2.2.1.13.1073741845|65|0 +1.3.6.1.2.1.2.2.1.13.1073741846|65|0 +1.3.6.1.2.1.2.2.1.13.1073741847|65|0 +1.3.6.1.2.1.2.2.1.13.1073741848|65|0 +1.3.6.1.2.1.2.2.1.14.2|65|0 +1.3.6.1.2.1.2.2.1.14.3|65|4294967259 +1.3.6.1.2.1.2.2.1.14.4|65|4294967262 +1.3.6.1.2.1.2.2.1.14.18|65|0 +1.3.6.1.2.1.2.2.1.14.19|65|0 +1.3.6.1.2.1.2.2.1.14.20|65|0 +1.3.6.1.2.1.2.2.1.14.21|65|0 +1.3.6.1.2.1.2.2.1.14.22|65|0 +1.3.6.1.2.1.2.2.1.14.23|65|0 +1.3.6.1.2.1.2.2.1.14.24|65|0 +1.3.6.1.2.1.2.2.1.14.25|65|0 +1.3.6.1.2.1.2.2.1.14.26|65|0 +1.3.6.1.2.1.2.2.1.14.27|65|0 +1.3.6.1.2.1.2.2.1.14.28|65|0 +1.3.6.1.2.1.2.2.1.14.29|65|0 +1.3.6.1.2.1.2.2.1.14.30|65|0 +1.3.6.1.2.1.2.2.1.14.31|65|0 +1.3.6.1.2.1.2.2.1.14.32|65|0 +1.3.6.1.2.1.2.2.1.14.33|65|0 +1.3.6.1.2.1.2.2.1.14.34|65|0 +1.3.6.1.2.1.2.2.1.14.35|65|0 +1.3.6.1.2.1.2.2.1.14.36|65|0 +1.3.6.1.2.1.2.2.1.14.37|65|0 +1.3.6.1.2.1.2.2.1.14.38|65|0 +1.3.6.1.2.1.2.2.1.14.39|65|0 +1.3.6.1.2.1.2.2.1.14.40|65|0 +1.3.6.1.2.1.2.2.1.14.41|65|0 +1.3.6.1.2.1.2.2.1.14.42|65|0 +1.3.6.1.2.1.2.2.1.14.43|65|0 +1.3.6.1.2.1.2.2.1.14.44|65|0 +1.3.6.1.2.1.2.2.1.14.45|65|0 +1.3.6.1.2.1.2.2.1.14.73|65|0 +1.3.6.1.2.1.2.2.1.14.74|65|0 +1.3.6.1.2.1.2.2.1.14.1073741825|65|0 +1.3.6.1.2.1.2.2.1.14.1073741826|65|0 +1.3.6.1.2.1.2.2.1.14.1073741827|65|0 +1.3.6.1.2.1.2.2.1.14.1073741828|65|0 +1.3.6.1.2.1.2.2.1.14.1073741829|65|0 +1.3.6.1.2.1.2.2.1.14.1073741830|65|0 +1.3.6.1.2.1.2.2.1.14.1073741831|65|0 +1.3.6.1.2.1.2.2.1.14.1073741832|65|0 +1.3.6.1.2.1.2.2.1.14.1073741833|65|0 +1.3.6.1.2.1.2.2.1.14.1073741834|65|0 +1.3.6.1.2.1.2.2.1.14.1073741835|65|0 +1.3.6.1.2.1.2.2.1.14.1073741836|65|0 +1.3.6.1.2.1.2.2.1.14.1073741837|65|0 +1.3.6.1.2.1.2.2.1.14.1073741838|65|0 +1.3.6.1.2.1.2.2.1.14.1073741839|65|0 +1.3.6.1.2.1.2.2.1.14.1073741840|65|0 +1.3.6.1.2.1.2.2.1.14.1073741841|65|0 +1.3.6.1.2.1.2.2.1.14.1073741842|65|0 +1.3.6.1.2.1.2.2.1.14.1073741843|65|0 +1.3.6.1.2.1.2.2.1.14.1073741844|65|0 +1.3.6.1.2.1.2.2.1.14.1073741845|65|0 +1.3.6.1.2.1.2.2.1.14.1073741846|65|0 +1.3.6.1.2.1.2.2.1.14.1073741847|65|0 +1.3.6.1.2.1.2.2.1.14.1073741848|65|0 +1.3.6.1.2.1.2.2.1.19.2|65|0 +1.3.6.1.2.1.2.2.1.19.3|65|196605 +1.3.6.1.2.1.2.2.1.19.4|65|0 +1.3.6.1.2.1.2.2.1.19.18|65|0 +1.3.6.1.2.1.2.2.1.19.19|65|0 +1.3.6.1.2.1.2.2.1.19.20|65|0 +1.3.6.1.2.1.2.2.1.19.21|65|0 +1.3.6.1.2.1.2.2.1.19.22|65|0 +1.3.6.1.2.1.2.2.1.19.23|65|0 +1.3.6.1.2.1.2.2.1.19.24|65|0 +1.3.6.1.2.1.2.2.1.19.25|65|0 +1.3.6.1.2.1.2.2.1.19.26|65|0 +1.3.6.1.2.1.2.2.1.19.27|65|0 +1.3.6.1.2.1.2.2.1.19.28|65|0 +1.3.6.1.2.1.2.2.1.19.29|65|0 +1.3.6.1.2.1.2.2.1.19.30|65|0 +1.3.6.1.2.1.2.2.1.19.31|65|0 +1.3.6.1.2.1.2.2.1.19.32|65|0 +1.3.6.1.2.1.2.2.1.19.33|65|0 +1.3.6.1.2.1.2.2.1.19.34|65|0 +1.3.6.1.2.1.2.2.1.19.35|65|0 +1.3.6.1.2.1.2.2.1.19.36|65|0 +1.3.6.1.2.1.2.2.1.19.37|65|0 +1.3.6.1.2.1.2.2.1.19.38|65|0 +1.3.6.1.2.1.2.2.1.19.39|65|0 +1.3.6.1.2.1.2.2.1.19.40|65|0 +1.3.6.1.2.1.2.2.1.19.41|65|0 +1.3.6.1.2.1.2.2.1.19.42|65|0 +1.3.6.1.2.1.2.2.1.19.43|65|0 +1.3.6.1.2.1.2.2.1.19.44|65|3 +1.3.6.1.2.1.2.2.1.19.45|65|0 +1.3.6.1.2.1.2.2.1.19.73|65|0 +1.3.6.1.2.1.2.2.1.19.74|65|0 +1.3.6.1.2.1.2.2.1.19.1073741825|65|0 +1.3.6.1.2.1.2.2.1.19.1073741826|65|0 +1.3.6.1.2.1.2.2.1.19.1073741827|65|0 +1.3.6.1.2.1.2.2.1.19.1073741828|65|0 +1.3.6.1.2.1.2.2.1.19.1073741829|65|0 +1.3.6.1.2.1.2.2.1.19.1073741830|65|0 +1.3.6.1.2.1.2.2.1.19.1073741831|65|0 +1.3.6.1.2.1.2.2.1.19.1073741832|65|0 +1.3.6.1.2.1.2.2.1.19.1073741833|65|0 +1.3.6.1.2.1.2.2.1.19.1073741834|65|0 +1.3.6.1.2.1.2.2.1.19.1073741835|65|0 +1.3.6.1.2.1.2.2.1.19.1073741836|65|0 +1.3.6.1.2.1.2.2.1.19.1073741837|65|0 +1.3.6.1.2.1.2.2.1.19.1073741838|65|0 +1.3.6.1.2.1.2.2.1.19.1073741839|65|0 +1.3.6.1.2.1.2.2.1.19.1073741840|65|0 +1.3.6.1.2.1.2.2.1.19.1073741841|65|0 +1.3.6.1.2.1.2.2.1.19.1073741842|65|0 +1.3.6.1.2.1.2.2.1.19.1073741843|65|0 +1.3.6.1.2.1.2.2.1.19.1073741844|65|0 +1.3.6.1.2.1.2.2.1.19.1073741845|65|0 +1.3.6.1.2.1.2.2.1.19.1073741846|65|0 +1.3.6.1.2.1.2.2.1.19.1073741847|65|0 +1.3.6.1.2.1.2.2.1.19.1073741848|65|0 +1.3.6.1.2.1.2.2.1.20.2|65|0 +1.3.6.1.2.1.2.2.1.20.3|65|4294967282 +1.3.6.1.2.1.2.2.1.20.4|65|4294967283 +1.3.6.1.2.1.2.2.1.20.18|65|0 +1.3.6.1.2.1.2.2.1.20.19|65|0 +1.3.6.1.2.1.2.2.1.20.20|65|0 +1.3.6.1.2.1.2.2.1.20.21|65|4 +1.3.6.1.2.1.2.2.1.20.22|65|0 +1.3.6.1.2.1.2.2.1.20.23|65|0 +1.3.6.1.2.1.2.2.1.20.24|65|0 +1.3.6.1.2.1.2.2.1.20.25|65|0 +1.3.6.1.2.1.2.2.1.20.26|65|0 +1.3.6.1.2.1.2.2.1.20.27|65|0 +1.3.6.1.2.1.2.2.1.20.28|65|0 +1.3.6.1.2.1.2.2.1.20.29|65|0 +1.3.6.1.2.1.2.2.1.20.30|65|0 +1.3.6.1.2.1.2.2.1.20.31|65|0 +1.3.6.1.2.1.2.2.1.20.32|65|0 +1.3.6.1.2.1.2.2.1.20.33|65|0 +1.3.6.1.2.1.2.2.1.20.34|65|0 +1.3.6.1.2.1.2.2.1.20.35|65|0 +1.3.6.1.2.1.2.2.1.20.36|65|0 +1.3.6.1.2.1.2.2.1.20.37|65|0 +1.3.6.1.2.1.2.2.1.20.38|65|0 +1.3.6.1.2.1.2.2.1.20.39|65|0 +1.3.6.1.2.1.2.2.1.20.40|65|0 +1.3.6.1.2.1.2.2.1.20.41|65|0 +1.3.6.1.2.1.2.2.1.20.42|65|3 +1.3.6.1.2.1.2.2.1.20.43|65|0 +1.3.6.1.2.1.2.2.1.20.44|65|2 +1.3.6.1.2.1.2.2.1.20.45|65|0 +1.3.6.1.2.1.2.2.1.20.73|65|0 +1.3.6.1.2.1.2.2.1.20.74|65|0 +1.3.6.1.2.1.2.2.1.20.1073741825|65|0 +1.3.6.1.2.1.2.2.1.20.1073741826|65|0 +1.3.6.1.2.1.2.2.1.20.1073741827|65|0 +1.3.6.1.2.1.2.2.1.20.1073741828|65|0 +1.3.6.1.2.1.2.2.1.20.1073741829|65|0 +1.3.6.1.2.1.2.2.1.20.1073741830|65|0 +1.3.6.1.2.1.2.2.1.20.1073741831|65|0 +1.3.6.1.2.1.2.2.1.20.1073741832|65|0 +1.3.6.1.2.1.2.2.1.20.1073741833|65|0 +1.3.6.1.2.1.2.2.1.20.1073741834|65|0 +1.3.6.1.2.1.2.2.1.20.1073741835|65|0 +1.3.6.1.2.1.2.2.1.20.1073741836|65|0 +1.3.6.1.2.1.2.2.1.20.1073741837|65|0 +1.3.6.1.2.1.2.2.1.20.1073741838|65|0 +1.3.6.1.2.1.2.2.1.20.1073741839|65|0 +1.3.6.1.2.1.2.2.1.20.1073741840|65|0 +1.3.6.1.2.1.2.2.1.20.1073741841|65|0 +1.3.6.1.2.1.2.2.1.20.1073741842|65|0 +1.3.6.1.2.1.2.2.1.20.1073741843|65|0 +1.3.6.1.2.1.2.2.1.20.1073741844|65|0 +1.3.6.1.2.1.2.2.1.20.1073741845|65|0 +1.3.6.1.2.1.2.2.1.20.1073741846|65|0 +1.3.6.1.2.1.2.2.1.20.1073741847|65|0 +1.3.6.1.2.1.2.2.1.20.1073741848|65|0 +1.3.6.1.2.1.4.22.1.2.3.10.245.254.1|4x|F07F06B8F428 +1.3.6.1.2.1.4.22.1.2.3.10.245.254.2|4x|9C417C85B750 +1.3.6.1.2.1.4.22.1.2.3.10.245.254.9|4x|D8803978F6D4 +1.3.6.1.2.1.4.22.1.2.3.10.245.254.10|4x|2C44FD680FBE +1.3.6.1.2.1.4.22.1.2.3.10.245.254.11|4x|3CD92B256B29 +1.3.6.1.2.1.4.22.1.2.3.10.245.254.21|4x|009E1E5D390E +1.3.6.1.2.1.4.22.1.2.3.10.245.254.31|4x|70E4220EA836 +1.3.6.1.2.1.4.22.1.2.3.10.245.254.32|4x|CC46D64A0438 +1.3.6.1.2.1.4.22.1.2.3.10.245.254.33|4x|B02680AC7ED0 +1.3.6.1.2.1.4.22.1.2.3.10.245.254.35|4x|6C310EA201DA +1.3.6.1.2.1.4.22.1.2.3.10.245.254.100|4x|90B11C089725 +1.3.6.1.2.1.4.22.1.2.3.10.245.254.101|4x|24B6FDF90396 +1.3.6.1.2.1.4.22.1.2.3.10.245.254.228|4x|984BE1EA4208 +1.3.6.1.2.1.4.22.1.2.21.10.246.1.33|4x|70E4220EAA85 +1.3.6.1.2.1.4.22.1.2.21.10.246.1.34|4x|CC46D64A041B +1.3.6.1.2.1.4.22.1.2.42.10.246.1.1|4x|00BC604D8004 +1.3.6.1.2.1.4.22.1.2.42.10.246.1.2|4x|70E4220EAA80 +1.3.6.1.2.1.4.22.1.2.44.10.246.1.17|4x|70E4220EAA96 +1.3.6.1.2.1.4.22.1.2.44.10.246.1.18|4x|B02680ACE69F +1.3.6.1.2.1.4.22.1.2.73.10.0.1.0|4x|70E4220EAA99 +1.3.6.1.2.1.4.22.1.2.73.10.0.1.1|4x|18DED7BF640C +1.3.6.1.2.1.4.22.1.2.74.10.0.1.2|4x|70E4220F96DE +1.3.6.1.2.1.4.22.1.2.74.10.0.1.3|4x|18DED7BF640D +1.3.6.1.2.1.4.35.1.4.73.2.16.36.6.43.0.255.255.0.1.0.1.0.0.0.0.0.2|4x|18DED7BF640C +1.3.6.1.2.1.4.35.1.4.73.2.16.254.128.0.0.0.0.0.0.26.222.215.255.254.191.100.12|4x|18DED7BF640C +1.3.6.1.2.1.10.7.2.1.1.3|2|3 +1.3.6.1.2.1.10.7.2.1.1.4|2|4 +1.3.6.1.2.1.10.7.2.1.1.18|2|18 +1.3.6.1.2.1.10.7.2.1.1.19|2|19 +1.3.6.1.2.1.10.7.2.1.1.20|2|20 +1.3.6.1.2.1.10.7.2.1.1.21|2|21 +1.3.6.1.2.1.10.7.2.1.1.22|2|22 +1.3.6.1.2.1.10.7.2.1.1.23|2|23 +1.3.6.1.2.1.10.7.2.1.1.24|2|24 +1.3.6.1.2.1.10.7.2.1.1.25|2|25 +1.3.6.1.2.1.10.7.2.1.1.26|2|26 +1.3.6.1.2.1.10.7.2.1.1.27|2|27 +1.3.6.1.2.1.10.7.2.1.1.28|2|28 +1.3.6.1.2.1.10.7.2.1.1.29|2|29 +1.3.6.1.2.1.10.7.2.1.1.30|2|30 +1.3.6.1.2.1.10.7.2.1.1.31|2|31 +1.3.6.1.2.1.10.7.2.1.1.32|2|32 +1.3.6.1.2.1.10.7.2.1.1.33|2|33 +1.3.6.1.2.1.10.7.2.1.1.34|2|34 +1.3.6.1.2.1.10.7.2.1.1.35|2|35 +1.3.6.1.2.1.10.7.2.1.1.36|2|36 +1.3.6.1.2.1.10.7.2.1.1.37|2|37 +1.3.6.1.2.1.10.7.2.1.1.38|2|38 +1.3.6.1.2.1.10.7.2.1.1.39|2|39 +1.3.6.1.2.1.10.7.2.1.1.40|2|40 +1.3.6.1.2.1.10.7.2.1.1.41|2|41 +1.3.6.1.2.1.10.7.2.1.1.42|2|42 +1.3.6.1.2.1.10.7.2.1.1.43|2|43 +1.3.6.1.2.1.10.7.2.1.1.44|2|44 +1.3.6.1.2.1.10.7.2.1.1.45|2|45 +1.3.6.1.2.1.10.7.2.1.19.3|2|1 +1.3.6.1.2.1.10.7.2.1.19.4|2|1 +1.3.6.1.2.1.10.7.2.1.19.18|2|3 +1.3.6.1.2.1.10.7.2.1.19.19|2|3 +1.3.6.1.2.1.10.7.2.1.19.20|2|3 +1.3.6.1.2.1.10.7.2.1.19.21|2|3 +1.3.6.1.2.1.10.7.2.1.19.22|2|3 +1.3.6.1.2.1.10.7.2.1.19.23|2|3 +1.3.6.1.2.1.10.7.2.1.19.24|2|3 +1.3.6.1.2.1.10.7.2.1.19.25|2|3 +1.3.6.1.2.1.10.7.2.1.19.26|2|3 +1.3.6.1.2.1.10.7.2.1.19.27|2|3 +1.3.6.1.2.1.10.7.2.1.19.28|2|3 +1.3.6.1.2.1.10.7.2.1.19.29|2|3 +1.3.6.1.2.1.10.7.2.1.19.30|2|3 +1.3.6.1.2.1.10.7.2.1.19.31|2|3 +1.3.6.1.2.1.10.7.2.1.19.32|2|3 +1.3.6.1.2.1.10.7.2.1.19.33|2|3 +1.3.6.1.2.1.10.7.2.1.19.34|2|3 +1.3.6.1.2.1.10.7.2.1.19.35|2|3 +1.3.6.1.2.1.10.7.2.1.19.36|2|3 +1.3.6.1.2.1.10.7.2.1.19.37|2|3 +1.3.6.1.2.1.10.7.2.1.19.38|2|3 +1.3.6.1.2.1.10.7.2.1.19.39|2|3 +1.3.6.1.2.1.10.7.2.1.19.40|2|3 +1.3.6.1.2.1.10.7.2.1.19.41|2|3 +1.3.6.1.2.1.10.7.2.1.19.42|2|3 +1.3.6.1.2.1.10.7.2.1.19.43|2|3 +1.3.6.1.2.1.10.7.2.1.19.44|2|3 +1.3.6.1.2.1.10.7.2.1.19.45|2|3 +1.3.6.1.2.1.10.166.11.1.2.1.1.2.4.109.103.109.116.3|2|2 +1.3.6.1.2.1.10.166.11.1.2.1.1.2.9.84.86.80.78.49.48.48.48.49.73|2|2 +1.3.6.1.2.1.10.166.11.1.2.1.1.2.9.84.86.80.78.49.48.48.48.49.74|2|2 +1.3.6.1.2.1.10.166.11.1.2.1.1.2.9.84.86.80.78.49.48.48.48.49.76|2|2 +1.3.6.1.2.1.10.166.11.1.2.2.1.3.4.109.103.109.116|4| +1.3.6.1.2.1.10.166.11.1.2.2.1.3.9.84.86.80.78.49.48.48.48.49|4|Test VRF +1.3.6.1.2.1.10.166.11.1.2.2.1.4.4.109.103.109.116|4| +1.3.6.1.2.1.10.166.11.1.2.2.1.4.9.84.86.80.78.49.48.48.48.49|4|10.246.0.1:10001 +1.3.6.1.2.1.15.2.0|2|65056 +1.3.6.1.2.1.31.1.1.1.1.2|4|Null0 +1.3.6.1.2.1.31.1.1.1.1.3|4|MgmtEth0/RSP0/CPU0/0 +1.3.6.1.2.1.31.1.1.1.1.4|4|MgmtEth0/RSP0/CPU0/1 +1.3.6.1.2.1.31.1.1.1.1.10|4|dwdm0/0/0/0 +1.3.6.1.2.1.31.1.1.1.1.11|4|dwdm0/0/2/0 +1.3.6.1.2.1.31.1.1.1.1.12|4|dwdm0/0/0/1 +1.3.6.1.2.1.31.1.1.1.1.13|4|dwdm0/0/0/2 +1.3.6.1.2.1.31.1.1.1.1.14|4|dwdm0/0/2/1 +1.3.6.1.2.1.31.1.1.1.1.15|4|dwdm0/0/2/2 +1.3.6.1.2.1.31.1.1.1.1.16|4|dwdm0/0/0/3 +1.3.6.1.2.1.31.1.1.1.1.17|4|dwdm0/0/2/3 +1.3.6.1.2.1.31.1.1.1.1.18|4|TenGigE0/0/0/0 +1.3.6.1.2.1.31.1.1.1.1.19|4|TenGigE0/0/0/1 +1.3.6.1.2.1.31.1.1.1.1.20|4|TenGigE0/0/0/2 +1.3.6.1.2.1.31.1.1.1.1.21|4|TenGigE0/0/0/3 +1.3.6.1.2.1.31.1.1.1.1.22|4|GigabitEthernet0/0/1/0 +1.3.6.1.2.1.31.1.1.1.1.23|4|GigabitEthernet0/0/1/1 +1.3.6.1.2.1.31.1.1.1.1.24|4|GigabitEthernet0/0/1/2 +1.3.6.1.2.1.31.1.1.1.1.25|4|GigabitEthernet0/0/1/3 +1.3.6.1.2.1.31.1.1.1.1.26|4|GigabitEthernet0/0/1/4 +1.3.6.1.2.1.31.1.1.1.1.27|4|GigabitEthernet0/0/1/5 +1.3.6.1.2.1.31.1.1.1.1.28|4|GigabitEthernet0/0/1/6 +1.3.6.1.2.1.31.1.1.1.1.29|4|GigabitEthernet0/0/1/7 +1.3.6.1.2.1.31.1.1.1.1.30|4|GigabitEthernet0/0/1/8 +1.3.6.1.2.1.31.1.1.1.1.31|4|GigabitEthernet0/0/1/9 +1.3.6.1.2.1.31.1.1.1.1.32|4|GigabitEthernet0/0/1/10 +1.3.6.1.2.1.31.1.1.1.1.33|4|GigabitEthernet0/0/1/11 +1.3.6.1.2.1.31.1.1.1.1.34|4|GigabitEthernet0/0/1/12 +1.3.6.1.2.1.31.1.1.1.1.35|4|GigabitEthernet0/0/1/13 +1.3.6.1.2.1.31.1.1.1.1.36|4|GigabitEthernet0/0/1/14 +1.3.6.1.2.1.31.1.1.1.1.37|4|GigabitEthernet0/0/1/15 +1.3.6.1.2.1.31.1.1.1.1.38|4|GigabitEthernet0/0/1/16 +1.3.6.1.2.1.31.1.1.1.1.39|4|GigabitEthernet0/0/1/17 +1.3.6.1.2.1.31.1.1.1.1.40|4|GigabitEthernet0/0/1/18 +1.3.6.1.2.1.31.1.1.1.1.41|4|GigabitEthernet0/0/1/19 +1.3.6.1.2.1.31.1.1.1.1.42|4|TenGigE0/0/2/0 +1.3.6.1.2.1.31.1.1.1.1.43|4|TenGigE0/0/2/1 +1.3.6.1.2.1.31.1.1.1.1.44|4|TenGigE0/0/2/2 +1.3.6.1.2.1.31.1.1.1.1.45|4|TenGigE0/0/2/3 +1.3.6.1.2.1.31.1.1.1.1.54|4|Loopback0 +1.3.6.1.2.1.31.1.1.1.1.73|4|GigabitEthernet0/0/1/1.10 +1.3.6.1.2.1.31.1.1.1.1.74|4|PW-Ether1 +1.3.6.1.2.1.31.1.1.1.1.76|4|Loopback10001 +1.3.6.1.2.1.31.1.1.1.1.1073741825|4|ControlEthernet0/RSP0/CPU0 +1.3.6.1.2.1.31.1.1.1.1.1073741826|4|ControlEthernet0/RSP0/CPU0/S0/0 +1.3.6.1.2.1.31.1.1.1.1.1073741827|4|ControlEthernet0/RSP0/CPU0/S0/1 +1.3.6.1.2.1.31.1.1.1.1.1073741828|4|ControlEthernet0/RSP0/CPU0/S0/2 +1.3.6.1.2.1.31.1.1.1.1.1073741829|4|ControlEthernet0/RSP0/CPU0/S0/3 +1.3.6.1.2.1.31.1.1.1.1.1073741830|4|ControlEthernet0/RSP0/CPU0/S0/4 +1.3.6.1.2.1.31.1.1.1.1.1073741831|4|ControlEthernet0/RSP0/CPU0/S0/5 +1.3.6.1.2.1.31.1.1.1.1.1073741832|4|ControlEthernet0/RSP0/CPU0/S0/6 +1.3.6.1.2.1.31.1.1.1.1.1073741833|4|ControlEthernet0/RSP0/CPU0/S0/7 +1.3.6.1.2.1.31.1.1.1.1.1073741834|4|ControlEthernet0/RSP0/CPU0/S0/8 +1.3.6.1.2.1.31.1.1.1.1.1073741835|4|ControlEthernet0/RSP0/CPU0/S0/9 +1.3.6.1.2.1.31.1.1.1.1.1073741836|4|ControlEthernet0/RSP0/CPU0/S0/10 +1.3.6.1.2.1.31.1.1.1.1.1073741837|4|ControlEthernet0/RSP0/CPU0/S0/11 +1.3.6.1.2.1.31.1.1.1.1.1073741838|4|ControlEthernet0/RSP0/CPU0/S0/12 +1.3.6.1.2.1.31.1.1.1.1.1073741839|4|ControlEthernet0/RSP0/CPU0/S0/13 +1.3.6.1.2.1.31.1.1.1.1.1073741840|4|ControlEthernet0/RSP0/CPU0/S0/14 +1.3.6.1.2.1.31.1.1.1.1.1073741841|4|ControlEthernet0/RSP0/CPU0/S0/15 +1.3.6.1.2.1.31.1.1.1.1.1073741842|4|ControlEthernet0/RSP0/CPU0/S0/16 +1.3.6.1.2.1.31.1.1.1.1.1073741843|4|ControlEthernet0/RSP0/CPU0/S0/17 +1.3.6.1.2.1.31.1.1.1.1.1073741844|4|ControlEthernet0/RSP0/CPU0/S0/18 +1.3.6.1.2.1.31.1.1.1.1.1073741845|4|ControlEthernet0/RSP0/CPU0/S0/19 +1.3.6.1.2.1.31.1.1.1.1.1073741846|4|ControlEthernet0/RSP0/CPU0/S0/20 +1.3.6.1.2.1.31.1.1.1.1.1073741847|4|ControlEthernet0/RSP0/CPU0/S0/21 +1.3.6.1.2.1.31.1.1.1.1.1073741848|4|ControlEthernet0/RSP0/CPU0/S0/22 +1.3.6.1.2.1.31.1.1.1.2.2|65|0 +1.3.6.1.2.1.31.1.1.1.2.3|65|5293421 +1.3.6.1.2.1.31.1.1.1.2.4|65|4294967295 +1.3.6.1.2.1.31.1.1.1.2.18|65|0 +1.3.6.1.2.1.31.1.1.1.2.19|65|0 +1.3.6.1.2.1.31.1.1.1.2.20|65|0 +1.3.6.1.2.1.31.1.1.1.2.21|65|3036668 +1.3.6.1.2.1.31.1.1.1.2.22|65|0 +1.3.6.1.2.1.31.1.1.1.2.23|65|419577 +1.3.6.1.2.1.31.1.1.1.2.24|65|0 +1.3.6.1.2.1.31.1.1.1.2.25|65|0 +1.3.6.1.2.1.31.1.1.1.2.26|65|0 +1.3.6.1.2.1.31.1.1.1.2.27|65|0 +1.3.6.1.2.1.31.1.1.1.2.28|65|0 +1.3.6.1.2.1.31.1.1.1.2.29|65|0 +1.3.6.1.2.1.31.1.1.1.2.30|65|0 +1.3.6.1.2.1.31.1.1.1.2.31|65|0 +1.3.6.1.2.1.31.1.1.1.2.32|65|0 +1.3.6.1.2.1.31.1.1.1.2.33|65|0 +1.3.6.1.2.1.31.1.1.1.2.34|65|0 +1.3.6.1.2.1.31.1.1.1.2.35|65|0 +1.3.6.1.2.1.31.1.1.1.2.36|65|0 +1.3.6.1.2.1.31.1.1.1.2.37|65|0 +1.3.6.1.2.1.31.1.1.1.2.38|65|0 +1.3.6.1.2.1.31.1.1.1.2.39|65|0 +1.3.6.1.2.1.31.1.1.1.2.40|65|0 +1.3.6.1.2.1.31.1.1.1.2.41|65|0 +1.3.6.1.2.1.31.1.1.1.2.42|65|2774349 +1.3.6.1.2.1.31.1.1.1.2.43|65|0 +1.3.6.1.2.1.31.1.1.1.2.44|65|3594340 +1.3.6.1.2.1.31.1.1.1.2.45|65|0 +1.3.6.1.2.1.31.1.1.1.2.73|65|419577 +1.3.6.1.2.1.31.1.1.1.2.74|65|419482 +1.3.6.1.2.1.31.1.1.1.2.1073741825|65|0 +1.3.6.1.2.1.31.1.1.1.2.1073741826|65|0 +1.3.6.1.2.1.31.1.1.1.2.1073741827|65|0 +1.3.6.1.2.1.31.1.1.1.2.1073741828|65|0 +1.3.6.1.2.1.31.1.1.1.2.1073741829|65|0 +1.3.6.1.2.1.31.1.1.1.2.1073741830|65|79972709 +1.3.6.1.2.1.31.1.1.1.2.1073741831|65|0 +1.3.6.1.2.1.31.1.1.1.2.1073741832|65|42909601 +1.3.6.1.2.1.31.1.1.1.2.1073741833|65|0 +1.3.6.1.2.1.31.1.1.1.2.1073741834|65|0 +1.3.6.1.2.1.31.1.1.1.2.1073741835|65|0 +1.3.6.1.2.1.31.1.1.1.2.1073741836|65|0 +1.3.6.1.2.1.31.1.1.1.2.1073741837|65|0 +1.3.6.1.2.1.31.1.1.1.2.1073741838|65|0 +1.3.6.1.2.1.31.1.1.1.2.1073741839|65|21 +1.3.6.1.2.1.31.1.1.1.2.1073741840|65|0 +1.3.6.1.2.1.31.1.1.1.2.1073741841|65|0 +1.3.6.1.2.1.31.1.1.1.2.1073741842|65|0 +1.3.6.1.2.1.31.1.1.1.2.1073741843|65|0 +1.3.6.1.2.1.31.1.1.1.2.1073741844|65|0 +1.3.6.1.2.1.31.1.1.1.2.1073741845|65|0 +1.3.6.1.2.1.31.1.1.1.2.1073741846|65|0 +1.3.6.1.2.1.31.1.1.1.2.1073741847|65|0 +1.3.6.1.2.1.31.1.1.1.2.1073741848|65|0 +1.3.6.1.2.1.31.1.1.1.3.2|65|0 +1.3.6.1.2.1.31.1.1.1.3.3|65|128513 +1.3.6.1.2.1.31.1.1.1.3.4|65|4294967293 +1.3.6.1.2.1.31.1.1.1.3.18|65|0 +1.3.6.1.2.1.31.1.1.1.3.19|65|0 +1.3.6.1.2.1.31.1.1.1.3.20|65|0 +1.3.6.1.2.1.31.1.1.1.3.21|65|4 +1.3.6.1.2.1.31.1.1.1.3.22|65|0 +1.3.6.1.2.1.31.1.1.1.3.23|65|2 +1.3.6.1.2.1.31.1.1.1.3.24|65|0 +1.3.6.1.2.1.31.1.1.1.3.25|65|0 +1.3.6.1.2.1.31.1.1.1.3.26|65|0 +1.3.6.1.2.1.31.1.1.1.3.27|65|0 +1.3.6.1.2.1.31.1.1.1.3.28|65|0 +1.3.6.1.2.1.31.1.1.1.3.29|65|0 +1.3.6.1.2.1.31.1.1.1.3.30|65|0 +1.3.6.1.2.1.31.1.1.1.3.31|65|0 +1.3.6.1.2.1.31.1.1.1.3.32|65|0 +1.3.6.1.2.1.31.1.1.1.3.33|65|0 +1.3.6.1.2.1.31.1.1.1.3.34|65|0 +1.3.6.1.2.1.31.1.1.1.3.35|65|0 +1.3.6.1.2.1.31.1.1.1.3.36|65|0 +1.3.6.1.2.1.31.1.1.1.3.37|65|0 +1.3.6.1.2.1.31.1.1.1.3.38|65|0 +1.3.6.1.2.1.31.1.1.1.3.39|65|0 +1.3.6.1.2.1.31.1.1.1.3.40|65|0 +1.3.6.1.2.1.31.1.1.1.3.41|65|0 +1.3.6.1.2.1.31.1.1.1.3.42|65|6 +1.3.6.1.2.1.31.1.1.1.3.43|65|0 +1.3.6.1.2.1.31.1.1.1.3.44|65|2 +1.3.6.1.2.1.31.1.1.1.3.45|65|0 +1.3.6.1.2.1.31.1.1.1.3.73|65|2 +1.3.6.1.2.1.31.1.1.1.3.74|65|6 +1.3.6.1.2.1.31.1.1.1.3.1073741825|65|0 +1.3.6.1.2.1.31.1.1.1.3.1073741826|65|0 +1.3.6.1.2.1.31.1.1.1.3.1073741827|65|0 +1.3.6.1.2.1.31.1.1.1.3.1073741828|65|0 +1.3.6.1.2.1.31.1.1.1.3.1073741829|65|0 +1.3.6.1.2.1.31.1.1.1.3.1073741830|65|2868 +1.3.6.1.2.1.31.1.1.1.3.1073741831|65|0 +1.3.6.1.2.1.31.1.1.1.3.1073741832|65|2148 +1.3.6.1.2.1.31.1.1.1.3.1073741833|65|0 +1.3.6.1.2.1.31.1.1.1.3.1073741834|65|0 +1.3.6.1.2.1.31.1.1.1.3.1073741835|65|0 +1.3.6.1.2.1.31.1.1.1.3.1073741836|65|0 +1.3.6.1.2.1.31.1.1.1.3.1073741837|65|0 +1.3.6.1.2.1.31.1.1.1.3.1073741838|65|0 +1.3.6.1.2.1.31.1.1.1.3.1073741839|65|0 +1.3.6.1.2.1.31.1.1.1.3.1073741840|65|0 +1.3.6.1.2.1.31.1.1.1.3.1073741841|65|0 +1.3.6.1.2.1.31.1.1.1.3.1073741842|65|0 +1.3.6.1.2.1.31.1.1.1.3.1073741843|65|0 +1.3.6.1.2.1.31.1.1.1.3.1073741844|65|0 +1.3.6.1.2.1.31.1.1.1.3.1073741845|65|0 +1.3.6.1.2.1.31.1.1.1.3.1073741846|65|0 +1.3.6.1.2.1.31.1.1.1.3.1073741847|65|0 +1.3.6.1.2.1.31.1.1.1.3.1073741848|65|0 +1.3.6.1.2.1.31.1.1.1.4.2|65|0 +1.3.6.1.2.1.31.1.1.1.4.3|65|4294967294 +1.3.6.1.2.1.31.1.1.1.4.4|65|4294967292 +1.3.6.1.2.1.31.1.1.1.4.18|65|0 +1.3.6.1.2.1.31.1.1.1.4.19|65|0 +1.3.6.1.2.1.31.1.1.1.4.20|65|0 +1.3.6.1.2.1.31.1.1.1.4.21|65|3309799 +1.3.6.1.2.1.31.1.1.1.4.22|65|0 +1.3.6.1.2.1.31.1.1.1.4.23|65|838393 +1.3.6.1.2.1.31.1.1.1.4.24|65|0 +1.3.6.1.2.1.31.1.1.1.4.25|65|0 +1.3.6.1.2.1.31.1.1.1.4.26|65|0 +1.3.6.1.2.1.31.1.1.1.4.27|65|0 +1.3.6.1.2.1.31.1.1.1.4.28|65|0 +1.3.6.1.2.1.31.1.1.1.4.29|65|0 +1.3.6.1.2.1.31.1.1.1.4.30|65|0 +1.3.6.1.2.1.31.1.1.1.4.31|65|0 +1.3.6.1.2.1.31.1.1.1.4.32|65|0 +1.3.6.1.2.1.31.1.1.1.4.33|65|0 +1.3.6.1.2.1.31.1.1.1.4.34|65|0 +1.3.6.1.2.1.31.1.1.1.4.35|65|0 +1.3.6.1.2.1.31.1.1.1.4.36|65|0 +1.3.6.1.2.1.31.1.1.1.4.37|65|0 +1.3.6.1.2.1.31.1.1.1.4.38|65|0 +1.3.6.1.2.1.31.1.1.1.4.39|65|0 +1.3.6.1.2.1.31.1.1.1.4.40|65|0 +1.3.6.1.2.1.31.1.1.1.4.41|65|0 +1.3.6.1.2.1.31.1.1.1.4.42|65|3310015 +1.3.6.1.2.1.31.1.1.1.4.43|65|0 +1.3.6.1.2.1.31.1.1.1.4.44|65|3593795 +1.3.6.1.2.1.31.1.1.1.4.45|65|0 +1.3.6.1.2.1.31.1.1.1.4.73|65|838391 +1.3.6.1.2.1.31.1.1.1.4.74|65|698368 +1.3.6.1.2.1.31.1.1.1.4.1073741825|65|0 +1.3.6.1.2.1.31.1.1.1.4.1073741826|65|0 +1.3.6.1.2.1.31.1.1.1.4.1073741827|65|0 +1.3.6.1.2.1.31.1.1.1.4.1073741828|65|122882161 +1.3.6.1.2.1.31.1.1.1.4.1073741829|65|21 +1.3.6.1.2.1.31.1.1.1.4.1073741830|65|42909622 +1.3.6.1.2.1.31.1.1.1.4.1073741831|65|190 +1.3.6.1.2.1.31.1.1.1.4.1073741832|65|79972540 +1.3.6.1.2.1.31.1.1.1.4.1073741833|65|0 +1.3.6.1.2.1.31.1.1.1.4.1073741834|65|0 +1.3.6.1.2.1.31.1.1.1.4.1073741835|65|0 +1.3.6.1.2.1.31.1.1.1.4.1073741836|65|0 +1.3.6.1.2.1.31.1.1.1.4.1073741837|65|0 +1.3.6.1.2.1.31.1.1.1.4.1073741838|65|0 +1.3.6.1.2.1.31.1.1.1.4.1073741839|65|169 +1.3.6.1.2.1.31.1.1.1.4.1073741840|65|260 +1.3.6.1.2.1.31.1.1.1.4.1073741841|65|260 +1.3.6.1.2.1.31.1.1.1.4.1073741842|65|0 +1.3.6.1.2.1.31.1.1.1.4.1073741843|65|0 +1.3.6.1.2.1.31.1.1.1.4.1073741844|65|0 +1.3.6.1.2.1.31.1.1.1.4.1073741845|65|0 +1.3.6.1.2.1.31.1.1.1.4.1073741846|65|0 +1.3.6.1.2.1.31.1.1.1.4.1073741847|65|0 +1.3.6.1.2.1.31.1.1.1.4.1073741848|65|0 +1.3.6.1.2.1.31.1.1.1.5.2|65|0 +1.3.6.1.2.1.31.1.1.1.5.3|65|4294967291 +1.3.6.1.2.1.31.1.1.1.5.4|65|4294967291 +1.3.6.1.2.1.31.1.1.1.5.18|65|0 +1.3.6.1.2.1.31.1.1.1.5.19|65|0 +1.3.6.1.2.1.31.1.1.1.5.20|65|0 +1.3.6.1.2.1.31.1.1.1.5.21|65|5 +1.3.6.1.2.1.31.1.1.1.5.22|65|0 +1.3.6.1.2.1.31.1.1.1.5.23|65|1 +1.3.6.1.2.1.31.1.1.1.5.24|65|0 +1.3.6.1.2.1.31.1.1.1.5.25|65|0 +1.3.6.1.2.1.31.1.1.1.5.26|65|0 +1.3.6.1.2.1.31.1.1.1.5.27|65|0 +1.3.6.1.2.1.31.1.1.1.5.28|65|0 +1.3.6.1.2.1.31.1.1.1.5.29|65|0 +1.3.6.1.2.1.31.1.1.1.5.30|65|0 +1.3.6.1.2.1.31.1.1.1.5.31|65|0 +1.3.6.1.2.1.31.1.1.1.5.32|65|0 +1.3.6.1.2.1.31.1.1.1.5.33|65|0 +1.3.6.1.2.1.31.1.1.1.5.34|65|0 +1.3.6.1.2.1.31.1.1.1.5.35|65|0 +1.3.6.1.2.1.31.1.1.1.5.36|65|0 +1.3.6.1.2.1.31.1.1.1.5.37|65|0 +1.3.6.1.2.1.31.1.1.1.5.38|65|0 +1.3.6.1.2.1.31.1.1.1.5.39|65|0 +1.3.6.1.2.1.31.1.1.1.5.40|65|0 +1.3.6.1.2.1.31.1.1.1.5.41|65|0 +1.3.6.1.2.1.31.1.1.1.5.42|65|6 +1.3.6.1.2.1.31.1.1.1.5.43|65|0 +1.3.6.1.2.1.31.1.1.1.5.44|65|4 +1.3.6.1.2.1.31.1.1.1.5.45|65|0 +1.3.6.1.2.1.31.1.1.1.5.73|65|1 +1.3.6.1.2.1.31.1.1.1.5.74|65|0 +1.3.6.1.2.1.31.1.1.1.5.1073741825|65|0 +1.3.6.1.2.1.31.1.1.1.5.1073741826|65|0 +1.3.6.1.2.1.31.1.1.1.5.1073741827|65|0 +1.3.6.1.2.1.31.1.1.1.5.1073741828|65|5015 +1.3.6.1.2.1.31.1.1.1.5.1073741829|65|0 +1.3.6.1.2.1.31.1.1.1.5.1073741830|65|2148 +1.3.6.1.2.1.31.1.1.1.5.1073741831|65|1 +1.3.6.1.2.1.31.1.1.1.5.1073741832|65|2867 +1.3.6.1.2.1.31.1.1.1.5.1073741833|65|0 +1.3.6.1.2.1.31.1.1.1.5.1073741834|65|0 +1.3.6.1.2.1.31.1.1.1.5.1073741835|65|0 +1.3.6.1.2.1.31.1.1.1.5.1073741836|65|0 +1.3.6.1.2.1.31.1.1.1.5.1073741837|65|0 +1.3.6.1.2.1.31.1.1.1.5.1073741838|65|0 +1.3.6.1.2.1.31.1.1.1.5.1073741839|65|1 +1.3.6.1.2.1.31.1.1.1.5.1073741840|65|1 +1.3.6.1.2.1.31.1.1.1.5.1073741841|65|1 +1.3.6.1.2.1.31.1.1.1.5.1073741842|65|0 +1.3.6.1.2.1.31.1.1.1.5.1073741843|65|0 +1.3.6.1.2.1.31.1.1.1.5.1073741844|65|0 +1.3.6.1.2.1.31.1.1.1.5.1073741845|65|0 +1.3.6.1.2.1.31.1.1.1.5.1073741846|65|0 +1.3.6.1.2.1.31.1.1.1.5.1073741847|65|0 +1.3.6.1.2.1.31.1.1.1.5.1073741848|65|0 +1.3.6.1.2.1.31.1.1.1.6.2|70|0 +1.3.6.1.2.1.31.1.1.1.6.3|70|516600842144 +1.3.6.1.2.1.31.1.1.1.6.4|70|137438953439 +1.3.6.1.2.1.31.1.1.1.6.18|70|0 +1.3.6.1.2.1.31.1.1.1.6.19|70|0 +1.3.6.1.2.1.31.1.1.1.6.20|70|0 +1.3.6.1.2.1.31.1.1.1.6.21|70|4333398764 +1.3.6.1.2.1.31.1.1.1.6.22|70|0 +1.3.6.1.2.1.31.1.1.1.6.23|70|317474101 +1.3.6.1.2.1.31.1.1.1.6.24|70|0 +1.3.6.1.2.1.31.1.1.1.6.25|70|0 +1.3.6.1.2.1.31.1.1.1.6.26|70|0 +1.3.6.1.2.1.31.1.1.1.6.27|70|0 +1.3.6.1.2.1.31.1.1.1.6.28|70|0 +1.3.6.1.2.1.31.1.1.1.6.29|70|0 +1.3.6.1.2.1.31.1.1.1.6.30|70|0 +1.3.6.1.2.1.31.1.1.1.6.31|70|0 +1.3.6.1.2.1.31.1.1.1.6.32|70|0 +1.3.6.1.2.1.31.1.1.1.6.33|70|0 +1.3.6.1.2.1.31.1.1.1.6.34|70|0 +1.3.6.1.2.1.31.1.1.1.6.35|70|0 +1.3.6.1.2.1.31.1.1.1.6.36|70|0 +1.3.6.1.2.1.31.1.1.1.6.37|70|0 +1.3.6.1.2.1.31.1.1.1.6.38|70|0 +1.3.6.1.2.1.31.1.1.1.6.39|70|0 +1.3.6.1.2.1.31.1.1.1.6.40|70|0 +1.3.6.1.2.1.31.1.1.1.6.41|70|0 +1.3.6.1.2.1.31.1.1.1.6.42|70|5307668218 +1.3.6.1.2.1.31.1.1.1.6.43|70|0 +1.3.6.1.2.1.31.1.1.1.6.44|70|4199621725 +1.3.6.1.2.1.31.1.1.1.6.45|70|0 +1.3.6.1.2.1.31.1.1.1.6.73|70|317473980 +1.3.6.1.2.1.31.1.1.1.6.74|70|284000819 +1.3.6.1.2.1.31.1.1.1.6.1073741825|70|0 +1.3.6.1.2.1.31.1.1.1.6.1073741826|70|20744926539 +1.3.6.1.2.1.31.1.1.1.6.1073741827|70|14379862979 +1.3.6.1.2.1.31.1.1.1.6.1073741828|70|0 +1.3.6.1.2.1.31.1.1.1.6.1073741829|70|0 +1.3.6.1.2.1.31.1.1.1.6.1073741830|70|39812262818 +1.3.6.1.2.1.31.1.1.1.6.1073741831|70|0 +1.3.6.1.2.1.31.1.1.1.6.1073741832|70|87004534659 +1.3.6.1.2.1.31.1.1.1.6.1073741833|70|12827398430 +1.3.6.1.2.1.31.1.1.1.6.1073741834|70|0 +1.3.6.1.2.1.31.1.1.1.6.1073741835|70|0 +1.3.6.1.2.1.31.1.1.1.6.1073741836|70|0 +1.3.6.1.2.1.31.1.1.1.6.1073741837|70|4674168341 +1.3.6.1.2.1.31.1.1.1.6.1073741838|70|904884188 +1.3.6.1.2.1.31.1.1.1.6.1073741839|70|13566 +1.3.6.1.2.1.31.1.1.1.6.1073741840|70|0 +1.3.6.1.2.1.31.1.1.1.6.1073741841|70|0 +1.3.6.1.2.1.31.1.1.1.6.1073741842|70|0 +1.3.6.1.2.1.31.1.1.1.6.1073741843|70|0 +1.3.6.1.2.1.31.1.1.1.6.1073741844|70|0 +1.3.6.1.2.1.31.1.1.1.6.1073741845|70|0 +1.3.6.1.2.1.31.1.1.1.6.1073741846|70|0 +1.3.6.1.2.1.31.1.1.1.6.1073741847|70|0 +1.3.6.1.2.1.31.1.1.1.6.1073741848|70|0 +1.3.6.1.2.1.31.1.1.1.7.2|70|0 +1.3.6.1.2.1.31.1.1.1.7.3|70|38659931394 +1.3.6.1.2.1.31.1.1.1.7.4|70|17179869180 +1.3.6.1.2.1.31.1.1.1.7.18|70|0 +1.3.6.1.2.1.31.1.1.1.7.19|70|0 +1.3.6.1.2.1.31.1.1.1.7.20|70|0 +1.3.6.1.2.1.31.1.1.1.7.21|70|60549009 +1.3.6.1.2.1.31.1.1.1.7.22|70|0 +1.3.6.1.2.1.31.1.1.1.7.23|70|2733411 +1.3.6.1.2.1.31.1.1.1.7.24|70|0 +1.3.6.1.2.1.31.1.1.1.7.25|70|0 +1.3.6.1.2.1.31.1.1.1.7.26|70|0 +1.3.6.1.2.1.31.1.1.1.7.27|70|0 +1.3.6.1.2.1.31.1.1.1.7.28|70|0 +1.3.6.1.2.1.31.1.1.1.7.29|70|0 +1.3.6.1.2.1.31.1.1.1.7.30|70|0 +1.3.6.1.2.1.31.1.1.1.7.31|70|0 +1.3.6.1.2.1.31.1.1.1.7.32|70|0 +1.3.6.1.2.1.31.1.1.1.7.33|70|0 +1.3.6.1.2.1.31.1.1.1.7.34|70|0 +1.3.6.1.2.1.31.1.1.1.7.35|70|0 +1.3.6.1.2.1.31.1.1.1.7.36|70|0 +1.3.6.1.2.1.31.1.1.1.7.37|70|0 +1.3.6.1.2.1.31.1.1.1.7.38|70|0 +1.3.6.1.2.1.31.1.1.1.7.39|70|0 +1.3.6.1.2.1.31.1.1.1.7.40|70|0 +1.3.6.1.2.1.31.1.1.1.7.41|70|0 +1.3.6.1.2.1.31.1.1.1.7.42|70|38874586 +1.3.6.1.2.1.31.1.1.1.7.43|70|0 +1.3.6.1.2.1.31.1.1.1.7.44|70|60337381 +1.3.6.1.2.1.31.1.1.1.7.45|70|0 +1.3.6.1.2.1.31.1.1.1.7.73|70|2733410 +1.3.6.1.2.1.31.1.1.1.7.74|70|2604317 +1.3.6.1.2.1.31.1.1.1.7.1073741825|70|0 +1.3.6.1.2.1.31.1.1.1.7.1073741826|70|130339871 +1.3.6.1.2.1.31.1.1.1.7.1073741827|70|91502946 +1.3.6.1.2.1.31.1.1.1.7.1073741828|70|0 +1.3.6.1.2.1.31.1.1.1.7.1073741829|70|0 +1.3.6.1.2.1.31.1.1.1.7.1073741830|70|193756280 +1.3.6.1.2.1.31.1.1.1.7.1073741831|70|0 +1.3.6.1.2.1.31.1.1.1.7.1073741832|70|206008293 +1.3.6.1.2.1.31.1.1.1.7.1073741833|70|95030165 +1.3.6.1.2.1.31.1.1.1.7.1073741834|70|0 +1.3.6.1.2.1.31.1.1.1.7.1073741835|70|0 +1.3.6.1.2.1.31.1.1.1.7.1073741836|70|0 +1.3.6.1.2.1.31.1.1.1.7.1073741837|70|16123153 +1.3.6.1.2.1.31.1.1.1.7.1073741838|70|5424911 +1.3.6.1.2.1.31.1.1.1.7.1073741839|70|0 +1.3.6.1.2.1.31.1.1.1.7.1073741840|70|0 +1.3.6.1.2.1.31.1.1.1.7.1073741841|70|0 +1.3.6.1.2.1.31.1.1.1.7.1073741842|70|0 +1.3.6.1.2.1.31.1.1.1.7.1073741843|70|0 +1.3.6.1.2.1.31.1.1.1.7.1073741844|70|0 +1.3.6.1.2.1.31.1.1.1.7.1073741845|70|0 +1.3.6.1.2.1.31.1.1.1.7.1073741846|70|0 +1.3.6.1.2.1.31.1.1.1.7.1073741847|70|0 +1.3.6.1.2.1.31.1.1.1.7.1073741848|70|0 +1.3.6.1.2.1.31.1.1.1.8.2|70|0 +1.3.6.1.2.1.31.1.1.1.8.3|70|42954966381 +1.3.6.1.2.1.31.1.1.1.8.4|70|4294967295 +1.3.6.1.2.1.31.1.1.1.8.18|70|0 +1.3.6.1.2.1.31.1.1.1.8.19|70|0 +1.3.6.1.2.1.31.1.1.1.8.20|70|0 +1.3.6.1.2.1.31.1.1.1.8.21|70|3036668 +1.3.6.1.2.1.31.1.1.1.8.22|70|0 +1.3.6.1.2.1.31.1.1.1.8.23|70|419577 +1.3.6.1.2.1.31.1.1.1.8.24|70|0 +1.3.6.1.2.1.31.1.1.1.8.25|70|0 +1.3.6.1.2.1.31.1.1.1.8.26|70|0 +1.3.6.1.2.1.31.1.1.1.8.27|70|0 +1.3.6.1.2.1.31.1.1.1.8.28|70|0 +1.3.6.1.2.1.31.1.1.1.8.29|70|0 +1.3.6.1.2.1.31.1.1.1.8.30|70|0 +1.3.6.1.2.1.31.1.1.1.8.31|70|0 +1.3.6.1.2.1.31.1.1.1.8.32|70|0 +1.3.6.1.2.1.31.1.1.1.8.33|70|0 +1.3.6.1.2.1.31.1.1.1.8.34|70|0 +1.3.6.1.2.1.31.1.1.1.8.35|70|0 +1.3.6.1.2.1.31.1.1.1.8.36|70|0 +1.3.6.1.2.1.31.1.1.1.8.37|70|0 +1.3.6.1.2.1.31.1.1.1.8.38|70|0 +1.3.6.1.2.1.31.1.1.1.8.39|70|0 +1.3.6.1.2.1.31.1.1.1.8.40|70|0 +1.3.6.1.2.1.31.1.1.1.8.41|70|0 +1.3.6.1.2.1.31.1.1.1.8.42|70|2774349 +1.3.6.1.2.1.31.1.1.1.8.43|70|0 +1.3.6.1.2.1.31.1.1.1.8.44|70|3594340 +1.3.6.1.2.1.31.1.1.1.8.45|70|0 +1.3.6.1.2.1.31.1.1.1.8.73|70|419577 +1.3.6.1.2.1.31.1.1.1.8.74|70|419482 +1.3.6.1.2.1.31.1.1.1.8.1073741825|70|0 +1.3.6.1.2.1.31.1.1.1.8.1073741826|70|0 +1.3.6.1.2.1.31.1.1.1.8.1073741827|70|0 +1.3.6.1.2.1.31.1.1.1.8.1073741828|70|0 +1.3.6.1.2.1.31.1.1.1.8.1073741829|70|0 +1.3.6.1.2.1.31.1.1.1.8.1073741830|70|79972709 +1.3.6.1.2.1.31.1.1.1.8.1073741831|70|0 +1.3.6.1.2.1.31.1.1.1.8.1073741832|70|42909601 +1.3.6.1.2.1.31.1.1.1.8.1073741833|70|0 +1.3.6.1.2.1.31.1.1.1.8.1073741834|70|0 +1.3.6.1.2.1.31.1.1.1.8.1073741835|70|0 +1.3.6.1.2.1.31.1.1.1.8.1073741836|70|0 +1.3.6.1.2.1.31.1.1.1.8.1073741837|70|0 +1.3.6.1.2.1.31.1.1.1.8.1073741838|70|0 +1.3.6.1.2.1.31.1.1.1.8.1073741839|70|21 +1.3.6.1.2.1.31.1.1.1.8.1073741840|70|0 +1.3.6.1.2.1.31.1.1.1.8.1073741841|70|0 +1.3.6.1.2.1.31.1.1.1.8.1073741842|70|0 +1.3.6.1.2.1.31.1.1.1.8.1073741843|70|0 +1.3.6.1.2.1.31.1.1.1.8.1073741844|70|0 +1.3.6.1.2.1.31.1.1.1.8.1073741845|70|0 +1.3.6.1.2.1.31.1.1.1.8.1073741846|70|0 +1.3.6.1.2.1.31.1.1.1.8.1073741847|70|0 +1.3.6.1.2.1.31.1.1.1.8.1073741848|70|0 +1.3.6.1.2.1.31.1.1.1.9.2|70|0 +1.3.6.1.2.1.31.1.1.1.9.3|70|47244768769 +1.3.6.1.2.1.31.1.1.1.9.4|70|12884901885 +1.3.6.1.2.1.31.1.1.1.9.18|70|0 +1.3.6.1.2.1.31.1.1.1.9.19|70|0 +1.3.6.1.2.1.31.1.1.1.9.20|70|0 +1.3.6.1.2.1.31.1.1.1.9.21|70|4 +1.3.6.1.2.1.31.1.1.1.9.22|70|0 +1.3.6.1.2.1.31.1.1.1.9.23|70|2 +1.3.6.1.2.1.31.1.1.1.9.24|70|0 +1.3.6.1.2.1.31.1.1.1.9.25|70|0 +1.3.6.1.2.1.31.1.1.1.9.26|70|0 +1.3.6.1.2.1.31.1.1.1.9.27|70|0 +1.3.6.1.2.1.31.1.1.1.9.28|70|0 +1.3.6.1.2.1.31.1.1.1.9.29|70|0 +1.3.6.1.2.1.31.1.1.1.9.30|70|0 +1.3.6.1.2.1.31.1.1.1.9.31|70|0 +1.3.6.1.2.1.31.1.1.1.9.32|70|0 +1.3.6.1.2.1.31.1.1.1.9.33|70|0 +1.3.6.1.2.1.31.1.1.1.9.34|70|0 +1.3.6.1.2.1.31.1.1.1.9.35|70|0 +1.3.6.1.2.1.31.1.1.1.9.36|70|0 +1.3.6.1.2.1.31.1.1.1.9.37|70|0 +1.3.6.1.2.1.31.1.1.1.9.38|70|0 +1.3.6.1.2.1.31.1.1.1.9.39|70|0 +1.3.6.1.2.1.31.1.1.1.9.40|70|0 +1.3.6.1.2.1.31.1.1.1.9.41|70|0 +1.3.6.1.2.1.31.1.1.1.9.42|70|6 +1.3.6.1.2.1.31.1.1.1.9.43|70|0 +1.3.6.1.2.1.31.1.1.1.9.44|70|2 +1.3.6.1.2.1.31.1.1.1.9.45|70|0 +1.3.6.1.2.1.31.1.1.1.9.73|70|2 +1.3.6.1.2.1.31.1.1.1.9.74|70|6 +1.3.6.1.2.1.31.1.1.1.9.1073741825|70|0 +1.3.6.1.2.1.31.1.1.1.9.1073741826|70|0 +1.3.6.1.2.1.31.1.1.1.9.1073741827|70|0 +1.3.6.1.2.1.31.1.1.1.9.1073741828|70|0 +1.3.6.1.2.1.31.1.1.1.9.1073741829|70|0 +1.3.6.1.2.1.31.1.1.1.9.1073741830|70|2868 +1.3.6.1.2.1.31.1.1.1.9.1073741831|70|0 +1.3.6.1.2.1.31.1.1.1.9.1073741832|70|2148 +1.3.6.1.2.1.31.1.1.1.9.1073741833|70|0 +1.3.6.1.2.1.31.1.1.1.9.1073741834|70|0 +1.3.6.1.2.1.31.1.1.1.9.1073741835|70|0 +1.3.6.1.2.1.31.1.1.1.9.1073741836|70|0 +1.3.6.1.2.1.31.1.1.1.9.1073741837|70|0 +1.3.6.1.2.1.31.1.1.1.9.1073741838|70|0 +1.3.6.1.2.1.31.1.1.1.9.1073741839|70|0 +1.3.6.1.2.1.31.1.1.1.9.1073741840|70|0 +1.3.6.1.2.1.31.1.1.1.9.1073741841|70|0 +1.3.6.1.2.1.31.1.1.1.9.1073741842|70|0 +1.3.6.1.2.1.31.1.1.1.9.1073741843|70|0 +1.3.6.1.2.1.31.1.1.1.9.1073741844|70|0 +1.3.6.1.2.1.31.1.1.1.9.1073741845|70|0 +1.3.6.1.2.1.31.1.1.1.9.1073741846|70|0 +1.3.6.1.2.1.31.1.1.1.9.1073741847|70|0 +1.3.6.1.2.1.31.1.1.1.9.1073741848|70|0 +1.3.6.1.2.1.31.1.1.1.10.2|70|0 +1.3.6.1.2.1.31.1.1.1.10.3|70|568332171008 +1.3.6.1.2.1.31.1.1.1.10.4|70|257698037698 +1.3.6.1.2.1.31.1.1.1.10.18|70|0 +1.3.6.1.2.1.31.1.1.1.10.19|70|0 +1.3.6.1.2.1.31.1.1.1.10.20|70|0 +1.3.6.1.2.1.31.1.1.1.10.21|70|4341507867 +1.3.6.1.2.1.31.1.1.1.10.22|70|0 +1.3.6.1.2.1.31.1.1.1.10.23|70|358902111 +1.3.6.1.2.1.31.1.1.1.10.24|70|0 +1.3.6.1.2.1.31.1.1.1.10.25|70|0 +1.3.6.1.2.1.31.1.1.1.10.26|70|0 +1.3.6.1.2.1.31.1.1.1.10.27|70|0 +1.3.6.1.2.1.31.1.1.1.10.28|70|0 +1.3.6.1.2.1.31.1.1.1.10.29|70|0 +1.3.6.1.2.1.31.1.1.1.10.30|70|0 +1.3.6.1.2.1.31.1.1.1.10.31|70|0 +1.3.6.1.2.1.31.1.1.1.10.32|70|0 +1.3.6.1.2.1.31.1.1.1.10.33|70|0 +1.3.6.1.2.1.31.1.1.1.10.34|70|0 +1.3.6.1.2.1.31.1.1.1.10.35|70|0 +1.3.6.1.2.1.31.1.1.1.10.36|70|0 +1.3.6.1.2.1.31.1.1.1.10.37|70|0 +1.3.6.1.2.1.31.1.1.1.10.38|70|0 +1.3.6.1.2.1.31.1.1.1.10.39|70|0 +1.3.6.1.2.1.31.1.1.1.10.40|70|0 +1.3.6.1.2.1.31.1.1.1.10.41|70|0 +1.3.6.1.2.1.31.1.1.1.10.42|70|5611060252 +1.3.6.1.2.1.31.1.1.1.10.43|70|0 +1.3.6.1.2.1.31.1.1.1.10.44|70|4199067287 +1.3.6.1.2.1.31.1.1.1.10.45|70|0 +1.3.6.1.2.1.31.1.1.1.10.73|70|357964851 +1.3.6.1.2.1.31.1.1.1.10.74|70|274343524 +1.3.6.1.2.1.31.1.1.1.10.1073741825|70|0 +1.3.6.1.2.1.31.1.1.1.10.1073741826|70|9054348933 +1.3.6.1.2.1.31.1.1.1.10.1073741827|70|4584527587 +1.3.6.1.2.1.31.1.1.1.10.1073741828|70|62573154511 +1.3.6.1.2.1.31.1.1.1.10.1073741829|70|13566 +1.3.6.1.2.1.31.1.1.1.10.1073741830|70|87004547953 +1.3.6.1.2.1.31.1.1.1.10.1073741831|70|60768 +1.3.6.1.2.1.31.1.1.1.10.1073741832|70|39812215616 +1.3.6.1.2.1.31.1.1.1.10.1073741833|70|12645800818 +1.3.6.1.2.1.31.1.1.1.10.1073741834|70|0 +1.3.6.1.2.1.31.1.1.1.10.1073741835|70|0 +1.3.6.1.2.1.31.1.1.1.10.1073741836|70|0 +1.3.6.1.2.1.31.1.1.1.10.1073741837|70|5802495705 +1.3.6.1.2.1.31.1.1.1.10.1073741838|70|0 +1.3.6.1.2.1.31.1.1.1.10.1073741839|70|47202 +1.3.6.1.2.1.31.1.1.1.10.1073741840|70|75162 +1.3.6.1.2.1.31.1.1.1.10.1073741841|70|75162 +1.3.6.1.2.1.31.1.1.1.10.1073741842|70|0 +1.3.6.1.2.1.31.1.1.1.10.1073741843|70|0 +1.3.6.1.2.1.31.1.1.1.10.1073741844|70|0 +1.3.6.1.2.1.31.1.1.1.10.1073741845|70|0 +1.3.6.1.2.1.31.1.1.1.10.1073741846|70|0 +1.3.6.1.2.1.31.1.1.1.10.1073741847|70|0 +1.3.6.1.2.1.31.1.1.1.10.1073741848|70|0 +1.3.6.1.2.1.31.1.1.1.11.2|70|0 +1.3.6.1.2.1.31.1.1.1.11.3|70|103084509039 +1.3.6.1.2.1.31.1.1.1.11.4|70|25769803770 +1.3.6.1.2.1.31.1.1.1.11.18|70|0 +1.3.6.1.2.1.31.1.1.1.11.19|70|0 +1.3.6.1.2.1.31.1.1.1.11.20|70|0 +1.3.6.1.2.1.31.1.1.1.11.21|70|60251326 +1.3.6.1.2.1.31.1.1.1.11.22|70|0 +1.3.6.1.2.1.31.1.1.1.11.23|70|2866035 +1.3.6.1.2.1.31.1.1.1.11.24|70|0 +1.3.6.1.2.1.31.1.1.1.11.25|70|0 +1.3.6.1.2.1.31.1.1.1.11.26|70|0 +1.3.6.1.2.1.31.1.1.1.11.27|70|0 +1.3.6.1.2.1.31.1.1.1.11.28|70|0 +1.3.6.1.2.1.31.1.1.1.11.29|70|0 +1.3.6.1.2.1.31.1.1.1.11.30|70|0 +1.3.6.1.2.1.31.1.1.1.11.31|70|0 +1.3.6.1.2.1.31.1.1.1.11.32|70|0 +1.3.6.1.2.1.31.1.1.1.11.33|70|0 +1.3.6.1.2.1.31.1.1.1.11.34|70|0 +1.3.6.1.2.1.31.1.1.1.11.35|70|0 +1.3.6.1.2.1.31.1.1.1.11.36|70|0 +1.3.6.1.2.1.31.1.1.1.11.37|70|0 +1.3.6.1.2.1.31.1.1.1.11.38|70|0 +1.3.6.1.2.1.31.1.1.1.11.39|70|0 +1.3.6.1.2.1.31.1.1.1.11.40|70|0 +1.3.6.1.2.1.31.1.1.1.11.41|70|0 +1.3.6.1.2.1.31.1.1.1.11.42|70|41360023 +1.3.6.1.2.1.31.1.1.1.11.43|70|0 +1.3.6.1.2.1.31.1.1.1.11.44|70|60332937 +1.3.6.1.2.1.31.1.1.1.11.45|70|0 +1.3.6.1.2.1.31.1.1.1.11.73|70|2866030 +1.3.6.1.2.1.31.1.1.1.11.74|70|2222483 +1.3.6.1.2.1.31.1.1.1.11.1073741825|70|0 +1.3.6.1.2.1.31.1.1.1.11.1073741826|70|65252921 +1.3.6.1.2.1.31.1.1.1.11.1073741827|70|33951957 +1.3.6.1.2.1.31.1.1.1.11.1073741828|70|550786 +1.3.6.1.2.1.31.1.1.1.11.1073741829|70|0 +1.3.6.1.2.1.31.1.1.1.11.1073741830|70|206008289 +1.3.6.1.2.1.31.1.1.1.11.1073741831|70|4 +1.3.6.1.2.1.31.1.1.1.11.1073741832|70|193756276 +1.3.6.1.2.1.31.1.1.1.11.1073741833|70|92953945 +1.3.6.1.2.1.31.1.1.1.11.1073741834|70|0 +1.3.6.1.2.1.31.1.1.1.11.1073741835|70|0 +1.3.6.1.2.1.31.1.1.1.11.1073741836|70|0 +1.3.6.1.2.1.31.1.1.1.11.1073741837|70|21895718 +1.3.6.1.2.1.31.1.1.1.11.1073741838|70|0 +1.3.6.1.2.1.31.1.1.1.11.1073741839|70|4 +1.3.6.1.2.1.31.1.1.1.11.1073741840|70|7 +1.3.6.1.2.1.31.1.1.1.11.1073741841|70|7 +1.3.6.1.2.1.31.1.1.1.11.1073741842|70|0 +1.3.6.1.2.1.31.1.1.1.11.1073741843|70|0 +1.3.6.1.2.1.31.1.1.1.11.1073741844|70|0 +1.3.6.1.2.1.31.1.1.1.11.1073741845|70|0 +1.3.6.1.2.1.31.1.1.1.11.1073741846|70|0 +1.3.6.1.2.1.31.1.1.1.11.1073741847|70|0 +1.3.6.1.2.1.31.1.1.1.11.1073741848|70|0 +1.3.6.1.2.1.31.1.1.1.12.2|70|0 +1.3.6.1.2.1.31.1.1.1.12.3|70|8589934590 +1.3.6.1.2.1.31.1.1.1.12.4|70|17179869180 +1.3.6.1.2.1.31.1.1.1.12.18|70|0 +1.3.6.1.2.1.31.1.1.1.12.19|70|0 +1.3.6.1.2.1.31.1.1.1.12.20|70|0 +1.3.6.1.2.1.31.1.1.1.12.21|70|3309799 +1.3.6.1.2.1.31.1.1.1.12.22|70|0 +1.3.6.1.2.1.31.1.1.1.12.23|70|838393 +1.3.6.1.2.1.31.1.1.1.12.24|70|0 +1.3.6.1.2.1.31.1.1.1.12.25|70|0 +1.3.6.1.2.1.31.1.1.1.12.26|70|0 +1.3.6.1.2.1.31.1.1.1.12.27|70|0 +1.3.6.1.2.1.31.1.1.1.12.28|70|0 +1.3.6.1.2.1.31.1.1.1.12.29|70|0 +1.3.6.1.2.1.31.1.1.1.12.30|70|0 +1.3.6.1.2.1.31.1.1.1.12.31|70|0 +1.3.6.1.2.1.31.1.1.1.12.32|70|0 +1.3.6.1.2.1.31.1.1.1.12.33|70|0 +1.3.6.1.2.1.31.1.1.1.12.34|70|0 +1.3.6.1.2.1.31.1.1.1.12.35|70|0 +1.3.6.1.2.1.31.1.1.1.12.36|70|0 +1.3.6.1.2.1.31.1.1.1.12.37|70|0 +1.3.6.1.2.1.31.1.1.1.12.38|70|0 +1.3.6.1.2.1.31.1.1.1.12.39|70|0 +1.3.6.1.2.1.31.1.1.1.12.40|70|0 +1.3.6.1.2.1.31.1.1.1.12.41|70|0 +1.3.6.1.2.1.31.1.1.1.12.42|70|3310015 +1.3.6.1.2.1.31.1.1.1.12.43|70|0 +1.3.6.1.2.1.31.1.1.1.12.44|70|3593795 +1.3.6.1.2.1.31.1.1.1.12.45|70|0 +1.3.6.1.2.1.31.1.1.1.12.73|70|838391 +1.3.6.1.2.1.31.1.1.1.12.74|70|698368 +1.3.6.1.2.1.31.1.1.1.12.1073741825|70|0 +1.3.6.1.2.1.31.1.1.1.12.1073741826|70|0 +1.3.6.1.2.1.31.1.1.1.12.1073741827|70|0 +1.3.6.1.2.1.31.1.1.1.12.1073741828|70|122882161 +1.3.6.1.2.1.31.1.1.1.12.1073741829|70|21 +1.3.6.1.2.1.31.1.1.1.12.1073741830|70|42909622 +1.3.6.1.2.1.31.1.1.1.12.1073741831|70|190 +1.3.6.1.2.1.31.1.1.1.12.1073741832|70|79972540 +1.3.6.1.2.1.31.1.1.1.12.1073741833|70|0 +1.3.6.1.2.1.31.1.1.1.12.1073741834|70|0 +1.3.6.1.2.1.31.1.1.1.12.1073741835|70|0 +1.3.6.1.2.1.31.1.1.1.12.1073741836|70|0 +1.3.6.1.2.1.31.1.1.1.12.1073741837|70|0 +1.3.6.1.2.1.31.1.1.1.12.1073741838|70|0 +1.3.6.1.2.1.31.1.1.1.12.1073741839|70|169 +1.3.6.1.2.1.31.1.1.1.12.1073741840|70|260 +1.3.6.1.2.1.31.1.1.1.12.1073741841|70|260 +1.3.6.1.2.1.31.1.1.1.12.1073741842|70|0 +1.3.6.1.2.1.31.1.1.1.12.1073741843|70|0 +1.3.6.1.2.1.31.1.1.1.12.1073741844|70|0 +1.3.6.1.2.1.31.1.1.1.12.1073741845|70|0 +1.3.6.1.2.1.31.1.1.1.12.1073741846|70|0 +1.3.6.1.2.1.31.1.1.1.12.1073741847|70|0 +1.3.6.1.2.1.31.1.1.1.12.1073741848|70|0 +1.3.6.1.2.1.31.1.1.1.13.2|70|0 +1.3.6.1.2.1.31.1.1.1.13.3|70|30064771067 +1.3.6.1.2.1.31.1.1.1.13.4|70|21474836475 +1.3.6.1.2.1.31.1.1.1.13.18|70|0 +1.3.6.1.2.1.31.1.1.1.13.19|70|0 +1.3.6.1.2.1.31.1.1.1.13.20|70|0 +1.3.6.1.2.1.31.1.1.1.13.21|70|5 +1.3.6.1.2.1.31.1.1.1.13.22|70|0 +1.3.6.1.2.1.31.1.1.1.13.23|70|1 +1.3.6.1.2.1.31.1.1.1.13.24|70|0 +1.3.6.1.2.1.31.1.1.1.13.25|70|0 +1.3.6.1.2.1.31.1.1.1.13.26|70|0 +1.3.6.1.2.1.31.1.1.1.13.27|70|0 +1.3.6.1.2.1.31.1.1.1.13.28|70|0 +1.3.6.1.2.1.31.1.1.1.13.29|70|0 +1.3.6.1.2.1.31.1.1.1.13.30|70|0 +1.3.6.1.2.1.31.1.1.1.13.31|70|0 +1.3.6.1.2.1.31.1.1.1.13.32|70|0 +1.3.6.1.2.1.31.1.1.1.13.33|70|0 +1.3.6.1.2.1.31.1.1.1.13.34|70|0 +1.3.6.1.2.1.31.1.1.1.13.35|70|0 +1.3.6.1.2.1.31.1.1.1.13.36|70|0 +1.3.6.1.2.1.31.1.1.1.13.37|70|0 +1.3.6.1.2.1.31.1.1.1.13.38|70|0 +1.3.6.1.2.1.31.1.1.1.13.39|70|0 +1.3.6.1.2.1.31.1.1.1.13.40|70|0 +1.3.6.1.2.1.31.1.1.1.13.41|70|0 +1.3.6.1.2.1.31.1.1.1.13.42|70|6 +1.3.6.1.2.1.31.1.1.1.13.43|70|0 +1.3.6.1.2.1.31.1.1.1.13.44|70|4 +1.3.6.1.2.1.31.1.1.1.13.45|70|0 +1.3.6.1.2.1.31.1.1.1.13.73|70|1 +1.3.6.1.2.1.31.1.1.1.13.74|70|0 +1.3.6.1.2.1.31.1.1.1.13.1073741825|70|0 +1.3.6.1.2.1.31.1.1.1.13.1073741826|70|0 +1.3.6.1.2.1.31.1.1.1.13.1073741827|70|0 +1.3.6.1.2.1.31.1.1.1.13.1073741828|70|5015 +1.3.6.1.2.1.31.1.1.1.13.1073741829|70|0 +1.3.6.1.2.1.31.1.1.1.13.1073741830|70|2148 +1.3.6.1.2.1.31.1.1.1.13.1073741831|70|1 +1.3.6.1.2.1.31.1.1.1.13.1073741832|70|2867 +1.3.6.1.2.1.31.1.1.1.13.1073741833|70|0 +1.3.6.1.2.1.31.1.1.1.13.1073741834|70|0 +1.3.6.1.2.1.31.1.1.1.13.1073741835|70|0 +1.3.6.1.2.1.31.1.1.1.13.1073741836|70|0 +1.3.6.1.2.1.31.1.1.1.13.1073741837|70|0 +1.3.6.1.2.1.31.1.1.1.13.1073741838|70|0 +1.3.6.1.2.1.31.1.1.1.13.1073741839|70|1 +1.3.6.1.2.1.31.1.1.1.13.1073741840|70|1 +1.3.6.1.2.1.31.1.1.1.13.1073741841|70|1 +1.3.6.1.2.1.31.1.1.1.13.1073741842|70|0 +1.3.6.1.2.1.31.1.1.1.13.1073741843|70|0 +1.3.6.1.2.1.31.1.1.1.13.1073741844|70|0 +1.3.6.1.2.1.31.1.1.1.13.1073741845|70|0 +1.3.6.1.2.1.31.1.1.1.13.1073741846|70|0 +1.3.6.1.2.1.31.1.1.1.13.1073741847|70|0 +1.3.6.1.2.1.31.1.1.1.13.1073741848|70|0 +1.3.6.1.2.1.31.1.1.1.14.2|2|1 +1.3.6.1.2.1.31.1.1.1.14.3|2|1 +1.3.6.1.2.1.31.1.1.1.14.4|2|1 +1.3.6.1.2.1.31.1.1.1.14.10|2|1 +1.3.6.1.2.1.31.1.1.1.14.11|2|1 +1.3.6.1.2.1.31.1.1.1.14.12|2|1 +1.3.6.1.2.1.31.1.1.1.14.13|2|1 +1.3.6.1.2.1.31.1.1.1.14.14|2|1 +1.3.6.1.2.1.31.1.1.1.14.15|2|1 +1.3.6.1.2.1.31.1.1.1.14.16|2|1 +1.3.6.1.2.1.31.1.1.1.14.17|2|1 +1.3.6.1.2.1.31.1.1.1.14.18|2|1 +1.3.6.1.2.1.31.1.1.1.14.19|2|1 +1.3.6.1.2.1.31.1.1.1.14.20|2|1 +1.3.6.1.2.1.31.1.1.1.14.21|2|1 +1.3.6.1.2.1.31.1.1.1.14.22|2|1 +1.3.6.1.2.1.31.1.1.1.14.23|2|1 +1.3.6.1.2.1.31.1.1.1.14.24|2|1 +1.3.6.1.2.1.31.1.1.1.14.25|2|1 +1.3.6.1.2.1.31.1.1.1.14.26|2|1 +1.3.6.1.2.1.31.1.1.1.14.27|2|1 +1.3.6.1.2.1.31.1.1.1.14.28|2|1 +1.3.6.1.2.1.31.1.1.1.14.29|2|1 +1.3.6.1.2.1.31.1.1.1.14.30|2|1 +1.3.6.1.2.1.31.1.1.1.14.31|2|1 +1.3.6.1.2.1.31.1.1.1.14.32|2|1 +1.3.6.1.2.1.31.1.1.1.14.33|2|1 +1.3.6.1.2.1.31.1.1.1.14.34|2|1 +1.3.6.1.2.1.31.1.1.1.14.35|2|1 +1.3.6.1.2.1.31.1.1.1.14.36|2|1 +1.3.6.1.2.1.31.1.1.1.14.37|2|1 +1.3.6.1.2.1.31.1.1.1.14.38|2|1 +1.3.6.1.2.1.31.1.1.1.14.39|2|1 +1.3.6.1.2.1.31.1.1.1.14.40|2|1 +1.3.6.1.2.1.31.1.1.1.14.41|2|1 +1.3.6.1.2.1.31.1.1.1.14.42|2|1 +1.3.6.1.2.1.31.1.1.1.14.43|2|1 +1.3.6.1.2.1.31.1.1.1.14.44|2|1 +1.3.6.1.2.1.31.1.1.1.14.45|2|1 +1.3.6.1.2.1.31.1.1.1.14.54|2|1 +1.3.6.1.2.1.31.1.1.1.14.73|2|2 +1.3.6.1.2.1.31.1.1.1.14.74|2|1 +1.3.6.1.2.1.31.1.1.1.14.76|2|1 +1.3.6.1.2.1.31.1.1.1.15.2|66|0 +1.3.6.1.2.1.31.1.1.1.15.3|66|1000 +1.3.6.1.2.1.31.1.1.1.15.4|66|1000 +1.3.6.1.2.1.31.1.1.1.15.10|66|0 +1.3.6.1.2.1.31.1.1.1.15.11|66|0 +1.3.6.1.2.1.31.1.1.1.15.12|66|0 +1.3.6.1.2.1.31.1.1.1.15.13|66|0 +1.3.6.1.2.1.31.1.1.1.15.14|66|0 +1.3.6.1.2.1.31.1.1.1.15.15|66|0 +1.3.6.1.2.1.31.1.1.1.15.16|66|0 +1.3.6.1.2.1.31.1.1.1.15.17|66|0 +1.3.6.1.2.1.31.1.1.1.15.18|66|10000 +1.3.6.1.2.1.31.1.1.1.15.19|66|10000 +1.3.6.1.2.1.31.1.1.1.15.20|66|10000 +1.3.6.1.2.1.31.1.1.1.15.21|66|10000 +1.3.6.1.2.1.31.1.1.1.15.22|66|1000 +1.3.6.1.2.1.31.1.1.1.15.23|66|1000 +1.3.6.1.2.1.31.1.1.1.15.24|66|1000 +1.3.6.1.2.1.31.1.1.1.15.25|66|1000 +1.3.6.1.2.1.31.1.1.1.15.26|66|1000 +1.3.6.1.2.1.31.1.1.1.15.27|66|1000 +1.3.6.1.2.1.31.1.1.1.15.28|66|1000 +1.3.6.1.2.1.31.1.1.1.15.29|66|1000 +1.3.6.1.2.1.31.1.1.1.15.30|66|1000 +1.3.6.1.2.1.31.1.1.1.15.31|66|1000 +1.3.6.1.2.1.31.1.1.1.15.32|66|1000 +1.3.6.1.2.1.31.1.1.1.15.33|66|1000 +1.3.6.1.2.1.31.1.1.1.15.34|66|1000 +1.3.6.1.2.1.31.1.1.1.15.35|66|1000 +1.3.6.1.2.1.31.1.1.1.15.36|66|1000 +1.3.6.1.2.1.31.1.1.1.15.37|66|1000 +1.3.6.1.2.1.31.1.1.1.15.38|66|1000 +1.3.6.1.2.1.31.1.1.1.15.39|66|1000 +1.3.6.1.2.1.31.1.1.1.15.40|66|1000 +1.3.6.1.2.1.31.1.1.1.15.41|66|1000 +1.3.6.1.2.1.31.1.1.1.15.42|66|10000 +1.3.6.1.2.1.31.1.1.1.15.43|66|10000 +1.3.6.1.2.1.31.1.1.1.15.44|66|10000 +1.3.6.1.2.1.31.1.1.1.15.45|66|10000 +1.3.6.1.2.1.31.1.1.1.15.54|66|0 +1.3.6.1.2.1.31.1.1.1.15.73|66|1000 +1.3.6.1.2.1.31.1.1.1.15.74|66|10 +1.3.6.1.2.1.31.1.1.1.15.76|66|0 +1.3.6.1.2.1.31.1.1.1.15.1073741825|66|1000 +1.3.6.1.2.1.31.1.1.1.15.1073741826|66|1000 +1.3.6.1.2.1.31.1.1.1.15.1073741827|66|1000 +1.3.6.1.2.1.31.1.1.1.15.1073741828|66|1000 +1.3.6.1.2.1.31.1.1.1.15.1073741829|66|1000 +1.3.6.1.2.1.31.1.1.1.15.1073741830|66|1000 +1.3.6.1.2.1.31.1.1.1.15.1073741831|66|1000 +1.3.6.1.2.1.31.1.1.1.15.1073741832|66|1000 +1.3.6.1.2.1.31.1.1.1.15.1073741833|66|1000 +1.3.6.1.2.1.31.1.1.1.15.1073741834|66|1000 +1.3.6.1.2.1.31.1.1.1.15.1073741835|66|1000 +1.3.6.1.2.1.31.1.1.1.15.1073741836|66|1000 +1.3.6.1.2.1.31.1.1.1.15.1073741837|66|1000 +1.3.6.1.2.1.31.1.1.1.15.1073741838|66|1000 +1.3.6.1.2.1.31.1.1.1.15.1073741839|66|1000 +1.3.6.1.2.1.31.1.1.1.15.1073741840|66|1000 +1.3.6.1.2.1.31.1.1.1.15.1073741841|66|1000 +1.3.6.1.2.1.31.1.1.1.15.1073741842|66|1000 +1.3.6.1.2.1.31.1.1.1.15.1073741843|66|1000 +1.3.6.1.2.1.31.1.1.1.15.1073741844|66|1000 +1.3.6.1.2.1.31.1.1.1.15.1073741845|66|1000 +1.3.6.1.2.1.31.1.1.1.15.1073741846|66|1000 +1.3.6.1.2.1.31.1.1.1.15.1073741847|66|1000 +1.3.6.1.2.1.31.1.1.1.15.1073741848|66|1000 +1.3.6.1.2.1.31.1.1.1.16.2|2|2 +1.3.6.1.2.1.31.1.1.1.16.3|2|2 +1.3.6.1.2.1.31.1.1.1.16.4|2|2 +1.3.6.1.2.1.31.1.1.1.16.10|2|2 +1.3.6.1.2.1.31.1.1.1.16.11|2|2 +1.3.6.1.2.1.31.1.1.1.16.12|2|2 +1.3.6.1.2.1.31.1.1.1.16.13|2|2 +1.3.6.1.2.1.31.1.1.1.16.14|2|2 +1.3.6.1.2.1.31.1.1.1.16.15|2|2 +1.3.6.1.2.1.31.1.1.1.16.16|2|2 +1.3.6.1.2.1.31.1.1.1.16.17|2|2 +1.3.6.1.2.1.31.1.1.1.16.18|2|2 +1.3.6.1.2.1.31.1.1.1.16.19|2|2 +1.3.6.1.2.1.31.1.1.1.16.20|2|2 +1.3.6.1.2.1.31.1.1.1.16.21|2|2 +1.3.6.1.2.1.31.1.1.1.16.22|2|2 +1.3.6.1.2.1.31.1.1.1.16.23|2|2 +1.3.6.1.2.1.31.1.1.1.16.24|2|2 +1.3.6.1.2.1.31.1.1.1.16.25|2|2 +1.3.6.1.2.1.31.1.1.1.16.26|2|2 +1.3.6.1.2.1.31.1.1.1.16.27|2|2 +1.3.6.1.2.1.31.1.1.1.16.28|2|2 +1.3.6.1.2.1.31.1.1.1.16.29|2|2 +1.3.6.1.2.1.31.1.1.1.16.30|2|2 +1.3.6.1.2.1.31.1.1.1.16.31|2|2 +1.3.6.1.2.1.31.1.1.1.16.32|2|2 +1.3.6.1.2.1.31.1.1.1.16.33|2|2 +1.3.6.1.2.1.31.1.1.1.16.34|2|2 +1.3.6.1.2.1.31.1.1.1.16.35|2|2 +1.3.6.1.2.1.31.1.1.1.16.36|2|2 +1.3.6.1.2.1.31.1.1.1.16.37|2|2 +1.3.6.1.2.1.31.1.1.1.16.38|2|2 +1.3.6.1.2.1.31.1.1.1.16.39|2|2 +1.3.6.1.2.1.31.1.1.1.16.40|2|2 +1.3.6.1.2.1.31.1.1.1.16.41|2|2 +1.3.6.1.2.1.31.1.1.1.16.42|2|2 +1.3.6.1.2.1.31.1.1.1.16.43|2|2 +1.3.6.1.2.1.31.1.1.1.16.44|2|2 +1.3.6.1.2.1.31.1.1.1.16.45|2|2 +1.3.6.1.2.1.31.1.1.1.16.54|2|2 +1.3.6.1.2.1.31.1.1.1.16.73|2|2 +1.3.6.1.2.1.31.1.1.1.16.74|2|2 +1.3.6.1.2.1.31.1.1.1.16.76|2|2 +1.3.6.1.2.1.31.1.1.1.17.2|2|2 +1.3.6.1.2.1.31.1.1.1.17.3|2|1 +1.3.6.1.2.1.31.1.1.1.17.4|2|1 +1.3.6.1.2.1.31.1.1.1.17.10|2|1 +1.3.6.1.2.1.31.1.1.1.17.11|2|1 +1.3.6.1.2.1.31.1.1.1.17.12|2|1 +1.3.6.1.2.1.31.1.1.1.17.13|2|1 +1.3.6.1.2.1.31.1.1.1.17.14|2|1 +1.3.6.1.2.1.31.1.1.1.17.15|2|1 +1.3.6.1.2.1.31.1.1.1.17.16|2|1 +1.3.6.1.2.1.31.1.1.1.17.17|2|1 +1.3.6.1.2.1.31.1.1.1.17.18|2|1 +1.3.6.1.2.1.31.1.1.1.17.19|2|1 +1.3.6.1.2.1.31.1.1.1.17.20|2|1 +1.3.6.1.2.1.31.1.1.1.17.21|2|1 +1.3.6.1.2.1.31.1.1.1.17.22|2|1 +1.3.6.1.2.1.31.1.1.1.17.23|2|1 +1.3.6.1.2.1.31.1.1.1.17.24|2|1 +1.3.6.1.2.1.31.1.1.1.17.25|2|1 +1.3.6.1.2.1.31.1.1.1.17.26|2|1 +1.3.6.1.2.1.31.1.1.1.17.27|2|1 +1.3.6.1.2.1.31.1.1.1.17.28|2|1 +1.3.6.1.2.1.31.1.1.1.17.29|2|1 +1.3.6.1.2.1.31.1.1.1.17.30|2|1 +1.3.6.1.2.1.31.1.1.1.17.31|2|1 +1.3.6.1.2.1.31.1.1.1.17.32|2|1 +1.3.6.1.2.1.31.1.1.1.17.33|2|1 +1.3.6.1.2.1.31.1.1.1.17.34|2|1 +1.3.6.1.2.1.31.1.1.1.17.35|2|1 +1.3.6.1.2.1.31.1.1.1.17.36|2|1 +1.3.6.1.2.1.31.1.1.1.17.37|2|1 +1.3.6.1.2.1.31.1.1.1.17.38|2|1 +1.3.6.1.2.1.31.1.1.1.17.39|2|1 +1.3.6.1.2.1.31.1.1.1.17.40|2|1 +1.3.6.1.2.1.31.1.1.1.17.41|2|1 +1.3.6.1.2.1.31.1.1.1.17.42|2|1 +1.3.6.1.2.1.31.1.1.1.17.43|2|1 +1.3.6.1.2.1.31.1.1.1.17.44|2|1 +1.3.6.1.2.1.31.1.1.1.17.45|2|1 +1.3.6.1.2.1.31.1.1.1.17.54|2|2 +1.3.6.1.2.1.31.1.1.1.17.73|2|2 +1.3.6.1.2.1.31.1.1.1.17.74|2|2 +1.3.6.1.2.1.31.1.1.1.17.76|2|2 +1.3.6.1.2.1.31.1.1.1.17.1073741825|2|1 +1.3.6.1.2.1.31.1.1.1.17.1073741826|2|1 +1.3.6.1.2.1.31.1.1.1.17.1073741827|2|1 +1.3.6.1.2.1.31.1.1.1.17.1073741828|2|1 +1.3.6.1.2.1.31.1.1.1.17.1073741829|2|1 +1.3.6.1.2.1.31.1.1.1.17.1073741830|2|1 +1.3.6.1.2.1.31.1.1.1.17.1073741831|2|1 +1.3.6.1.2.1.31.1.1.1.17.1073741832|2|1 +1.3.6.1.2.1.31.1.1.1.17.1073741833|2|1 +1.3.6.1.2.1.31.1.1.1.17.1073741834|2|1 +1.3.6.1.2.1.31.1.1.1.17.1073741835|2|1 +1.3.6.1.2.1.31.1.1.1.17.1073741836|2|1 +1.3.6.1.2.1.31.1.1.1.17.1073741837|2|1 +1.3.6.1.2.1.31.1.1.1.17.1073741838|2|1 +1.3.6.1.2.1.31.1.1.1.17.1073741839|2|1 +1.3.6.1.2.1.31.1.1.1.17.1073741840|2|1 +1.3.6.1.2.1.31.1.1.1.17.1073741841|2|1 +1.3.6.1.2.1.31.1.1.1.17.1073741842|2|1 +1.3.6.1.2.1.31.1.1.1.17.1073741843|2|1 +1.3.6.1.2.1.31.1.1.1.17.1073741844|2|1 +1.3.6.1.2.1.31.1.1.1.17.1073741845|2|1 +1.3.6.1.2.1.31.1.1.1.17.1073741846|2|1 +1.3.6.1.2.1.31.1.1.1.17.1073741847|2|1 +1.3.6.1.2.1.31.1.1.1.17.1073741848|2|1 +1.3.6.1.2.1.31.1.1.1.18.2|4| +1.3.6.1.2.1.31.1.1.1.18.3|4| +1.3.6.1.2.1.31.1.1.1.18.4|4| +1.3.6.1.2.1.31.1.1.1.18.10|4| +1.3.6.1.2.1.31.1.1.1.18.11|4| +1.3.6.1.2.1.31.1.1.1.18.12|4| +1.3.6.1.2.1.31.1.1.1.18.13|4| +1.3.6.1.2.1.31.1.1.1.18.14|4| +1.3.6.1.2.1.31.1.1.1.18.15|4| +1.3.6.1.2.1.31.1.1.1.18.16|4| +1.3.6.1.2.1.31.1.1.1.18.17|4| +1.3.6.1.2.1.31.1.1.1.18.18|4| +1.3.6.1.2.1.31.1.1.1.18.19|4|LAB01-PE04 xe-0/1/0 +1.3.6.1.2.1.31.1.1.1.18.20|4| +1.3.6.1.2.1.31.1.1.1.18.21|4|LAB01-PE02 Te0/0/27 +1.3.6.1.2.1.31.1.1.1.18.22|4| +1.3.6.1.2.1.31.1.1.1.18.23|4|AR1220C-CPE01 Gi0/0/9 +1.3.6.1.2.1.31.1.1.1.18.24|4| +1.3.6.1.2.1.31.1.1.1.18.25|4| +1.3.6.1.2.1.31.1.1.1.18.26|4| +1.3.6.1.2.1.31.1.1.1.18.27|4| +1.3.6.1.2.1.31.1.1.1.18.28|4| +1.3.6.1.2.1.31.1.1.1.18.29|4| +1.3.6.1.2.1.31.1.1.1.18.30|4| +1.3.6.1.2.1.31.1.1.1.18.31|4| +1.3.6.1.2.1.31.1.1.1.18.32|4| +1.3.6.1.2.1.31.1.1.1.18.33|4| +1.3.6.1.2.1.31.1.1.1.18.34|4| +1.3.6.1.2.1.31.1.1.1.18.35|4| +1.3.6.1.2.1.31.1.1.1.18.36|4| +1.3.6.1.2.1.31.1.1.1.18.37|4| +1.3.6.1.2.1.31.1.1.1.18.38|4| +1.3.6.1.2.1.31.1.1.1.18.39|4| +1.3.6.1.2.1.31.1.1.1.18.40|4| +1.3.6.1.2.1.31.1.1.1.18.41|4| +1.3.6.1.2.1.31.1.1.1.18.42|4|LAB01-P01 Te0/0/0/1 +1.3.6.1.2.1.31.1.1.1.18.43|4| +1.3.6.1.2.1.31.1.1.1.18.44|4|LAB01-PE03 Te0/0/0/8 +1.3.6.1.2.1.31.1.1.1.18.45|4| +1.3.6.1.2.1.31.1.1.1.18.54|4| +1.3.6.1.2.1.31.1.1.1.18.73|4|AR1220C-CPE01 Gi0/0/9.10 +1.3.6.1.2.1.31.1.1.1.18.74|4|AR1220C-CPE01 Gi0/0/10.10 +1.3.6.1.2.1.31.1.1.1.18.76|4| +1.3.6.1.2.1.31.1.1.1.18.1073741825|4| +1.3.6.1.2.1.31.1.1.1.18.1073741826|4| +1.3.6.1.2.1.31.1.1.1.18.1073741827|4| +1.3.6.1.2.1.31.1.1.1.18.1073741828|4| +1.3.6.1.2.1.31.1.1.1.18.1073741829|4| +1.3.6.1.2.1.31.1.1.1.18.1073741830|4| +1.3.6.1.2.1.31.1.1.1.18.1073741831|4| +1.3.6.1.2.1.31.1.1.1.18.1073741832|4| +1.3.6.1.2.1.31.1.1.1.18.1073741833|4| +1.3.6.1.2.1.31.1.1.1.18.1073741834|4| +1.3.6.1.2.1.31.1.1.1.18.1073741835|4| +1.3.6.1.2.1.31.1.1.1.18.1073741836|4| +1.3.6.1.2.1.31.1.1.1.18.1073741837|4| +1.3.6.1.2.1.31.1.1.1.18.1073741838|4| +1.3.6.1.2.1.31.1.1.1.18.1073741839|4| +1.3.6.1.2.1.31.1.1.1.18.1073741840|4| +1.3.6.1.2.1.31.1.1.1.18.1073741841|4| +1.3.6.1.2.1.31.1.1.1.18.1073741842|4| +1.3.6.1.2.1.31.1.1.1.18.1073741843|4| +1.3.6.1.2.1.31.1.1.1.18.1073741844|4| +1.3.6.1.2.1.31.1.1.1.18.1073741845|4| +1.3.6.1.2.1.31.1.1.1.18.1073741846|4| +1.3.6.1.2.1.31.1.1.1.18.1073741847|4| +1.3.6.1.2.1.31.1.1.1.18.1073741848|4| +1.3.6.1.2.1.31.1.1.1.19.2|67|0 +1.3.6.1.2.1.31.1.1.1.19.3|67|0 +1.3.6.1.2.1.31.1.1.1.19.4|67|0 +1.3.6.1.2.1.31.1.1.1.19.18|67|16300 +1.3.6.1.2.1.31.1.1.1.19.19|67|16300 +1.3.6.1.2.1.31.1.1.1.19.20|67|16300 +1.3.6.1.2.1.31.1.1.1.19.21|67|16300 +1.3.6.1.2.1.31.1.1.1.19.22|67|16300 +1.3.6.1.2.1.31.1.1.1.19.23|67|16300 +1.3.6.1.2.1.31.1.1.1.19.24|67|16300 +1.3.6.1.2.1.31.1.1.1.19.25|67|16300 +1.3.6.1.2.1.31.1.1.1.19.26|67|16300 +1.3.6.1.2.1.31.1.1.1.19.27|67|16300 +1.3.6.1.2.1.31.1.1.1.19.28|67|16300 +1.3.6.1.2.1.31.1.1.1.19.29|67|16300 +1.3.6.1.2.1.31.1.1.1.19.30|67|16300 +1.3.6.1.2.1.31.1.1.1.19.31|67|16300 +1.3.6.1.2.1.31.1.1.1.19.32|67|16300 +1.3.6.1.2.1.31.1.1.1.19.33|67|16300 +1.3.6.1.2.1.31.1.1.1.19.34|67|16300 +1.3.6.1.2.1.31.1.1.1.19.35|67|16300 +1.3.6.1.2.1.31.1.1.1.19.36|67|16300 +1.3.6.1.2.1.31.1.1.1.19.37|67|16300 +1.3.6.1.2.1.31.1.1.1.19.38|67|16300 +1.3.6.1.2.1.31.1.1.1.19.39|67|16300 +1.3.6.1.2.1.31.1.1.1.19.40|67|16300 +1.3.6.1.2.1.31.1.1.1.19.41|67|16300 +1.3.6.1.2.1.31.1.1.1.19.42|67|16300 +1.3.6.1.2.1.31.1.1.1.19.43|67|16300 +1.3.6.1.2.1.31.1.1.1.19.44|67|16300 +1.3.6.1.2.1.31.1.1.1.19.45|67|16300 +1.3.6.1.2.1.31.1.1.1.19.73|67|16600 +1.3.6.1.2.1.31.1.1.1.19.74|67|2400 +1.3.6.1.2.1.31.1.1.1.19.1073741825|67|0 +1.3.6.1.2.1.31.1.1.1.19.1073741826|67|0 +1.3.6.1.2.1.31.1.1.1.19.1073741827|67|0 +1.3.6.1.2.1.31.1.1.1.19.1073741828|67|0 +1.3.6.1.2.1.31.1.1.1.19.1073741829|67|0 +1.3.6.1.2.1.31.1.1.1.19.1073741830|67|0 +1.3.6.1.2.1.31.1.1.1.19.1073741831|67|0 +1.3.6.1.2.1.31.1.1.1.19.1073741832|67|0 +1.3.6.1.2.1.31.1.1.1.19.1073741833|67|0 +1.3.6.1.2.1.31.1.1.1.19.1073741834|67|0 +1.3.6.1.2.1.31.1.1.1.19.1073741835|67|0 +1.3.6.1.2.1.31.1.1.1.19.1073741836|67|0 +1.3.6.1.2.1.31.1.1.1.19.1073741837|67|0 +1.3.6.1.2.1.31.1.1.1.19.1073741838|67|0 +1.3.6.1.2.1.31.1.1.1.19.1073741839|67|0 +1.3.6.1.2.1.31.1.1.1.19.1073741840|67|0 +1.3.6.1.2.1.31.1.1.1.19.1073741841|67|0 +1.3.6.1.2.1.31.1.1.1.19.1073741842|67|0 +1.3.6.1.2.1.31.1.1.1.19.1073741843|67|0 +1.3.6.1.2.1.31.1.1.1.19.1073741844|67|0 +1.3.6.1.2.1.31.1.1.1.19.1073741845|67|0 +1.3.6.1.2.1.31.1.1.1.19.1073741846|67|0 +1.3.6.1.2.1.31.1.1.1.19.1073741847|67|0 +1.3.6.1.2.1.31.1.1.1.19.1073741848|67|0 +1.3.6.1.2.1.47.1.1.1.1.2.172193|4|Voltage Sensor - 3.3V_OCXO_RSP +1.3.6.1.2.1.47.1.1.1.1.2.319242|4|Voltage Sensor - VP3P3_CAN +1.3.6.1.2.1.47.1.1.1.1.2.320862|4|Voltage Sensor - 1.8V_USB +1.3.6.1.2.1.47.1.1.1.1.2.322450|4|Voltage Sensor - 1.9V_LDO_RSP +1.3.6.1.2.1.47.1.1.1.1.2.1930929|4|Transceiver Transmit Bias Current Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2237736|4|Power-Module host +1.3.6.1.2.1.47.1.1.1.1.2.2359704|4|CPU +1.3.6.1.2.1.47.1.1.1.1.2.2559673|4|Voltage Sensor - VP1P5_DB +1.3.6.1.2.1.47.1.1.1.1.2.2561229|4|Voltage Sensor - 1.8V_LGTNG +1.3.6.1.2.1.47.1.1.1.1.2.3355929|4|Power Module Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.5199496|4|Ethernet Plug Port Slot +1.3.6.1.2.1.47.1.1.1.1.2.5225733|4|Modular Linecard Daughter board +1.3.6.1.2.1.47.1.1.1.1.2.5456057|4|GigabitEthernet Port +1.3.6.1.2.1.47.1.1.1.1.2.5457613|4|GigabitEthernet Port +1.3.6.1.2.1.47.1.1.1.1.2.5460821|4|GigabitEthernet Port +1.3.6.1.2.1.47.1.1.1.1.2.5607998|4|GigabitEthernet Port +1.3.6.1.2.1.47.1.1.1.1.2.5955364|4|GigabitEthernet Port +1.3.6.1.2.1.47.1.1.1.1.2.5959917|4|ASR9001 Native Port Slot +1.3.6.1.2.1.47.1.1.1.1.2.6762374|4|Hot Temperature SensorHotspot1 +1.3.6.1.2.1.47.1.1.1.1.2.6763994|4|Voltage Sensor - 1.2V_BLWDO +1.3.6.1.2.1.47.1.1.1.1.2.6836438|4|Voltage Sensor - 0.9V_PHY_CORE +1.3.6.1.2.1.47.1.1.1.1.2.6838122|4|Voltage Sensor - VP1P8_SAC_VDDR +1.3.6.1.2.1.47.1.1.1.1.2.7335745|4|Voltage Sensor - VP3P3_CAN +1.3.6.1.2.1.47.1.1.1.1.2.7337365|4|Voltage Sensor - 5.0V +1.3.6.1.2.1.47.1.1.1.1.2.7357110|4|ASR9K Generic Fan +1.3.6.1.2.1.47.1.1.1.1.2.7358666|4|ASR9K Generic Fan +1.3.6.1.2.1.47.1.1.1.1.2.7429666|4|Transceiver Tx Power Sensor +1.3.6.1.2.1.47.1.1.1.1.2.8426608|4|Voltage Sensor - 2.5V_CLK_LDO +1.3.6.1.2.1.47.1.1.1.1.2.8428164|4|Voltage Sensor - 0.9V_TCAM1_CORE +1.3.6.1.2.1.47.1.1.1.1.2.8429784|4|Voltage Sensor - 1.0V_SKT +1.3.6.1.2.1.47.1.1.1.1.2.8555060|4|Ten GigabitEthernet Port +1.3.6.1.2.1.47.1.1.1.1.2.8773284|4|TenGigE Port +1.3.6.1.2.1.47.1.1.1.1.2.8916259|4|Voltage Sensor - 1.0V_PEX2 +1.3.6.1.2.1.47.1.1.1.1.2.9714479|4|Transceiver Voltage Sensor - 3.3V +1.3.6.1.2.1.47.1.1.1.1.2.9716067|4|Transceiver Temperature Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10077780|4|Ethernet Plug Port Slot +1.3.6.1.2.1.47.1.1.1.1.2.10090737|4|Ethernet Plug Port Slot +1.3.6.1.2.1.47.1.1.1.1.2.10527011|4|Ethernet Plug Port Slot +1.3.6.1.2.1.47.1.1.1.1.2.11426991|4|RSP Control Ethernet Port +1.3.6.1.2.1.47.1.1.1.1.2.11517556|4|Ethernet Plug Port Slot +1.3.6.1.2.1.47.1.1.1.1.2.11630420|4|RSP Control Ethernet Port +1.3.6.1.2.1.47.1.1.1.1.2.11632104|4|RSP Control Ethernet Port +1.3.6.1.2.1.47.1.1.1.1.2.11779185|4|RSP Control Ethernet Port +1.3.6.1.2.1.47.1.1.1.1.2.11780741|4|RSP Control Ethernet Port +1.3.6.1.2.1.47.1.1.1.1.2.12269960|4|ASR9K Generic Fan +1.3.6.1.2.1.47.1.1.1.1.2.12333373|4|Ethernet Plug Port Slot +1.3.6.1.2.1.47.1.1.1.1.2.12510322|4|Ethernet Plug Port Slot +1.3.6.1.2.1.47.1.1.1.1.2.12905956|4|Hot Temperature SensorHotspot0 +1.3.6.1.2.1.47.1.1.1.1.2.12907576|4|Voltage Sensor - 3.3V_RSP +1.3.6.1.2.1.47.1.1.1.1.2.13795549|4|Transceiver Transmit Bias Current Sensor +1.3.6.1.2.1.47.1.1.1.1.2.13805629|4|Fan Speed Sensor +1.3.6.1.2.1.47.1.1.1.1.2.14322921|4|Ethernet Plug Port Slot +1.3.6.1.2.1.47.1.1.1.1.2.14585855|4|ASR 9000 4-port 10GE Modular Port Adapter +1.3.6.1.2.1.47.1.1.1.1.2.14591308|4|Voltage Sensor - VP1P2_LDO +1.3.6.1.2.1.47.1.1.1.1.2.14592896|4|Voltage Sensor - VP0P9_HEXP0 +1.3.6.1.2.1.47.1.1.1.1.2.14780750|4|Transceiver Voltage Sensor - 3.3V +1.3.6.1.2.1.47.1.1.1.1.2.14782338|4|Transceiver Temperature Sensor +1.3.6.1.2.1.47.1.1.1.1.2.15177601|4|Fan Speed Sensor +1.3.6.1.2.1.47.1.1.1.1.2.15394522|4|Ethernet Plug Port Slot +1.3.6.1.2.1.47.1.1.1.1.2.15526104|4|1000BASE-T SFP (NEBS 3), UTP, 100m +1.3.6.1.2.1.47.1.1.1.1.2.15858003|4|Power Module Capacity Sensor +1.3.6.1.2.1.47.1.1.1.1.2.16249545|4|Voltage Sensor - VP3P3 +1.3.6.1.2.1.47.1.1.1.1.2.16251165|4|Inlet Temperature SensorInlet0 +1.3.6.1.2.1.47.1.1.1.1.2.16949774|4|Voltage Sensor - 5.0V +1.3.6.1.2.1.47.1.1.1.1.2.17096855|4|Voltage Sensor - 12.0V +1.3.6.1.2.1.47.1.1.1.1.2.17098539|4|Voltage Sensor - 1.2V_TIMEX +1.3.6.1.2.1.47.1.1.1.1.2.17452244|4|Ethernet Plug Port Slot +1.3.6.1.2.1.47.1.1.1.1.2.17977066|4|Fan Speed Sensor +1.3.6.1.2.1.47.1.1.1.1.2.18708510|4|Transceiver Rx Power Sensor +1.3.6.1.2.1.47.1.1.1.1.2.18788073|4|Line Card host +1.3.6.1.2.1.47.1.1.1.1.2.19161232|4|Ethernet Plug Port Slot +1.3.6.1.2.1.47.1.1.1.1.2.19337222|4|Voltage Sensor - 1.5V_SKT +1.3.6.1.2.1.47.1.1.1.1.2.19338842|4|Voltage Sensor - 2.5V_DB +1.3.6.1.2.1.47.1.1.1.1.2.19441360|4|Fan Speed Sensor +1.3.6.1.2.1.47.1.1.1.1.2.19750579|4|Power-Module host +1.3.6.1.2.1.47.1.1.1.1.2.20133606|4|Power Module Capacity Sensor +1.3.6.1.2.1.47.1.1.1.1.2.21500831|4|ASR9001 Virtual Bay +1.3.6.1.2.1.47.1.1.1.1.2.21657197|4|ASR-9001 AC Power Supply +1.3.6.1.2.1.47.1.1.1.1.2.22233606|4|GigabitEthernet Port +1.3.6.1.2.1.47.1.1.1.1.2.22235226|4|GigabitEthernet Port +1.3.6.1.2.1.47.1.1.1.1.2.22238498|4|GigabitEthernet Port +1.3.6.1.2.1.47.1.1.1.1.2.22383991|4|GigabitEthernet Port +1.3.6.1.2.1.47.1.1.1.1.2.22731389|4|GigabitEthernet Port +1.3.6.1.2.1.47.1.1.1.1.2.22732977|4|GigabitEthernet Port +1.3.6.1.2.1.47.1.1.1.1.2.23538399|4|Hot Temperature SensorHotspot0 +1.3.6.1.2.1.47.1.1.1.1.2.23539987|4|Hot Temperature SensorHotspot4 +1.3.6.1.2.1.47.1.1.1.1.2.23541671|4|Voltage Sensor - 1.0V_FPGA_CORE_LC +1.3.6.1.2.1.47.1.1.1.1.2.23612527|4|Voltage Sensor - 1.2V_LC +1.3.6.1.2.1.47.1.1.1.1.2.23614115|4|Voltage Sensor - VP1P0_SAC_CORE +1.3.6.1.2.1.47.1.1.1.1.2.23615735|4|Voltage Sensor - VP1P2_SAC_VDDT +1.3.6.1.2.1.47.1.1.1.1.2.24113454|4|Voltage Sensor - VP1P5 +1.3.6.1.2.1.47.1.1.1.1.2.24115042|4|Voltage Sensor - 0.75V +1.3.6.1.2.1.47.1.1.1.1.2.24133071|4|ASR9K Generic Fan +1.3.6.1.2.1.47.1.1.1.1.2.24134659|4|ASR9K Generic Fan +1.3.6.1.2.1.47.1.1.1.1.2.24137963|4|ASR9K Generic Fan +1.3.6.1.2.1.47.1.1.1.1.2.24205691|4|Transceiver Rx Power Sensor +1.3.6.1.2.1.47.1.1.1.1.2.24555730|4|ASR-9001 Chassis +1.3.6.1.2.1.47.1.1.1.1.2.25205777|4|Voltage Sensor - 3.3V_CLK_LDO +1.3.6.1.2.1.47.1.1.1.1.2.25207461|4|Voltage Sensor - 1.0V_SKM +1.3.6.1.2.1.47.1.1.1.1.2.25332609|4|Ten GigabitEthernet Port +1.3.6.1.2.1.47.1.1.1.1.2.25550897|4|TenGigE Port +1.3.6.1.2.1.47.1.1.1.1.2.25693872|4|Voltage Sensor - 1.0V_PEX1 +1.3.6.1.2.1.47.1.1.1.1.2.26493680|4|Transceiver Tx Power Sensor +1.3.6.1.2.1.47.1.1.1.1.2.26947585|4|Cisco ASR9K Line Card Module Container +1.3.6.1.2.1.47.1.1.1.1.2.27434349|4|Ethernet Plug Port Slot +1.3.6.1.2.1.47.1.1.1.1.2.28091685|4|Cisco ASR9K Route/Switch Processor Module Container +1.3.6.1.2.1.47.1.1.1.1.2.28204604|4|RSP Control Ethernet Port +1.3.6.1.2.1.47.1.1.1.1.2.28404825|4|RSP Control Ethernet Port +1.3.6.1.2.1.47.1.1.1.1.2.28408097|4|RSP Control Ethernet Port +1.3.6.1.2.1.47.1.1.1.1.2.28409717|4|RSP Control Ethernet Port +1.3.6.1.2.1.47.1.1.1.1.2.28556766|4|RSP Control Ethernet Port +1.3.6.1.2.1.47.1.1.1.1.2.28558354|4|RSP Control Ethernet Port +1.3.6.1.2.1.47.1.1.1.1.2.28595820|4|Fan Speed Sensor +1.3.6.1.2.1.47.1.1.1.1.2.28712902|4|Ethernet Plug Port Slot +1.3.6.1.2.1.47.1.1.1.1.2.29047573|4|ASR9K Generic Fan +1.3.6.1.2.1.47.1.1.1.1.2.29680361|4|Voltage Sensor - 1.5V_RSP +1.3.6.1.2.1.47.1.1.1.1.2.29683569|4|Inlet Temperature SensorInlet1 +1.3.6.1.2.1.47.1.1.1.1.2.29685125|4|Hot Temperature SensorHotspot3 +1.3.6.1.2.1.47.1.1.1.1.2.30054631|4|10GBASE-LR SFP+ Module for SMF +1.3.6.1.2.1.47.1.1.1.1.2.30573226|4|Transceiver Rx Power Sensor +1.3.6.1.2.1.47.1.1.1.1.2.30805863|4|Ethernet Plug Port Slot +1.3.6.1.2.1.47.1.1.1.1.2.31368921|4|Voltage Sensor - VP1P2 +1.3.6.1.2.1.47.1.1.1.1.2.31370605|4|Hot Temperature SensorHotspot0 +1.3.6.1.2.1.47.1.1.1.1.2.31373813|4|Voltage Sensor - VP5P0 +1.3.6.1.2.1.47.1.1.1.1.2.31415605|4|10GBASE-LR SFP+ Module for SMF +1.3.6.1.2.1.47.1.1.1.1.2.31558363|4|Transceiver Transmit Bias Current Sensor +1.3.6.1.2.1.47.1.1.1.1.2.32635680|4|Power Module Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.33027158|4|Voltage Sensor - VP1P2 +1.3.6.1.2.1.47.1.1.1.1.2.33028842|4|Hot Temperature SensorHotspot0 +1.3.6.1.2.1.47.1.1.1.1.2.33874532|4|Voltage Sensor - 7.0V_RSP +1.3.6.1.2.1.47.1.1.1.1.2.33876152|4|Voltage Sensor - 1.0V_IMIO_CORE +1.3.6.1.2.1.47.1.1.1.1.2.34515143|4|Ethernet Plug Port Slot +1.3.6.1.2.1.47.1.1.1.1.2.35064942|4|Fan Speed Sensor +1.3.6.1.2.1.47.1.1.1.1.2.35484503|4|Transceiver Tx Power Sensor +1.3.6.1.2.1.47.1.1.1.1.2.35565686|4|CPU +1.3.6.1.2.1.47.1.1.1.1.2.36113247|4|Voltage Sensor - 1.5V_NP4C_1 +1.3.6.1.2.1.47.1.1.1.1.2.36114835|4|Voltage Sensor - 2.5V_SKT_SKM +1.3.6.1.2.1.47.1.1.1.1.2.36118139|4|Voltage Sensor - 1.05V_NP4C_CORE +1.3.6.1.2.1.47.1.1.1.1.2.37336673|4|Multirate 10GBASE-LR and OC-192/STM-64 SR-1 XFP, SMF +1.3.6.1.2.1.47.1.1.1.1.2.38645760|4|ASR 9001, Route Switch Processor with 8GB memory +1.3.6.1.2.1.47.1.1.1.1.2.38774543|4|Ethernet Plug Bay +1.3.6.1.2.1.47.1.1.1.1.2.39009631|4|GigabitEthernet Port +1.3.6.1.2.1.47.1.1.1.1.2.39011219|4|GigabitEthernet Port +1.3.6.1.2.1.47.1.1.1.1.2.39161540|4|GigabitEthernet Port +1.3.6.1.2.1.47.1.1.1.1.2.39163160|4|GigabitEthernet Port +1.3.6.1.2.1.47.1.1.1.1.2.39508938|4|GigabitEthernet Port +1.3.6.1.2.1.47.1.1.1.1.2.40316076|4|Inlet Temperature SensorInlet0 +1.3.6.1.2.1.47.1.1.1.1.2.40317664|4|Hot Temperature SensorHotspot3 +1.3.6.1.2.1.47.1.1.1.1.2.40319284|4|Voltage Sensor - 1.8V_LC +1.3.6.1.2.1.47.1.1.1.1.2.40390140|4|Voltage Sensor - 1.2V_PHY_LDO +1.3.6.1.2.1.47.1.1.1.1.2.40391728|4|Voltage Sensor - VP1P0_SAC_VDDA +1.3.6.1.2.1.47.1.1.1.1.2.40393284|4|Voltage Sensor - 1.0V_LC_MB +1.3.6.1.2.1.47.1.1.1.1.2.40886175|4|Voltage Sensor - 7.0V +1.3.6.1.2.1.47.1.1.1.1.2.40889447|4|Voltage Sensor - 2.5V +1.3.6.1.2.1.47.1.1.1.1.2.40891067|4|Voltage Sensor - VP1P0_CPU_CORE +1.3.6.1.2.1.47.1.1.1.1.2.40910684|4|ASR9K Generic Fan +1.3.6.1.2.1.47.1.1.1.1.2.40912272|4|Fan-Tray host +1.3.6.1.2.1.47.1.1.1.1.2.40915576|4|ASR9K Generic Fan +1.3.6.1.2.1.47.1.1.1.1.2.40983240|4|Transceiver Transmit Bias Current Sensor +1.3.6.1.2.1.47.1.1.1.1.2.41847727|4|Ethernet Plug Port Slot +1.3.6.1.2.1.47.1.1.1.1.2.41889607|4|Ethernet Plug Port Slot +1.3.6.1.2.1.47.1.1.1.1.2.41903305|4|Ethernet Plug Port Slot +1.3.6.1.2.1.47.1.1.1.1.2.41983486|4|Voltage Sensor - 1.2V_WL_LDO +1.3.6.1.2.1.47.1.1.1.1.2.41985074|4|Voltage Sensor - 1.0V_LGTNG_CORE +1.3.6.1.2.1.47.1.1.1.1.2.42108634|4|Ten GigabitEthernet Port +1.3.6.1.2.1.47.1.1.1.1.2.42328478|4|TenGigE Port +1.3.6.1.2.1.47.1.1.1.1.2.42471453|4|Voltage Sensor - VP1P0_SKT2_CORE +1.3.6.1.2.1.47.1.1.1.1.2.43271261|4|Transceiver Rx Power Sensor +1.3.6.1.2.1.47.1.1.1.1.2.43665869|4|Cisco ASR9K Power Module Container +1.3.6.1.2.1.47.1.1.1.1.2.44949055|4|Fan Speed Sensor +1.3.6.1.2.1.47.1.1.1.1.2.44982153|4|RSP Management Ethernet Port +1.3.6.1.2.1.47.1.1.1.1.2.44987045|4|RSP Control Ethernet Port +1.3.6.1.2.1.47.1.1.1.1.2.45182502|4|RSP Control Ethernet Port +1.3.6.1.2.1.47.1.1.1.1.2.45185678|4|RSP Control Ethernet Port +1.3.6.1.2.1.47.1.1.1.1.2.45187266|4|RSP Control Ethernet Port +1.3.6.1.2.1.47.1.1.1.1.2.45331139|4|RSP Control Ethernet Port +1.3.6.1.2.1.47.1.1.1.1.2.45332759|4|RSP Control Ethernet Port +1.3.6.1.2.1.47.1.1.1.1.2.45334443|4|RSP Control Ethernet Port +1.3.6.1.2.1.47.1.1.1.1.2.45692779|4|Ethernet Plug Port Slot +1.3.6.1.2.1.47.1.1.1.1.2.45825250|4|ASR9K Generic Fan +1.3.6.1.2.1.47.1.1.1.1.2.45832162|4|Cisco ASR9K FanTray Container +1.3.6.1.2.1.47.1.1.1.1.2.46324915|4|Fan Speed Sensor +1.3.6.1.2.1.47.1.1.1.1.2.46457974|4|Voltage Sensor - 1.8V_RSP +1.3.6.1.2.1.47.1.1.1.1.2.46461150|4|Inlet Temperature SensorInlet0 +1.3.6.1.2.1.47.1.1.1.1.2.46462738|4|Hot Temperature SensorHotspot2 +1.3.6.1.2.1.47.1.1.1.1.2.47349219|4|Transceiver Tx Power Sensor +1.3.6.1.2.1.47.1.1.1.1.2.47925186|4|ASR9001 Native Port Slot +1.3.6.1.2.1.47.1.1.1.1.2.48146598|4|Voltage Sensor - VP3P3 +1.3.6.1.2.1.47.1.1.1.1.2.48148218|4|Inlet Temperature SensorInlet0 +1.3.6.1.2.1.47.1.1.1.1.2.48151362|4|Voltage Sensor - VP2P5 +1.3.6.1.2.1.47.1.1.1.1.2.48336040|4|Transceiver Rx Power Sensor +1.3.6.1.2.1.47.1.1.1.1.2.49125802|4|ASR 9000 20-port 1GE Modular Port Adapter +1.3.6.1.2.1.47.1.1.1.1.2.49413261|4|Power Module Current Sensor +1.3.6.1.2.1.47.1.1.1.1.2.49626948|4|ASR9001 Native Port Slot +1.3.6.1.2.1.47.1.1.1.1.2.49803247|4|Voltage Sensor - VP1P2_PHY +1.3.6.1.2.1.47.1.1.1.1.2.49804835|4|Voltage Sensor - IBV +1.3.6.1.2.1.47.1.1.1.1.2.50514562|4|Fan Speed Sensor +1.3.6.1.2.1.47.1.1.1.1.2.50650557|4|Voltage Sensor - 0.75V +1.3.6.1.2.1.47.1.1.1.1.2.50652145|4|Voltage Sensor - 1.0V_RSP +1.3.6.1.2.1.47.1.1.1.1.2.50653701|4|Voltage Sensor - 1.2V_RSP +1.3.6.1.2.1.47.1.1.1.1.2.50864446|4|Fan Speed Sensor +1.3.6.1.2.1.47.1.1.1.1.2.52262180|4|Transceiver Temperature Sensor +1.3.6.1.2.1.47.1.1.1.1.2.52690955|4|RSP Card host +1.3.6.1.2.1.47.1.1.1.1.2.52890924|4|Voltage Sensor - 1.8V_DB +1.3.6.1.2.1.47.1.1.1.1.2.52892512|4|Voltage Sensor - VP3P3_DB +1.3.6.1.2.1.47.1.1.1.1.2.52895688|4|Voltage Sensor - VP1P2 +1.3.6.1.2.1.47.1.1.1.1.2.53442901|4|Fan Speed Sensor +1.3.6.1.2.1.47.1.1.1.1.2.53687180|4|Power Module Current Sensor +1.3.6.1.2.1.47.1.1.1.1.2.53899162|4|ASR 9000 Virtual Module +1.3.6.1.2.1.47.1.1.1.1.2.55552156|4|Ethernet Plug Bay +1.3.6.1.2.1.47.1.1.1.1.2.55787308|4|GigabitEthernet Port +1.3.6.1.2.1.47.1.1.1.1.2.55788896|4|GigabitEthernet Port +1.3.6.1.2.1.47.1.1.1.1.2.55939153|4|GigabitEthernet Port +1.3.6.1.2.1.47.1.1.1.1.2.56286551|4|GigabitEthernet Port +1.3.6.1.2.1.47.1.1.1.1.2.56880003|4|Fan Speed Sensor +1.3.6.1.2.1.47.1.1.1.1.2.57093689|4|Hot Temperature SensorHotspot2 +1.3.6.1.2.1.47.1.1.1.1.2.57095245|4|Voltage Sensor - 1.0V_BLWDO +1.3.6.1.2.1.47.1.1.1.1.2.57167689|4|Voltage Sensor - 0.9V_PHY_LDO +1.3.6.1.2.1.47.1.1.1.1.2.57169309|4|Voltage Sensor - VP1P0_SAC_VDDD +1.3.6.1.2.1.47.1.1.1.1.2.57269142|4|Fan Speed Sensor +1.3.6.1.2.1.47.1.1.1.1.2.57663852|4|Voltage Sensor - 3.3V_ZAR_LDO +1.3.6.1.2.1.47.1.1.1.1.2.57667060|4|Voltage Sensor - 3.3V_LC +1.3.6.1.2.1.47.1.1.1.1.2.57668616|4|Voltage Sensor - 1.8V_ZAR_LDO +1.3.6.1.2.1.47.1.1.1.1.2.57688361|4|ASR9K Generic Fan +1.3.6.1.2.1.47.1.1.1.1.2.57689981|4|ASR9K Generic Fan +1.3.6.1.2.1.47.1.1.1.1.2.57759233|4|Transceiver Voltage Sensor - 3.3V +1.3.6.1.2.1.47.1.1.1.1.2.57760853|4|Transceiver Temperature Sensor +1.3.6.1.2.1.47.1.1.1.1.2.57885340|4|Ethernet Plug Port Slot +1.3.6.1.2.1.47.1.1.1.1.2.58757859|4|Voltage Sensor - 1.0V_WL_LDO +1.3.6.1.2.1.47.1.1.1.1.2.58759479|4|Voltage Sensor - 0.9V_TCAM0_CORE +1.3.6.1.2.1.47.1.1.1.1.2.58761035|4|Voltage Sensor - VP1P0_SKT1_CORE +1.3.6.1.2.1.47.1.1.1.1.2.58886311|4|Ten GigabitEthernet Port +1.3.6.1.2.1.47.1.1.1.1.2.59102851|4|TenGigE Port +1.3.6.1.2.1.47.1.1.1.1.2.59249130|4|Voltage Sensor - 1.5V_NP4C2 +1.3.6.1.2.1.47.1.1.1.1.2.59316821|4|ASR-9001 Fan Tray Ver 2 +1.3.6.1.2.1.47.1.1.1.1.2.59586871|4|ASR9001 Native Port Slot +1.3.6.1.2.1.47.1.1.1.1.2.60048938|4|Transceiver Transmit Bias Current Sensor +1.3.6.1.2.1.47.1.1.1.1.2.60443482|4|Cisco ASR9K Power Module Container +1.3.6.1.2.1.47.1.1.1.1.2.60798546|4|Ethernet Plug Port Slot +1.3.6.1.2.1.47.1.1.1.1.2.61759766|4|RSP Management Ethernet Port +1.3.6.1.2.1.47.1.1.1.1.2.61764658|4|RSP Control Ethernet Port +1.3.6.1.2.1.47.1.1.1.1.2.61961671|4|RSP Control Ethernet Port +1.3.6.1.2.1.47.1.1.1.1.2.61963291|4|RSP Control Ethernet Port +1.3.6.1.2.1.47.1.1.1.1.2.62108752|4|RSP Control Ethernet Port +1.3.6.1.2.1.47.1.1.1.1.2.62110436|4|RSP Control Ethernet Port +1.3.6.1.2.1.47.1.1.1.1.2.62112056|4|RSP Control Ethernet Port +1.3.6.1.2.1.47.1.1.1.1.2.62482494|4|ASR 9001, Modular Line Card +1.3.6.1.2.1.47.1.1.1.1.2.62599655|4|ASR9K Generic Fan +1.3.6.1.2.1.47.1.1.1.1.2.62601275|4|ASR9K Generic Fan +1.3.6.1.2.1.47.1.1.1.1.2.63171350|4|Ethernet Plug Port Slot +1.3.6.1.2.1.47.1.1.1.1.2.63237143|4|Hot Temperature SensorHotspot1 +1.3.6.1.2.1.47.1.1.1.1.2.63238827|4|Voltage Sensor - 2.5V_RSP +1.3.6.1.2.1.47.1.1.1.1.2.64125244|4|Transceiver Voltage Sensor - 3.3V +1.3.6.1.2.1.47.1.1.1.1.2.64126832|4|Transceiver Temperature Sensor +1.3.6.1.2.1.47.1.1.1.1.2.64527637|4|Ethernet Plug Port Slot +1.3.6.1.2.1.47.1.1.1.1.2.64765592|4|Ethernet Plug Port Slot +1.3.6.1.2.1.47.1.1.1.1.2.64922623|4|Voltage Sensor - VP1P8 +1.3.6.1.2.1.47.1.1.1.1.2.64924211|4|Voltage Sensor - VP0P9_LDO +1.3.6.1.2.1.47.1.1.1.1.2.65113653|4|Transceiver Tx Power Sensor +1.3.6.1.2.1.47.1.1.1.1.2.66227682|4|1000BASE-LX/LH SFP transceiver module, MMF/SMF, 1310nm, DOM +1.3.6.1.2.1.47.1.1.1.1.2.66237848|4|Fan Speed Sensor +1.3.6.1.2.1.47.1.1.1.1.2.66531208|4|ASR-9001 AC Power Supply +1.3.6.1.2.1.47.1.1.1.1.2.66582448|4|Voltage Sensor - VP3P3_AUX +1.3.6.1.2.1.47.1.1.1.1.3.172193|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.319242|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.320862|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.322450|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.1930929|6|1.3.6.1.4.1.9.12.3.1.8.48 +1.3.6.1.2.1.47.1.1.1.1.3.2237736|6|1.3.6.1.4.1.9.12.3.1.9.74.9 +1.3.6.1.2.1.47.1.1.1.1.3.2359704|6|1.3.6.1.4.1.9.12.3.1.9.5.158 +1.3.6.1.2.1.47.1.1.1.1.3.2559673|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.2561229|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.3355929|6|1.3.6.1.4.1.9.12.3.1.8.72 +1.3.6.1.2.1.47.1.1.1.1.3.5199496|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.5225733|6|1.3.6.1.4.1.9.12.3.1.9.15.69 +1.3.6.1.2.1.47.1.1.1.1.3.5456057|6|1.3.6.1.4.1.9.12.3.1.10.109 +1.3.6.1.2.1.47.1.1.1.1.3.5457613|6|1.3.6.1.4.1.9.12.3.1.10.109 +1.3.6.1.2.1.47.1.1.1.1.3.5460821|6|1.3.6.1.4.1.9.12.3.1.10.109 +1.3.6.1.2.1.47.1.1.1.1.3.5607998|6|1.3.6.1.4.1.9.12.3.1.10.109 +1.3.6.1.2.1.47.1.1.1.1.3.5955364|6|1.3.6.1.4.1.9.12.3.1.10.109 +1.3.6.1.2.1.47.1.1.1.1.3.5959917|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.6762374|6|1.3.6.1.4.1.9.12.3.1.8.54 +1.3.6.1.2.1.47.1.1.1.1.3.6763994|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.6836438|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.6838122|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.7335745|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.7337365|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.7357110|6|1.3.6.1.4.1.9.12.3.1.7.114 +1.3.6.1.2.1.47.1.1.1.1.3.7358666|6|1.3.6.1.4.1.9.12.3.1.7.114 +1.3.6.1.2.1.47.1.1.1.1.3.7429666|6|1.3.6.1.4.1.9.12.3.1.8.47 +1.3.6.1.2.1.47.1.1.1.1.3.8426608|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.8428164|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.8429784|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.8555060|6|1.3.6.1.4.1.9.12.3.1.10.304 +1.3.6.1.2.1.47.1.1.1.1.3.8773284|6|1.3.6.1.4.1.9.12.3.1.10.315 +1.3.6.1.2.1.47.1.1.1.1.3.8916259|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.9714479|6|1.3.6.1.4.1.9.12.3.1.8.49 +1.3.6.1.2.1.47.1.1.1.1.3.9716067|6|1.3.6.1.4.1.9.12.3.1.8.50 +1.3.6.1.2.1.47.1.1.1.1.3.10077780|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.10090737|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.10527011|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.11426991|6|1.3.6.1.4.1.9.12.3.1.10.109 +1.3.6.1.2.1.47.1.1.1.1.3.11517556|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.11630420|6|1.3.6.1.4.1.9.12.3.1.10.109 +1.3.6.1.2.1.47.1.1.1.1.3.11632104|6|1.3.6.1.4.1.9.12.3.1.10.109 +1.3.6.1.2.1.47.1.1.1.1.3.11779185|6|1.3.6.1.4.1.9.12.3.1.10.304 +1.3.6.1.2.1.47.1.1.1.1.3.11780741|6|1.3.6.1.4.1.9.12.3.1.10.304 +1.3.6.1.2.1.47.1.1.1.1.3.12269960|6|1.3.6.1.4.1.9.12.3.1.7.114 +1.3.6.1.2.1.47.1.1.1.1.3.12333373|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.12510322|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.12905956|6|1.3.6.1.4.1.9.12.3.1.8.54 +1.3.6.1.2.1.47.1.1.1.1.3.12907576|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.13795549|6|1.3.6.1.4.1.9.12.3.1.8.48 +1.3.6.1.2.1.47.1.1.1.1.3.13805629|6|1.3.6.1.4.1.9.12.3.1.8.64 +1.3.6.1.2.1.47.1.1.1.1.3.14322921|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.14585855|6|1.3.6.1.4.1.9.12.3.1.9.2.351 +1.3.6.1.2.1.47.1.1.1.1.3.14591308|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.14592896|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.14780750|6|1.3.6.1.4.1.9.12.3.1.8.49 +1.3.6.1.2.1.47.1.1.1.1.3.14782338|6|1.3.6.1.4.1.9.12.3.1.8.50 +1.3.6.1.2.1.47.1.1.1.1.3.15177601|6|1.3.6.1.4.1.9.12.3.1.8.64 +1.3.6.1.2.1.47.1.1.1.1.3.15394522|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.15526104|6|1.3.6.1.4.1.9.12.3.1.9.51.8 +1.3.6.1.2.1.47.1.1.1.1.3.15858003|6|1.3.6.1.4.1.9.12.3.1.8.71 +1.3.6.1.2.1.47.1.1.1.1.3.16249545|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.16251165|6|1.3.6.1.4.1.9.12.3.1.8.36 +1.3.6.1.2.1.47.1.1.1.1.3.16949774|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.17096855|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.17098539|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.17452244|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.17977066|6|1.3.6.1.4.1.9.12.3.1.8.64 +1.3.6.1.2.1.47.1.1.1.1.3.18708510|6|1.3.6.1.4.1.9.12.3.1.8.46 +1.3.6.1.2.1.47.1.1.1.1.3.18788073|6|1.3.6.1.4.1.9.12.3.1.9.74.9 +1.3.6.1.2.1.47.1.1.1.1.3.19161232|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.19337222|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.19338842|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.19441360|6|1.3.6.1.4.1.9.12.3.1.8.64 +1.3.6.1.2.1.47.1.1.1.1.3.19750579|6|1.3.6.1.4.1.9.12.3.1.9.74.9 +1.3.6.1.2.1.47.1.1.1.1.3.20133606|6|1.3.6.1.4.1.9.12.3.1.8.71 +1.3.6.1.2.1.47.1.1.1.1.3.21500831|6|1.3.6.1.4.1.9.12.3.1.5.114 +1.3.6.1.2.1.47.1.1.1.1.3.21657197|6|1.3.6.1.4.1.9.12.3.1.6.343 +1.3.6.1.2.1.47.1.1.1.1.3.22233606|6|1.3.6.1.4.1.9.12.3.1.10.109 +1.3.6.1.2.1.47.1.1.1.1.3.22235226|6|1.3.6.1.4.1.9.12.3.1.10.109 +1.3.6.1.2.1.47.1.1.1.1.3.22238498|6|1.3.6.1.4.1.9.12.3.1.10.109 +1.3.6.1.2.1.47.1.1.1.1.3.22383991|6|1.3.6.1.4.1.9.12.3.1.10.109 +1.3.6.1.2.1.47.1.1.1.1.3.22731389|6|1.3.6.1.4.1.9.12.3.1.10.109 +1.3.6.1.2.1.47.1.1.1.1.3.22732977|6|1.3.6.1.4.1.9.12.3.1.10.109 +1.3.6.1.2.1.47.1.1.1.1.3.23538399|6|1.3.6.1.4.1.9.12.3.1.8.54 +1.3.6.1.2.1.47.1.1.1.1.3.23539987|6|1.3.6.1.4.1.9.12.3.1.8.54 +1.3.6.1.2.1.47.1.1.1.1.3.23541671|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.23612527|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.23614115|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.23615735|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.24113454|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.24115042|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.24133071|6|1.3.6.1.4.1.9.12.3.1.7.114 +1.3.6.1.2.1.47.1.1.1.1.3.24134659|6|1.3.6.1.4.1.9.12.3.1.7.114 +1.3.6.1.2.1.47.1.1.1.1.3.24137963|6|1.3.6.1.4.1.9.12.3.1.7.114 +1.3.6.1.2.1.47.1.1.1.1.3.24205691|6|1.3.6.1.4.1.9.12.3.1.8.46 +1.3.6.1.2.1.47.1.1.1.1.3.24555730|6|1.3.6.1.4.1.9.12.3.1.3.1178 +1.3.6.1.2.1.47.1.1.1.1.3.25205777|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.25207461|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.25332609|6|1.3.6.1.4.1.9.12.3.1.10.304 +1.3.6.1.2.1.47.1.1.1.1.3.25550897|6|1.3.6.1.4.1.9.12.3.1.10.315 +1.3.6.1.2.1.47.1.1.1.1.3.25693872|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.26493680|6|1.3.6.1.4.1.9.12.3.1.8.47 +1.3.6.1.2.1.47.1.1.1.1.3.26947585|6|1.3.6.1.4.1.9.12.3.1.5.192 +1.3.6.1.2.1.47.1.1.1.1.3.27434349|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.28091685|6|1.3.6.1.4.1.9.12.3.1.5.191 +1.3.6.1.2.1.47.1.1.1.1.3.28204604|6|1.3.6.1.4.1.9.12.3.1.10.304 +1.3.6.1.2.1.47.1.1.1.1.3.28404825|6|1.3.6.1.4.1.9.12.3.1.10.109 +1.3.6.1.2.1.47.1.1.1.1.3.28408097|6|1.3.6.1.4.1.9.12.3.1.10.109 +1.3.6.1.2.1.47.1.1.1.1.3.28409717|6|1.3.6.1.4.1.9.12.3.1.10.109 +1.3.6.1.2.1.47.1.1.1.1.3.28556766|6|1.3.6.1.4.1.9.12.3.1.10.304 +1.3.6.1.2.1.47.1.1.1.1.3.28558354|6|1.3.6.1.4.1.9.12.3.1.10.304 +1.3.6.1.2.1.47.1.1.1.1.3.28595820|6|1.3.6.1.4.1.9.12.3.1.8.64 +1.3.6.1.2.1.47.1.1.1.1.3.28712902|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.29047573|6|1.3.6.1.4.1.9.12.3.1.7.114 +1.3.6.1.2.1.47.1.1.1.1.3.29680361|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.29683569|6|1.3.6.1.4.1.9.12.3.1.8.36 +1.3.6.1.2.1.47.1.1.1.1.3.29685125|6|1.3.6.1.4.1.9.12.3.1.8.54 +1.3.6.1.2.1.47.1.1.1.1.3.30054631|6|1.3.6.1.4.1.9.12.3.1.9.76.1 +1.3.6.1.2.1.47.1.1.1.1.3.30573226|6|1.3.6.1.4.1.9.12.3.1.8.46 +1.3.6.1.2.1.47.1.1.1.1.3.30805863|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.31368921|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.31370605|6|1.3.6.1.4.1.9.12.3.1.8.54 +1.3.6.1.2.1.47.1.1.1.1.3.31373813|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.31415605|6|1.3.6.1.4.1.9.12.3.1.9.76.1 +1.3.6.1.2.1.47.1.1.1.1.3.31558363|6|1.3.6.1.4.1.9.12.3.1.8.48 +1.3.6.1.2.1.47.1.1.1.1.3.32635680|6|1.3.6.1.4.1.9.12.3.1.8.72 +1.3.6.1.2.1.47.1.1.1.1.3.33027158|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.33028842|6|1.3.6.1.4.1.9.12.3.1.8.54 +1.3.6.1.2.1.47.1.1.1.1.3.33874532|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.33876152|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.34515143|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.35064942|6|1.3.6.1.4.1.9.12.3.1.8.64 +1.3.6.1.2.1.47.1.1.1.1.3.35484503|6|1.3.6.1.4.1.9.12.3.1.8.47 +1.3.6.1.2.1.47.1.1.1.1.3.35565686|6|1.3.6.1.4.1.9.12.3.1.9.5.158 +1.3.6.1.2.1.47.1.1.1.1.3.36113247|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.36114835|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.36118139|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.37336673|6|1.3.6.1.4.1.9.12.3.1.9.51.130 +1.3.6.1.2.1.47.1.1.1.1.3.38645760|6|1.3.6.1.4.1.9.12.3.1.9.74.48 +1.3.6.1.2.1.47.1.1.1.1.3.38774543|6|1.3.6.1.4.1.9.12.3.1.5.114 +1.3.6.1.2.1.47.1.1.1.1.3.39009631|6|1.3.6.1.4.1.9.12.3.1.10.109 +1.3.6.1.2.1.47.1.1.1.1.3.39011219|6|1.3.6.1.4.1.9.12.3.1.10.109 +1.3.6.1.2.1.47.1.1.1.1.3.39161540|6|1.3.6.1.4.1.9.12.3.1.10.109 +1.3.6.1.2.1.47.1.1.1.1.3.39163160|6|1.3.6.1.4.1.9.12.3.1.10.109 +1.3.6.1.2.1.47.1.1.1.1.3.39508938|6|1.3.6.1.4.1.9.12.3.1.10.109 +1.3.6.1.2.1.47.1.1.1.1.3.40316076|6|1.3.6.1.4.1.9.12.3.1.8.36 +1.3.6.1.2.1.47.1.1.1.1.3.40317664|6|1.3.6.1.4.1.9.12.3.1.8.54 +1.3.6.1.2.1.47.1.1.1.1.3.40319284|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.40390140|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.40391728|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.40393284|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.40886175|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.40889447|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.40891067|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.40910684|6|1.3.6.1.4.1.9.12.3.1.7.114 +1.3.6.1.2.1.47.1.1.1.1.3.40912272|6|1.3.6.1.4.1.9.12.3.1.9.74.9 +1.3.6.1.2.1.47.1.1.1.1.3.40915576|6|1.3.6.1.4.1.9.12.3.1.7.114 +1.3.6.1.2.1.47.1.1.1.1.3.40983240|6|1.3.6.1.4.1.9.12.3.1.8.48 +1.3.6.1.2.1.47.1.1.1.1.3.41847727|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.41889607|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.41903305|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.41983486|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.41985074|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.42108634|6|1.3.6.1.4.1.9.12.3.1.10.304 +1.3.6.1.2.1.47.1.1.1.1.3.42328478|6|1.3.6.1.4.1.9.12.3.1.10.315 +1.3.6.1.2.1.47.1.1.1.1.3.42471453|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.43271261|6|1.3.6.1.4.1.9.12.3.1.8.46 +1.3.6.1.2.1.47.1.1.1.1.3.43665869|6|1.3.6.1.4.1.9.12.3.1.5.0 +1.3.6.1.2.1.47.1.1.1.1.3.44949055|6|1.3.6.1.4.1.9.12.3.1.8.64 +1.3.6.1.2.1.47.1.1.1.1.3.44982153|6|1.3.6.1.4.1.9.12.3.1.10.109 +1.3.6.1.2.1.47.1.1.1.1.3.44987045|6|1.3.6.1.4.1.9.12.3.1.10.109 +1.3.6.1.2.1.47.1.1.1.1.3.45182502|6|1.3.6.1.4.1.9.12.3.1.10.304 +1.3.6.1.2.1.47.1.1.1.1.3.45185678|6|1.3.6.1.4.1.9.12.3.1.10.109 +1.3.6.1.2.1.47.1.1.1.1.3.45187266|6|1.3.6.1.4.1.9.12.3.1.10.109 +1.3.6.1.2.1.47.1.1.1.1.3.45331139|6|1.3.6.1.4.1.9.12.3.1.10.304 +1.3.6.1.2.1.47.1.1.1.1.3.45332759|6|1.3.6.1.4.1.9.12.3.1.10.304 +1.3.6.1.2.1.47.1.1.1.1.3.45334443|6|1.3.6.1.4.1.9.12.3.1.10.304 +1.3.6.1.2.1.47.1.1.1.1.3.45692779|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.45825250|6|1.3.6.1.4.1.9.12.3.1.7.114 +1.3.6.1.2.1.47.1.1.1.1.3.45832162|6|1.3.6.1.4.1.9.12.3.1.5.188 +1.3.6.1.2.1.47.1.1.1.1.3.46324915|6|1.3.6.1.4.1.9.12.3.1.8.64 +1.3.6.1.2.1.47.1.1.1.1.3.46457974|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.46461150|6|1.3.6.1.4.1.9.12.3.1.8.36 +1.3.6.1.2.1.47.1.1.1.1.3.46462738|6|1.3.6.1.4.1.9.12.3.1.8.54 +1.3.6.1.2.1.47.1.1.1.1.3.47349219|6|1.3.6.1.4.1.9.12.3.1.8.47 +1.3.6.1.2.1.47.1.1.1.1.3.47925186|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.48146598|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.48148218|6|1.3.6.1.4.1.9.12.3.1.8.36 +1.3.6.1.2.1.47.1.1.1.1.3.48151362|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.48336040|6|1.3.6.1.4.1.9.12.3.1.8.46 +1.3.6.1.2.1.47.1.1.1.1.3.49125802|6|1.3.6.1.4.1.9.12.3.1.9.2.352 +1.3.6.1.2.1.47.1.1.1.1.3.49413261|6|1.3.6.1.4.1.9.12.3.1.8.73 +1.3.6.1.2.1.47.1.1.1.1.3.49626948|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.49803247|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.49804835|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.50514562|6|1.3.6.1.4.1.9.12.3.1.8.64 +1.3.6.1.2.1.47.1.1.1.1.3.50650557|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.50652145|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.50653701|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.50864446|6|1.3.6.1.4.1.9.12.3.1.8.64 +1.3.6.1.2.1.47.1.1.1.1.3.52262180|6|1.3.6.1.4.1.9.12.3.1.8.50 +1.3.6.1.2.1.47.1.1.1.1.3.52690955|6|1.3.6.1.4.1.9.12.3.1.9.74.9 +1.3.6.1.2.1.47.1.1.1.1.3.52890924|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.52892512|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.52895688|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.53442901|6|1.3.6.1.4.1.9.12.3.1.8.64 +1.3.6.1.2.1.47.1.1.1.1.3.53687180|6|1.3.6.1.4.1.9.12.3.1.8.73 +1.3.6.1.2.1.47.1.1.1.1.3.53899162|6|1.3.6.1.4.1.9.12.3.1.9.74.46 +1.3.6.1.2.1.47.1.1.1.1.3.55552156|6|1.3.6.1.4.1.9.12.3.1.5.114 +1.3.6.1.2.1.47.1.1.1.1.3.55787308|6|1.3.6.1.4.1.9.12.3.1.10.109 +1.3.6.1.2.1.47.1.1.1.1.3.55788896|6|1.3.6.1.4.1.9.12.3.1.10.109 +1.3.6.1.2.1.47.1.1.1.1.3.55939153|6|1.3.6.1.4.1.9.12.3.1.10.109 +1.3.6.1.2.1.47.1.1.1.1.3.56286551|6|1.3.6.1.4.1.9.12.3.1.10.109 +1.3.6.1.2.1.47.1.1.1.1.3.56880003|6|1.3.6.1.4.1.9.12.3.1.8.64 +1.3.6.1.2.1.47.1.1.1.1.3.57093689|6|1.3.6.1.4.1.9.12.3.1.8.54 +1.3.6.1.2.1.47.1.1.1.1.3.57095245|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.57167689|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.57169309|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.57269142|6|1.3.6.1.4.1.9.12.3.1.8.64 +1.3.6.1.2.1.47.1.1.1.1.3.57663852|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.57667060|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.57668616|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.57688361|6|1.3.6.1.4.1.9.12.3.1.7.114 +1.3.6.1.2.1.47.1.1.1.1.3.57689981|6|1.3.6.1.4.1.9.12.3.1.7.114 +1.3.6.1.2.1.47.1.1.1.1.3.57759233|6|1.3.6.1.4.1.9.12.3.1.8.49 +1.3.6.1.2.1.47.1.1.1.1.3.57760853|6|1.3.6.1.4.1.9.12.3.1.8.50 +1.3.6.1.2.1.47.1.1.1.1.3.57885340|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.58757859|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.58759479|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.58761035|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.58886311|6|1.3.6.1.4.1.9.12.3.1.10.304 +1.3.6.1.2.1.47.1.1.1.1.3.59102851|6|1.3.6.1.4.1.9.12.3.1.10.315 +1.3.6.1.2.1.47.1.1.1.1.3.59249130|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.59316821|6|1.3.6.1.4.1.9.12.3.1.7.239 +1.3.6.1.2.1.47.1.1.1.1.3.59586871|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.60048938|6|1.3.6.1.4.1.9.12.3.1.8.48 +1.3.6.1.2.1.47.1.1.1.1.3.60443482|6|1.3.6.1.4.1.9.12.3.1.5.0 +1.3.6.1.2.1.47.1.1.1.1.3.60798546|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.61759766|6|1.3.6.1.4.1.9.12.3.1.10.109 +1.3.6.1.2.1.47.1.1.1.1.3.61764658|6|1.3.6.1.4.1.9.12.3.1.10.109 +1.3.6.1.2.1.47.1.1.1.1.3.61961671|6|1.3.6.1.4.1.9.12.3.1.10.109 +1.3.6.1.2.1.47.1.1.1.1.3.61963291|6|1.3.6.1.4.1.9.12.3.1.10.109 +1.3.6.1.2.1.47.1.1.1.1.3.62108752|6|1.3.6.1.4.1.9.12.3.1.10.304 +1.3.6.1.2.1.47.1.1.1.1.3.62110436|6|1.3.6.1.4.1.9.12.3.1.10.304 +1.3.6.1.2.1.47.1.1.1.1.3.62112056|6|1.3.6.1.4.1.9.12.3.1.10.304 +1.3.6.1.2.1.47.1.1.1.1.3.62482494|6|1.3.6.1.4.1.9.12.3.1.9.74.47 +1.3.6.1.2.1.47.1.1.1.1.3.62599655|6|1.3.6.1.4.1.9.12.3.1.7.114 +1.3.6.1.2.1.47.1.1.1.1.3.62601275|6|1.3.6.1.4.1.9.12.3.1.7.114 +1.3.6.1.2.1.47.1.1.1.1.3.63171350|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.63237143|6|1.3.6.1.4.1.9.12.3.1.8.54 +1.3.6.1.2.1.47.1.1.1.1.3.63238827|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.64125244|6|1.3.6.1.4.1.9.12.3.1.8.49 +1.3.6.1.2.1.47.1.1.1.1.3.64126832|6|1.3.6.1.4.1.9.12.3.1.8.50 +1.3.6.1.2.1.47.1.1.1.1.3.64527637|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.64765592|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.64922623|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.64924211|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.65113653|6|1.3.6.1.4.1.9.12.3.1.8.47 +1.3.6.1.2.1.47.1.1.1.1.3.66227682|6|1.3.6.1.4.1.9.12.3.1.9.51.142 +1.3.6.1.2.1.47.1.1.1.1.3.66237848|6|1.3.6.1.4.1.9.12.3.1.8.64 +1.3.6.1.2.1.47.1.1.1.1.3.66531208|6|1.3.6.1.4.1.9.12.3.1.6.343 +1.3.6.1.2.1.47.1.1.1.1.3.66582448|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.4.172193|2|52690955 +1.3.6.1.2.1.47.1.1.1.1.4.319242|2|52690955 +1.3.6.1.2.1.47.1.1.1.1.4.320862|2|52690955 +1.3.6.1.2.1.47.1.1.1.1.4.322450|2|52690955 +1.3.6.1.2.1.47.1.1.1.1.4.1930929|2|37336673 +1.3.6.1.2.1.47.1.1.1.1.4.2237736|2|21657197 +1.3.6.1.2.1.47.1.1.1.1.4.2359704|2|38645760 +1.3.6.1.2.1.47.1.1.1.1.4.2559673|2|5225733 +1.3.6.1.2.1.47.1.1.1.1.4.2561229|2|5225733 +1.3.6.1.2.1.47.1.1.1.1.4.3355929|2|19750579 +1.3.6.1.2.1.47.1.1.1.1.4.5199496|2|5457613 +1.3.6.1.2.1.47.1.1.1.1.4.5225733|2|62482494 +1.3.6.1.2.1.47.1.1.1.1.4.5456057|2|49125802 +1.3.6.1.2.1.47.1.1.1.1.4.5457613|2|49125802 +1.3.6.1.2.1.47.1.1.1.1.4.5460821|2|49125802 +1.3.6.1.2.1.47.1.1.1.1.4.5607998|2|49125802 +1.3.6.1.2.1.47.1.1.1.1.4.5955364|2|49125802 +1.3.6.1.2.1.47.1.1.1.1.4.5959917|2|42108634 +1.3.6.1.2.1.47.1.1.1.1.4.6762374|2|18788073 +1.3.6.1.2.1.47.1.1.1.1.4.6763994|2|18788073 +1.3.6.1.2.1.47.1.1.1.1.4.6836438|2|18788073 +1.3.6.1.2.1.47.1.1.1.1.4.6838122|2|18788073 +1.3.6.1.2.1.47.1.1.1.1.4.7335745|2|18788073 +1.3.6.1.2.1.47.1.1.1.1.4.7337365|2|18788073 +1.3.6.1.2.1.47.1.1.1.1.4.7357110|2|59316821 +1.3.6.1.2.1.47.1.1.1.1.4.7358666|2|59316821 +1.3.6.1.2.1.47.1.1.1.1.4.7429666|2|66227682 +1.3.6.1.2.1.47.1.1.1.1.4.8426608|2|5225733 +1.3.6.1.2.1.47.1.1.1.1.4.8428164|2|5225733 +1.3.6.1.2.1.47.1.1.1.1.4.8429784|2|5225733 +1.3.6.1.2.1.47.1.1.1.1.4.8555060|2|53899162 +1.3.6.1.2.1.47.1.1.1.1.4.8773284|2|14585855 +1.3.6.1.2.1.47.1.1.1.1.4.8916259|2|5225733 +1.3.6.1.2.1.47.1.1.1.1.4.9714479|2|15526104 +1.3.6.1.2.1.47.1.1.1.1.4.9716067|2|15526104 +1.3.6.1.2.1.47.1.1.1.1.4.10077780|2|22732977 +1.3.6.1.2.1.47.1.1.1.1.4.10090737|2|22233606 +1.3.6.1.2.1.47.1.1.1.1.4.10527011|2|39163160 +1.3.6.1.2.1.47.1.1.1.1.4.11426991|2|38645760 +1.3.6.1.2.1.47.1.1.1.1.4.11517556|2|55939153 +1.3.6.1.2.1.47.1.1.1.1.4.11630420|2|38645760 +1.3.6.1.2.1.47.1.1.1.1.4.11632104|2|38645760 +1.3.6.1.2.1.47.1.1.1.1.4.11779185|2|38645760 +1.3.6.1.2.1.47.1.1.1.1.4.11780741|2|38645760 +1.3.6.1.2.1.47.1.1.1.1.4.12269960|2|59316821 +1.3.6.1.2.1.47.1.1.1.1.4.12333373|2|39508938 +1.3.6.1.2.1.47.1.1.1.1.4.12510322|2|22383991 +1.3.6.1.2.1.47.1.1.1.1.4.12905956|2|52690955 +1.3.6.1.2.1.47.1.1.1.1.4.12907576|2|52690955 +1.3.6.1.2.1.47.1.1.1.1.4.13795549|2|31415605 +1.3.6.1.2.1.47.1.1.1.1.4.13805629|2|7358666 +1.3.6.1.2.1.47.1.1.1.1.4.14322921|2|5607998 +1.3.6.1.2.1.47.1.1.1.1.4.14585855|2|55552156 +1.3.6.1.2.1.47.1.1.1.1.4.14591308|2|14585855 +1.3.6.1.2.1.47.1.1.1.1.4.14592896|2|14585855 +1.3.6.1.2.1.47.1.1.1.1.4.14780750|2|30054631 +1.3.6.1.2.1.47.1.1.1.1.4.14782338|2|30054631 +1.3.6.1.2.1.47.1.1.1.1.4.15177601|2|7357110 +1.3.6.1.2.1.47.1.1.1.1.4.15394522|2|39009631 +1.3.6.1.2.1.47.1.1.1.1.4.15526104|2|12333373 +1.3.6.1.2.1.47.1.1.1.1.4.15858003|2|2237736 +1.3.6.1.2.1.47.1.1.1.1.4.16249545|2|49125802 +1.3.6.1.2.1.47.1.1.1.1.4.16251165|2|49125802 +1.3.6.1.2.1.47.1.1.1.1.4.16949774|2|52690955 +1.3.6.1.2.1.47.1.1.1.1.4.17096855|2|52690955 +1.3.6.1.2.1.47.1.1.1.1.4.17098539|2|52690955 +1.3.6.1.2.1.47.1.1.1.1.4.17452244|2|25550897 +1.3.6.1.2.1.47.1.1.1.1.4.17977066|2|24133071 +1.3.6.1.2.1.47.1.1.1.1.4.18708510|2|37336673 +1.3.6.1.2.1.47.1.1.1.1.4.18788073|2|62482494 +1.3.6.1.2.1.47.1.1.1.1.4.19161232|2|5460821 +1.3.6.1.2.1.47.1.1.1.1.4.19337222|2|5225733 +1.3.6.1.2.1.47.1.1.1.1.4.19338842|2|5225733 +1.3.6.1.2.1.47.1.1.1.1.4.19441360|2|29047573 +1.3.6.1.2.1.47.1.1.1.1.4.19750579|2|66531208 +1.3.6.1.2.1.47.1.1.1.1.4.20133606|2|19750579 +1.3.6.1.2.1.47.1.1.1.1.4.21500831|2|62482494 +1.3.6.1.2.1.47.1.1.1.1.4.21657197|2|60443482 +1.3.6.1.2.1.47.1.1.1.1.4.22233606|2|49125802 +1.3.6.1.2.1.47.1.1.1.1.4.22235226|2|49125802 +1.3.6.1.2.1.47.1.1.1.1.4.22238498|2|49125802 +1.3.6.1.2.1.47.1.1.1.1.4.22383991|2|49125802 +1.3.6.1.2.1.47.1.1.1.1.4.22731389|2|49125802 +1.3.6.1.2.1.47.1.1.1.1.4.22732977|2|49125802 +1.3.6.1.2.1.47.1.1.1.1.4.23538399|2|18788073 +1.3.6.1.2.1.47.1.1.1.1.4.23539987|2|18788073 +1.3.6.1.2.1.47.1.1.1.1.4.23541671|2|18788073 +1.3.6.1.2.1.47.1.1.1.1.4.23612527|2|18788073 +1.3.6.1.2.1.47.1.1.1.1.4.23614115|2|18788073 +1.3.6.1.2.1.47.1.1.1.1.4.23615735|2|18788073 +1.3.6.1.2.1.47.1.1.1.1.4.24113454|2|18788073 +1.3.6.1.2.1.47.1.1.1.1.4.24115042|2|18788073 +1.3.6.1.2.1.47.1.1.1.1.4.24133071|2|59316821 +1.3.6.1.2.1.47.1.1.1.1.4.24134659|2|59316821 +1.3.6.1.2.1.47.1.1.1.1.4.24137963|2|59316821 +1.3.6.1.2.1.47.1.1.1.1.4.24205691|2|66227682 +1.3.6.1.2.1.47.1.1.1.1.4.24555730|2|0 +1.3.6.1.2.1.47.1.1.1.1.4.25205777|2|5225733 +1.3.6.1.2.1.47.1.1.1.1.4.25207461|2|5225733 +1.3.6.1.2.1.47.1.1.1.1.4.25332609|2|53899162 +1.3.6.1.2.1.47.1.1.1.1.4.25550897|2|14585855 +1.3.6.1.2.1.47.1.1.1.1.4.25693872|2|5225733 +1.3.6.1.2.1.47.1.1.1.1.4.26493680|2|15526104 +1.3.6.1.2.1.47.1.1.1.1.4.26947585|2|24555730 +1.3.6.1.2.1.47.1.1.1.1.4.27434349|2|22235226 +1.3.6.1.2.1.47.1.1.1.1.4.28091685|2|24555730 +1.3.6.1.2.1.47.1.1.1.1.4.28204604|2|38645760 +1.3.6.1.2.1.47.1.1.1.1.4.28404825|2|38645760 +1.3.6.1.2.1.47.1.1.1.1.4.28408097|2|38645760 +1.3.6.1.2.1.47.1.1.1.1.4.28409717|2|38645760 +1.3.6.1.2.1.47.1.1.1.1.4.28556766|2|38645760 +1.3.6.1.2.1.47.1.1.1.1.4.28558354|2|38645760 +1.3.6.1.2.1.47.1.1.1.1.4.28595820|2|57688361 +1.3.6.1.2.1.47.1.1.1.1.4.28712902|2|39011219 +1.3.6.1.2.1.47.1.1.1.1.4.29047573|2|59316821 +1.3.6.1.2.1.47.1.1.1.1.4.29680361|2|52690955 +1.3.6.1.2.1.47.1.1.1.1.4.29683569|2|52690955 +1.3.6.1.2.1.47.1.1.1.1.4.29685125|2|52690955 +1.3.6.1.2.1.47.1.1.1.1.4.30054631|2|49626948 +1.3.6.1.2.1.47.1.1.1.1.4.30573226|2|31415605 +1.3.6.1.2.1.47.1.1.1.1.4.30805863|2|39161540 +1.3.6.1.2.1.47.1.1.1.1.4.31368921|2|14585855 +1.3.6.1.2.1.47.1.1.1.1.4.31370605|2|14585855 +1.3.6.1.2.1.47.1.1.1.1.4.31373813|2|14585855 +1.3.6.1.2.1.47.1.1.1.1.4.31415605|2|47925186 +1.3.6.1.2.1.47.1.1.1.1.4.31558363|2|30054631 +1.3.6.1.2.1.47.1.1.1.1.4.32635680|2|2237736 +1.3.6.1.2.1.47.1.1.1.1.4.33027158|2|49125802 +1.3.6.1.2.1.47.1.1.1.1.4.33028842|2|49125802 +1.3.6.1.2.1.47.1.1.1.1.4.33874532|2|52690955 +1.3.6.1.2.1.47.1.1.1.1.4.33876152|2|52690955 +1.3.6.1.2.1.47.1.1.1.1.4.34515143|2|5955364 +1.3.6.1.2.1.47.1.1.1.1.4.35064942|2|62601275 +1.3.6.1.2.1.47.1.1.1.1.4.35484503|2|37336673 +1.3.6.1.2.1.47.1.1.1.1.4.35565686|2|62482494 +1.3.6.1.2.1.47.1.1.1.1.4.36113247|2|5225733 +1.3.6.1.2.1.47.1.1.1.1.4.36114835|2|5225733 +1.3.6.1.2.1.47.1.1.1.1.4.36118139|2|5225733 +1.3.6.1.2.1.47.1.1.1.1.4.37336673|2|63171350 +1.3.6.1.2.1.47.1.1.1.1.4.38645760|2|28091685 +1.3.6.1.2.1.47.1.1.1.1.4.38774543|2|62482494 +1.3.6.1.2.1.47.1.1.1.1.4.39009631|2|49125802 +1.3.6.1.2.1.47.1.1.1.1.4.39011219|2|49125802 +1.3.6.1.2.1.47.1.1.1.1.4.39161540|2|49125802 +1.3.6.1.2.1.47.1.1.1.1.4.39163160|2|49125802 +1.3.6.1.2.1.47.1.1.1.1.4.39508938|2|49125802 +1.3.6.1.2.1.47.1.1.1.1.4.40316076|2|18788073 +1.3.6.1.2.1.47.1.1.1.1.4.40317664|2|18788073 +1.3.6.1.2.1.47.1.1.1.1.4.40319284|2|18788073 +1.3.6.1.2.1.47.1.1.1.1.4.40390140|2|18788073 +1.3.6.1.2.1.47.1.1.1.1.4.40391728|2|18788073 +1.3.6.1.2.1.47.1.1.1.1.4.40393284|2|18788073 +1.3.6.1.2.1.47.1.1.1.1.4.40886175|2|18788073 +1.3.6.1.2.1.47.1.1.1.1.4.40889447|2|18788073 +1.3.6.1.2.1.47.1.1.1.1.4.40891067|2|18788073 +1.3.6.1.2.1.47.1.1.1.1.4.40910684|2|59316821 +1.3.6.1.2.1.47.1.1.1.1.4.40912272|2|59316821 +1.3.6.1.2.1.47.1.1.1.1.4.40915576|2|59316821 +1.3.6.1.2.1.47.1.1.1.1.4.40983240|2|66227682 +1.3.6.1.2.1.47.1.1.1.1.4.41847727|2|55787308 +1.3.6.1.2.1.47.1.1.1.1.4.41889607|2|8773284 +1.3.6.1.2.1.47.1.1.1.1.4.41903305|2|42328478 +1.3.6.1.2.1.47.1.1.1.1.4.41983486|2|5225733 +1.3.6.1.2.1.47.1.1.1.1.4.41985074|2|5225733 +1.3.6.1.2.1.47.1.1.1.1.4.42108634|2|53899162 +1.3.6.1.2.1.47.1.1.1.1.4.42328478|2|14585855 +1.3.6.1.2.1.47.1.1.1.1.4.42471453|2|5225733 +1.3.6.1.2.1.47.1.1.1.1.4.43271261|2|15526104 +1.3.6.1.2.1.47.1.1.1.1.4.43665869|2|24555730 +1.3.6.1.2.1.47.1.1.1.1.4.44949055|2|40910684 +1.3.6.1.2.1.47.1.1.1.1.4.44982153|2|38645760 +1.3.6.1.2.1.47.1.1.1.1.4.44987045|2|38645760 +1.3.6.1.2.1.47.1.1.1.1.4.45182502|2|38645760 +1.3.6.1.2.1.47.1.1.1.1.4.45185678|2|38645760 +1.3.6.1.2.1.47.1.1.1.1.4.45187266|2|38645760 +1.3.6.1.2.1.47.1.1.1.1.4.45331139|2|38645760 +1.3.6.1.2.1.47.1.1.1.1.4.45332759|2|38645760 +1.3.6.1.2.1.47.1.1.1.1.4.45334443|2|38645760 +1.3.6.1.2.1.47.1.1.1.1.4.45692779|2|55788896 +1.3.6.1.2.1.47.1.1.1.1.4.45825250|2|59316821 +1.3.6.1.2.1.47.1.1.1.1.4.45832162|2|24555730 +1.3.6.1.2.1.47.1.1.1.1.4.46324915|2|12269960 +1.3.6.1.2.1.47.1.1.1.1.4.46457974|2|52690955 +1.3.6.1.2.1.47.1.1.1.1.4.46461150|2|52690955 +1.3.6.1.2.1.47.1.1.1.1.4.46462738|2|52690955 +1.3.6.1.2.1.47.1.1.1.1.4.47349219|2|31415605 +1.3.6.1.2.1.47.1.1.1.1.4.47925186|2|58886311 +1.3.6.1.2.1.47.1.1.1.1.4.48146598|2|14585855 +1.3.6.1.2.1.47.1.1.1.1.4.48148218|2|14585855 +1.3.6.1.2.1.47.1.1.1.1.4.48151362|2|14585855 +1.3.6.1.2.1.47.1.1.1.1.4.48336040|2|30054631 +1.3.6.1.2.1.47.1.1.1.1.4.49125802|2|38774543 +1.3.6.1.2.1.47.1.1.1.1.4.49413261|2|2237736 +1.3.6.1.2.1.47.1.1.1.1.4.49626948|2|25332609 +1.3.6.1.2.1.47.1.1.1.1.4.49803247|2|49125802 +1.3.6.1.2.1.47.1.1.1.1.4.49804835|2|49125802 +1.3.6.1.2.1.47.1.1.1.1.4.50514562|2|62599655 +1.3.6.1.2.1.47.1.1.1.1.4.50650557|2|52690955 +1.3.6.1.2.1.47.1.1.1.1.4.50652145|2|52690955 +1.3.6.1.2.1.47.1.1.1.1.4.50653701|2|52690955 +1.3.6.1.2.1.47.1.1.1.1.4.50864446|2|24137963 +1.3.6.1.2.1.47.1.1.1.1.4.52262180|2|37336673 +1.3.6.1.2.1.47.1.1.1.1.4.52690955|2|38645760 +1.3.6.1.2.1.47.1.1.1.1.4.52890924|2|5225733 +1.3.6.1.2.1.47.1.1.1.1.4.52892512|2|5225733 +1.3.6.1.2.1.47.1.1.1.1.4.52895688|2|5225733 +1.3.6.1.2.1.47.1.1.1.1.4.53442901|2|45825250 +1.3.6.1.2.1.47.1.1.1.1.4.53687180|2|19750579 +1.3.6.1.2.1.47.1.1.1.1.4.53899162|2|21500831 +1.3.6.1.2.1.47.1.1.1.1.4.55552156|2|62482494 +1.3.6.1.2.1.47.1.1.1.1.4.55787308|2|49125802 +1.3.6.1.2.1.47.1.1.1.1.4.55788896|2|49125802 +1.3.6.1.2.1.47.1.1.1.1.4.55939153|2|49125802 +1.3.6.1.2.1.47.1.1.1.1.4.56286551|2|49125802 +1.3.6.1.2.1.47.1.1.1.1.4.56880003|2|40915576 +1.3.6.1.2.1.47.1.1.1.1.4.57093689|2|18788073 +1.3.6.1.2.1.47.1.1.1.1.4.57095245|2|18788073 +1.3.6.1.2.1.47.1.1.1.1.4.57167689|2|18788073 +1.3.6.1.2.1.47.1.1.1.1.4.57169309|2|18788073 +1.3.6.1.2.1.47.1.1.1.1.4.57269142|2|24134659 +1.3.6.1.2.1.47.1.1.1.1.4.57663852|2|18788073 +1.3.6.1.2.1.47.1.1.1.1.4.57667060|2|18788073 +1.3.6.1.2.1.47.1.1.1.1.4.57668616|2|18788073 +1.3.6.1.2.1.47.1.1.1.1.4.57688361|2|59316821 +1.3.6.1.2.1.47.1.1.1.1.4.57689981|2|59316821 +1.3.6.1.2.1.47.1.1.1.1.4.57759233|2|66227682 +1.3.6.1.2.1.47.1.1.1.1.4.57760853|2|66227682 +1.3.6.1.2.1.47.1.1.1.1.4.57885340|2|5456057 +1.3.6.1.2.1.47.1.1.1.1.4.58757859|2|5225733 +1.3.6.1.2.1.47.1.1.1.1.4.58759479|2|5225733 +1.3.6.1.2.1.47.1.1.1.1.4.58761035|2|5225733 +1.3.6.1.2.1.47.1.1.1.1.4.58886311|2|53899162 +1.3.6.1.2.1.47.1.1.1.1.4.59102851|2|14585855 +1.3.6.1.2.1.47.1.1.1.1.4.59249130|2|5225733 +1.3.6.1.2.1.47.1.1.1.1.4.59316821|2|45832162 +1.3.6.1.2.1.47.1.1.1.1.4.59586871|2|8555060 +1.3.6.1.2.1.47.1.1.1.1.4.60048938|2|15526104 +1.3.6.1.2.1.47.1.1.1.1.4.60443482|2|24555730 +1.3.6.1.2.1.47.1.1.1.1.4.60798546|2|56286551 +1.3.6.1.2.1.47.1.1.1.1.4.61759766|2|38645760 +1.3.6.1.2.1.47.1.1.1.1.4.61764658|2|38645760 +1.3.6.1.2.1.47.1.1.1.1.4.61961671|2|38645760 +1.3.6.1.2.1.47.1.1.1.1.4.61963291|2|38645760 +1.3.6.1.2.1.47.1.1.1.1.4.62108752|2|38645760 +1.3.6.1.2.1.47.1.1.1.1.4.62110436|2|38645760 +1.3.6.1.2.1.47.1.1.1.1.4.62112056|2|38645760 +1.3.6.1.2.1.47.1.1.1.1.4.62482494|2|26947585 +1.3.6.1.2.1.47.1.1.1.1.4.62599655|2|59316821 +1.3.6.1.2.1.47.1.1.1.1.4.62601275|2|59316821 +1.3.6.1.2.1.47.1.1.1.1.4.63171350|2|59102851 +1.3.6.1.2.1.47.1.1.1.1.4.63237143|2|52690955 +1.3.6.1.2.1.47.1.1.1.1.4.63238827|2|52690955 +1.3.6.1.2.1.47.1.1.1.1.4.64125244|2|31415605 +1.3.6.1.2.1.47.1.1.1.1.4.64126832|2|31415605 +1.3.6.1.2.1.47.1.1.1.1.4.64527637|2|22238498 +1.3.6.1.2.1.47.1.1.1.1.4.64765592|2|22731389 +1.3.6.1.2.1.47.1.1.1.1.4.64922623|2|14585855 +1.3.6.1.2.1.47.1.1.1.1.4.64924211|2|14585855 +1.3.6.1.2.1.47.1.1.1.1.4.65113653|2|30054631 +1.3.6.1.2.1.47.1.1.1.1.4.66227682|2|34515143 +1.3.6.1.2.1.47.1.1.1.1.4.66237848|2|57689981 +1.3.6.1.2.1.47.1.1.1.1.4.66531208|2|43665869 +1.3.6.1.2.1.47.1.1.1.1.4.66582448|2|49125802 +1.3.6.1.2.1.47.1.1.1.1.5.172193|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.319242|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.320862|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.322450|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.1930929|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2237736|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.2359704|2|1 +1.3.6.1.2.1.47.1.1.1.1.5.2559673|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2561229|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3355929|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.5199496|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.5225733|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.5456057|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.5457613|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.5460821|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.5607998|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.5955364|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.5959917|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.6762374|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.6763994|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.6836438|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.6838122|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.7335745|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.7337365|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.7357110|2|7 +1.3.6.1.2.1.47.1.1.1.1.5.7358666|2|7 +1.3.6.1.2.1.47.1.1.1.1.5.7429666|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.8426608|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.8428164|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.8429784|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.8555060|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.8773284|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.8916259|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.9714479|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.9716067|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10077780|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.10090737|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.10527011|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.11426991|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.11517556|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.11630420|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.11632104|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.11779185|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.11780741|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.12269960|2|7 +1.3.6.1.2.1.47.1.1.1.1.5.12333373|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.12510322|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.12905956|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.12907576|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.13795549|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.13805629|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.14322921|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.14585855|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.14591308|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.14592896|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.14780750|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.14782338|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.15177601|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.15394522|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.15526104|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.15858003|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.16249545|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.16251165|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.16949774|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.17096855|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.17098539|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.17452244|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.17977066|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.18708510|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.18788073|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.19161232|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.19337222|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.19338842|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.19441360|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.19750579|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.20133606|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.21500831|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.21657197|2|6 +1.3.6.1.2.1.47.1.1.1.1.5.22233606|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.22235226|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.22238498|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.22383991|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.22731389|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.22732977|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.23538399|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.23539987|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.23541671|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.23612527|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.23614115|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.23615735|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.24113454|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.24115042|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.24133071|2|7 +1.3.6.1.2.1.47.1.1.1.1.5.24134659|2|7 +1.3.6.1.2.1.47.1.1.1.1.5.24137963|2|7 +1.3.6.1.2.1.47.1.1.1.1.5.24205691|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.24555730|2|3 +1.3.6.1.2.1.47.1.1.1.1.5.25205777|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.25207461|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.25332609|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.25550897|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.25693872|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.26493680|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.26947585|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.27434349|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.28091685|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.28204604|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.28404825|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.28408097|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.28409717|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.28556766|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.28558354|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.28595820|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.28712902|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.29047573|2|7 +1.3.6.1.2.1.47.1.1.1.1.5.29680361|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.29683569|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.29685125|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.30054631|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.30573226|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.30805863|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.31368921|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.31370605|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.31373813|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.31415605|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.31558363|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.32635680|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.33027158|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.33028842|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.33874532|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.33876152|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.34515143|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.35064942|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.35484503|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.35565686|2|1 +1.3.6.1.2.1.47.1.1.1.1.5.36113247|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.36114835|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.36118139|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.37336673|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.38645760|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.38774543|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.39009631|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.39011219|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.39161540|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.39163160|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.39508938|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.40316076|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.40317664|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.40319284|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.40390140|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.40391728|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.40393284|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.40886175|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.40889447|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.40891067|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.40910684|2|7 +1.3.6.1.2.1.47.1.1.1.1.5.40912272|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.40915576|2|7 +1.3.6.1.2.1.47.1.1.1.1.5.40983240|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.41847727|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.41889607|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.41903305|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.41983486|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.41985074|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.42108634|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.42328478|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.42471453|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.43271261|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.43665869|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.44949055|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.44982153|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.44987045|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.45182502|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.45185678|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.45187266|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.45331139|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.45332759|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.45334443|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.45692779|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.45825250|2|7 +1.3.6.1.2.1.47.1.1.1.1.5.45832162|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.46324915|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.46457974|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.46461150|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.46462738|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.47349219|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.47925186|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.48146598|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.48148218|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.48151362|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.48336040|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.49125802|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.49413261|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.49626948|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.49803247|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.49804835|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.50514562|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.50650557|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.50652145|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.50653701|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.50864446|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.52262180|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.52690955|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.52890924|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.52892512|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.52895688|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.53442901|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.53687180|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.53899162|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.55552156|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.55787308|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.55788896|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.55939153|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.56286551|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.56880003|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.57093689|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.57095245|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.57167689|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.57169309|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.57269142|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.57663852|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.57667060|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.57668616|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.57688361|2|7 +1.3.6.1.2.1.47.1.1.1.1.5.57689981|2|7 +1.3.6.1.2.1.47.1.1.1.1.5.57759233|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.57760853|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.57885340|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.58757859|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.58759479|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.58761035|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.58886311|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.59102851|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.59249130|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.59316821|2|7 +1.3.6.1.2.1.47.1.1.1.1.5.59586871|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.60048938|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.60443482|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.60798546|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.61759766|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.61764658|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.61961671|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.61963291|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.62108752|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.62110436|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.62112056|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.62482494|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.62599655|2|7 +1.3.6.1.2.1.47.1.1.1.1.5.62601275|2|7 +1.3.6.1.2.1.47.1.1.1.1.5.63171350|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.63237143|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.63238827|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.64125244|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.64126832|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.64527637|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.64765592|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.64922623|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.64924211|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.65113653|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.66227682|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.66237848|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.66531208|2|6 +1.3.6.1.2.1.47.1.1.1.1.5.66582448|2|8 +1.3.6.1.2.1.47.1.1.1.1.6.172193|2|21 +1.3.6.1.2.1.47.1.1.1.1.6.319242|2|19 +1.3.6.1.2.1.47.1.1.1.1.6.320862|2|15 +1.3.6.1.2.1.47.1.1.1.1.6.322450|2|11 +1.3.6.1.2.1.47.1.1.1.1.6.1930929|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.2237736|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.2359704|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.2559673|2|7 +1.3.6.1.2.1.47.1.1.1.1.6.2561229|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.3355929|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.5199496|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.5225733|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.5456057|2|9 +1.3.6.1.2.1.47.1.1.1.1.6.5457613|2|5 +1.3.6.1.2.1.47.1.1.1.1.6.5460821|2|13 +1.3.6.1.2.1.47.1.1.1.1.6.5607998|2|17 +1.3.6.1.2.1.47.1.1.1.1.6.5955364|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.5959917|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.6762374|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.6763994|2|6 +1.3.6.1.2.1.47.1.1.1.1.6.6836438|2|13 +1.3.6.1.2.1.47.1.1.1.1.6.6838122|2|17 +1.3.6.1.2.1.47.1.1.1.1.6.7335745|2|23 +1.3.6.1.2.1.47.1.1.1.1.6.7337365|2|27 +1.3.6.1.2.1.47.1.1.1.1.6.7357110|2|5 +1.3.6.1.2.1.47.1.1.1.1.6.7358666|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.7429666|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.8426608|2|19 +1.3.6.1.2.1.47.1.1.1.1.6.8428164|2|15 +1.3.6.1.2.1.47.1.1.1.1.6.8429784|2|11 +1.3.6.1.2.1.47.1.1.1.1.6.8555060|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.8773284|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8916259|2|21 +1.3.6.1.2.1.47.1.1.1.1.6.9714479|2|4 +1.3.6.1.2.1.47.1.1.1.1.6.9716067|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.10077780|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.10090737|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.10527011|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.11426991|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.11517556|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.11630420|2|9 +1.3.6.1.2.1.47.1.1.1.1.6.11632104|2|13 +1.3.6.1.2.1.47.1.1.1.1.6.11779185|2|23 +1.3.6.1.2.1.47.1.1.1.1.6.11780741|2|19 +1.3.6.1.2.1.47.1.1.1.1.6.12269960|2|10 +1.3.6.1.2.1.47.1.1.1.1.6.12333373|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.12510322|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.12905956|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.12907576|2|6 +1.3.6.1.2.1.47.1.1.1.1.6.13795549|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.13805629|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.14322921|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.14585855|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.14591308|2|6 +1.3.6.1.2.1.47.1.1.1.1.6.14592896|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.14780750|2|4 +1.3.6.1.2.1.47.1.1.1.1.6.14782338|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.15177601|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.15394522|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.15526104|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.15858003|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.16249545|2|4 +1.3.6.1.2.1.47.1.1.1.1.6.16251165|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.16949774|2|20 +1.3.6.1.2.1.47.1.1.1.1.6.17096855|2|16 +1.3.6.1.2.1.47.1.1.1.1.6.17098539|2|12 +1.3.6.1.2.1.47.1.1.1.1.6.17452244|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.17977066|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.18708510|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.18788073|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.19161232|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.19337222|2|6 +1.3.6.1.2.1.47.1.1.1.1.6.19338842|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.19441360|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.19750579|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.20133606|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.21500831|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.21657197|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.22233606|2|10 +1.3.6.1.2.1.47.1.1.1.1.6.22235226|2|6 +1.3.6.1.2.1.47.1.1.1.1.6.22238498|2|14 +1.3.6.1.2.1.47.1.1.1.1.6.22383991|2|16 +1.3.6.1.2.1.47.1.1.1.1.6.22731389|2|4 +1.3.6.1.2.1.47.1.1.1.1.6.22732977|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.23538399|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.23539987|2|5 +1.3.6.1.2.1.47.1.1.1.1.6.23541671|2|9 +1.3.6.1.2.1.47.1.1.1.1.6.23612527|2|10 +1.3.6.1.2.1.47.1.1.1.1.6.23614115|2|14 +1.3.6.1.2.1.47.1.1.1.1.6.23615735|2|18 +1.3.6.1.2.1.47.1.1.1.1.6.24113454|2|22 +1.3.6.1.2.1.47.1.1.1.1.6.24115042|2|26 +1.3.6.1.2.1.47.1.1.1.1.6.24133071|2|4 +1.3.6.1.2.1.47.1.1.1.1.6.24134659|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.24137963|2|8 +1.3.6.1.2.1.47.1.1.1.1.6.24205691|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.24555730|2|-1 +1.3.6.1.2.1.47.1.1.1.1.6.25205777|2|16 +1.3.6.1.2.1.47.1.1.1.1.6.25207461|2|12 +1.3.6.1.2.1.47.1.1.1.1.6.25332609|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.25550897|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.25693872|2|20 +1.3.6.1.2.1.47.1.1.1.1.6.26493680|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.26947585|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.27434349|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.28091685|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.28204604|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.28404825|2|14 +1.3.6.1.2.1.47.1.1.1.1.6.28408097|2|6 +1.3.6.1.2.1.47.1.1.1.1.6.28409717|2|10 +1.3.6.1.2.1.47.1.1.1.1.6.28556766|2|22 +1.3.6.1.2.1.47.1.1.1.1.6.28558354|2|18 +1.3.6.1.2.1.47.1.1.1.1.6.28595820|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.28712902|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.29047573|2|11 +1.3.6.1.2.1.47.1.1.1.1.6.29680361|2|9 +1.3.6.1.2.1.47.1.1.1.1.6.29683569|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.29685125|2|5 +1.3.6.1.2.1.47.1.1.1.1.6.30054631|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.30573226|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.30805863|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.31368921|2|5 +1.3.6.1.2.1.47.1.1.1.1.6.31370605|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.31373813|2|9 +1.3.6.1.2.1.47.1.1.1.1.6.31415605|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.31558363|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.32635680|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.33027158|2|5 +1.3.6.1.2.1.47.1.1.1.1.6.33028842|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.33874532|2|17 +1.3.6.1.2.1.47.1.1.1.1.6.33876152|2|13 +1.3.6.1.2.1.47.1.1.1.1.6.34515143|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.35064942|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.35484503|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.35565686|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.36113247|2|5 +1.3.6.1.2.1.47.1.1.1.1.6.36114835|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.36118139|2|9 +1.3.6.1.2.1.47.1.1.1.1.6.37336673|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.38645760|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.38774543|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.39009631|2|11 +1.3.6.1.2.1.47.1.1.1.1.6.39011219|2|7 +1.3.6.1.2.1.47.1.1.1.1.6.39161540|2|15 +1.3.6.1.2.1.47.1.1.1.1.6.39163160|2|19 +1.3.6.1.2.1.47.1.1.1.1.6.39508938|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.40316076|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.40317664|2|4 +1.3.6.1.2.1.47.1.1.1.1.6.40319284|2|8 +1.3.6.1.2.1.47.1.1.1.1.6.40390140|2|11 +1.3.6.1.2.1.47.1.1.1.1.6.40391728|2|15 +1.3.6.1.2.1.47.1.1.1.1.6.40393284|2|19 +1.3.6.1.2.1.47.1.1.1.1.6.40886175|2|29 +1.3.6.1.2.1.47.1.1.1.1.6.40889447|2|21 +1.3.6.1.2.1.47.1.1.1.1.6.40891067|2|25 +1.3.6.1.2.1.47.1.1.1.1.6.40910684|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.40912272|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.40915576|2|7 +1.3.6.1.2.1.47.1.1.1.1.6.40983240|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.41847727|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.41889607|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.41903305|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.41983486|2|17 +1.3.6.1.2.1.47.1.1.1.1.6.41985074|2|13 +1.3.6.1.2.1.47.1.1.1.1.6.42108634|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.42328478|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.42471453|2|23 +1.3.6.1.2.1.47.1.1.1.1.6.43271261|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.43665869|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.44949055|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.44982153|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.44987045|2|5 +1.3.6.1.2.1.47.1.1.1.1.6.45182502|2|15 +1.3.6.1.2.1.47.1.1.1.1.6.45185678|2|7 +1.3.6.1.2.1.47.1.1.1.1.6.45187266|2|11 +1.3.6.1.2.1.47.1.1.1.1.6.45331139|2|25 +1.3.6.1.2.1.47.1.1.1.1.6.45332759|2|21 +1.3.6.1.2.1.47.1.1.1.1.6.45334443|2|17 +1.3.6.1.2.1.47.1.1.1.1.6.45692779|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.45825250|2|12 +1.3.6.1.2.1.47.1.1.1.1.6.45832162|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.46324915|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.46457974|2|8 +1.3.6.1.2.1.47.1.1.1.1.6.46461150|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.46462738|2|4 +1.3.6.1.2.1.47.1.1.1.1.6.47349219|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.47925186|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.48146598|2|4 +1.3.6.1.2.1.47.1.1.1.1.6.48148218|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.48151362|2|8 +1.3.6.1.2.1.47.1.1.1.1.6.48336040|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.49125802|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.49413261|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.49626948|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.49803247|2|6 +1.3.6.1.2.1.47.1.1.1.1.6.49804835|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.50514562|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.50650557|2|18 +1.3.6.1.2.1.47.1.1.1.1.6.50652145|2|14 +1.3.6.1.2.1.47.1.1.1.1.6.50653701|2|10 +1.3.6.1.2.1.47.1.1.1.1.6.50864446|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.52262180|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.52690955|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.52890924|2|4 +1.3.6.1.2.1.47.1.1.1.1.6.52892512|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.52895688|2|8 +1.3.6.1.2.1.47.1.1.1.1.6.53442901|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.53687180|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.53899162|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.55552156|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.55787308|2|12 +1.3.6.1.2.1.47.1.1.1.1.6.55788896|2|8 +1.3.6.1.2.1.47.1.1.1.1.6.55939153|2|18 +1.3.6.1.2.1.47.1.1.1.1.6.56286551|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.56880003|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.57093689|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.57095245|2|7 +1.3.6.1.2.1.47.1.1.1.1.6.57167689|2|12 +1.3.6.1.2.1.47.1.1.1.1.6.57169309|2|16 +1.3.6.1.2.1.47.1.1.1.1.6.57269142|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.57663852|2|28 +1.3.6.1.2.1.47.1.1.1.1.6.57667060|2|20 +1.3.6.1.2.1.47.1.1.1.1.6.57668616|2|24 +1.3.6.1.2.1.47.1.1.1.1.6.57688361|2|6 +1.3.6.1.2.1.47.1.1.1.1.6.57689981|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.57759233|2|4 +1.3.6.1.2.1.47.1.1.1.1.6.57760853|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.57885340|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.58757859|2|18 +1.3.6.1.2.1.47.1.1.1.1.6.58759479|2|14 +1.3.6.1.2.1.47.1.1.1.1.6.58761035|2|10 +1.3.6.1.2.1.47.1.1.1.1.6.58886311|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.59102851|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.59249130|2|22 +1.3.6.1.2.1.47.1.1.1.1.6.59316821|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.59586871|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.60048938|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.60443482|2|4 +1.3.6.1.2.1.47.1.1.1.1.6.60798546|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.61759766|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.61764658|2|4 +1.3.6.1.2.1.47.1.1.1.1.6.61961671|2|8 +1.3.6.1.2.1.47.1.1.1.1.6.61963291|2|12 +1.3.6.1.2.1.47.1.1.1.1.6.62108752|2|24 +1.3.6.1.2.1.47.1.1.1.1.6.62110436|2|20 +1.3.6.1.2.1.47.1.1.1.1.6.62112056|2|16 +1.3.6.1.2.1.47.1.1.1.1.6.62482494|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.62599655|2|13 +1.3.6.1.2.1.47.1.1.1.1.6.62601275|2|9 +1.3.6.1.2.1.47.1.1.1.1.6.63171350|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.63237143|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.63238827|2|7 +1.3.6.1.2.1.47.1.1.1.1.6.64125244|2|4 +1.3.6.1.2.1.47.1.1.1.1.6.64126832|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.64527637|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.64765592|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.64922623|2|7 +1.3.6.1.2.1.47.1.1.1.1.6.64924211|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.65113653|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.66227682|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.66237848|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.66531208|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.66582448|2|3 +1.3.6.1.2.1.47.1.1.1.1.7.172193|4|voltage 0/RSP0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.319242|4|voltage 0/RSP0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.320862|4|voltage 0/RSP0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.322450|4|voltage 0/RSP0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.1930929|4|current 0/0/0/3 +1.3.6.1.2.1.47.1.1.1.1.7.2237736|4|module 0/PS0/M1/SP +1.3.6.1.2.1.47.1.1.1.1.7.2359704|4|cpu 0/RSP0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.2559673|4|voltage 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.2561229|4|voltage 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.3355929|4|voltage 0/PS0/M0/SP +1.3.6.1.2.1.47.1.1.1.1.7.5199496|4|slot mau 0/0/1/5 +1.3.6.1.2.1.47.1.1.1.1.7.5225733|4|daughtercard 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.5456057|4|GigabitEthernet0/0/1/9 +1.3.6.1.2.1.47.1.1.1.1.7.5457613|4|GigabitEthernet0/0/1/5 +1.3.6.1.2.1.47.1.1.1.1.7.5460821|4|GigabitEthernet0/0/1/13 +1.3.6.1.2.1.47.1.1.1.1.7.5607998|4|GigabitEthernet0/0/1/17 +1.3.6.1.2.1.47.1.1.1.1.7.5955364|4|GigabitEthernet0/0/1/1 +1.3.6.1.2.1.47.1.1.1.1.7.5959917|4|slot mau 0/0/2/3 +1.3.6.1.2.1.47.1.1.1.1.7.6762374|4|temperature 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.6763994|4|voltage 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.6836438|4|voltage 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.6838122|4|voltage 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.7335745|4|voltage 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.7337365|4|voltage 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.7357110|4|fan5 0/FT0/SP +1.3.6.1.2.1.47.1.1.1.1.7.7358666|4|fan1 0/FT0/SP +1.3.6.1.2.1.47.1.1.1.1.7.7429666|4|power Tx 0/0/1/1 +1.3.6.1.2.1.47.1.1.1.1.7.8426608|4|voltage 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.8428164|4|voltage 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.8429784|4|voltage 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.8555060|4|TenGigE0/0/2/1 +1.3.6.1.2.1.47.1.1.1.1.7.8773284|4|TenGigE0/0/0/0 +1.3.6.1.2.1.47.1.1.1.1.7.8916259|4|voltage 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.9714479|4|voltage 0/0/1/3 +1.3.6.1.2.1.47.1.1.1.1.7.9716067|4|temperature 0/0/1/3 +1.3.6.1.2.1.47.1.1.1.1.7.10077780|4|slot mau 0/0/1/0 +1.3.6.1.2.1.47.1.1.1.1.7.10090737|4|slot mau 0/0/1/10 +1.3.6.1.2.1.47.1.1.1.1.7.10527011|4|slot mau 0/0/1/19 +1.3.6.1.2.1.47.1.1.1.1.7.11426991|4|ControlEthernet0/RSP0/CPU0/S0/0 +1.3.6.1.2.1.47.1.1.1.1.7.11517556|4|slot mau 0/0/1/18 +1.3.6.1.2.1.47.1.1.1.1.7.11630420|4|ControlEthernet0/RSP0/CPU0/S0/6 +1.3.6.1.2.1.47.1.1.1.1.7.11632104|4|ControlEthernet0/RSP0/CPU0/S0/10 +1.3.6.1.2.1.47.1.1.1.1.7.11779185|4|ControlEthernet0/RSP0/CPU0/S0/20 +1.3.6.1.2.1.47.1.1.1.1.7.11780741|4|ControlEthernet0/RSP0/CPU0/S0/16 +1.3.6.1.2.1.47.1.1.1.1.7.12269960|4|fan10 0/FT0/SP +1.3.6.1.2.1.47.1.1.1.1.7.12333373|4|slot mau 0/0/1/3 +1.3.6.1.2.1.47.1.1.1.1.7.12510322|4|slot mau 0/0/1/16 +1.3.6.1.2.1.47.1.1.1.1.7.12905956|4|temperature 0/RSP0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.12907576|4|voltage 0/RSP0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.13795549|4|current 0/0/2/2 +1.3.6.1.2.1.47.1.1.1.1.7.13805629|4|speed 0/FT0/SP +1.3.6.1.2.1.47.1.1.1.1.7.14322921|4|slot mau 0/0/1/17 +1.3.6.1.2.1.47.1.1.1.1.7.14585855|4|module 0/0/0 +1.3.6.1.2.1.47.1.1.1.1.7.14591308|4|voltage 0/0/0 +1.3.6.1.2.1.47.1.1.1.1.7.14592896|4|voltage 0/0/0 +1.3.6.1.2.1.47.1.1.1.1.7.14780750|4|voltage 0/0/2/0 +1.3.6.1.2.1.47.1.1.1.1.7.14782338|4|temperature 0/0/2/0 +1.3.6.1.2.1.47.1.1.1.1.7.15177601|4|speed 0/FT0/SP +1.3.6.1.2.1.47.1.1.1.1.7.15394522|4|slot mau 0/0/1/11 +1.3.6.1.2.1.47.1.1.1.1.7.15526104|4|module mau 0/0/1/3 +1.3.6.1.2.1.47.1.1.1.1.7.15858003|4|capacity 0/PS0/M1/SP +1.3.6.1.2.1.47.1.1.1.1.7.16249545|4|voltage 0/0/1 +1.3.6.1.2.1.47.1.1.1.1.7.16251165|4|temperature 0/0/1 +1.3.6.1.2.1.47.1.1.1.1.7.16949774|4|voltage 0/RSP0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.17096855|4|voltage 0/RSP0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.17098539|4|voltage 0/RSP0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.17452244|4|slot mau 0/0/0/1 +1.3.6.1.2.1.47.1.1.1.1.7.17977066|4|speed 0/FT0/SP +1.3.6.1.2.1.47.1.1.1.1.7.18708510|4|power Rx 0/0/0/3 +1.3.6.1.2.1.47.1.1.1.1.7.18788073|4|module 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.19161232|4|slot mau 0/0/1/13 +1.3.6.1.2.1.47.1.1.1.1.7.19337222|4|voltage 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.19338842|4|voltage 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.19441360|4|speed 0/FT0/SP +1.3.6.1.2.1.47.1.1.1.1.7.19750579|4|module 0/PS0/M0/SP +1.3.6.1.2.1.47.1.1.1.1.7.20133606|4|capacity 0/PS0/M0/SP +1.3.6.1.2.1.47.1.1.1.1.7.21500831|4|subslot 0/0/2 +1.3.6.1.2.1.47.1.1.1.1.7.21657197|4|power-module 0/PS0/M1/SP +1.3.6.1.2.1.47.1.1.1.1.7.22233606|4|GigabitEthernet0/0/1/10 +1.3.6.1.2.1.47.1.1.1.1.7.22235226|4|GigabitEthernet0/0/1/6 +1.3.6.1.2.1.47.1.1.1.1.7.22238498|4|GigabitEthernet0/0/1/14 +1.3.6.1.2.1.47.1.1.1.1.7.22383991|4|GigabitEthernet0/0/1/16 +1.3.6.1.2.1.47.1.1.1.1.7.22731389|4|GigabitEthernet0/0/1/4 +1.3.6.1.2.1.47.1.1.1.1.7.22732977|4|GigabitEthernet0/0/1/0 +1.3.6.1.2.1.47.1.1.1.1.7.23538399|4|temperature 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.23539987|4|temperature 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.23541671|4|voltage 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.23612527|4|voltage 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.23614115|4|voltage 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.23615735|4|voltage 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.24113454|4|voltage 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.24115042|4|voltage 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.24133071|4|fan4 0/FT0/SP +1.3.6.1.2.1.47.1.1.1.1.7.24134659|4|fan0 0/FT0/SP +1.3.6.1.2.1.47.1.1.1.1.7.24137963|4|fan8 0/FT0/SP +1.3.6.1.2.1.47.1.1.1.1.7.24205691|4|power Rx 0/0/1/1 +1.3.6.1.2.1.47.1.1.1.1.7.24555730|4|chassis ASR-9001 +1.3.6.1.2.1.47.1.1.1.1.7.25205777|4|voltage 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.25207461|4|voltage 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.25332609|4|TenGigE0/0/2/0 +1.3.6.1.2.1.47.1.1.1.1.7.25550897|4|TenGigE0/0/0/1 +1.3.6.1.2.1.47.1.1.1.1.7.25693872|4|voltage 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.26493680|4|power Tx 0/0/1/3 +1.3.6.1.2.1.47.1.1.1.1.7.26947585|4|slot 0/0 +1.3.6.1.2.1.47.1.1.1.1.7.27434349|4|slot mau 0/0/1/6 +1.3.6.1.2.1.47.1.1.1.1.7.28091685|4|slot 0/RSP0 +1.3.6.1.2.1.47.1.1.1.1.7.28204604|4|ControlEthernet0/RSP0/CPU0/S0/23 +1.3.6.1.2.1.47.1.1.1.1.7.28404825|4|ControlEthernet0/RSP0/CPU0/S0/11 +1.3.6.1.2.1.47.1.1.1.1.7.28408097|4|ControlEthernet0/RSP0/CPU0/S0/3 +1.3.6.1.2.1.47.1.1.1.1.7.28409717|4|ControlEthernet0/RSP0/CPU0/S0/7 +1.3.6.1.2.1.47.1.1.1.1.7.28556766|4|ControlEthernet0/RSP0/CPU0/S0/19 +1.3.6.1.2.1.47.1.1.1.1.7.28558354|4|ControlEthernet0/RSP0/CPU0/S0/15 +1.3.6.1.2.1.47.1.1.1.1.7.28595820|4|speed 0/FT0/SP +1.3.6.1.2.1.47.1.1.1.1.7.28712902|4|slot mau 0/0/1/7 +1.3.6.1.2.1.47.1.1.1.1.7.29047573|4|fan11 0/FT0/SP +1.3.6.1.2.1.47.1.1.1.1.7.29680361|4|voltage 0/RSP0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.29683569|4|temperature 0/RSP0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.29685125|4|temperature 0/RSP0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.30054631|4|module mau 0/0/2/0 +1.3.6.1.2.1.47.1.1.1.1.7.30573226|4|power Rx 0/0/2/2 +1.3.6.1.2.1.47.1.1.1.1.7.30805863|4|slot mau 0/0/1/15 +1.3.6.1.2.1.47.1.1.1.1.7.31368921|4|voltage 0/0/0 +1.3.6.1.2.1.47.1.1.1.1.7.31370605|4|temperature 0/0/0 +1.3.6.1.2.1.47.1.1.1.1.7.31373813|4|voltage 0/0/0 +1.3.6.1.2.1.47.1.1.1.1.7.31415605|4|module mau 0/0/2/2 +1.3.6.1.2.1.47.1.1.1.1.7.31558363|4|current 0/0/2/0 +1.3.6.1.2.1.47.1.1.1.1.7.32635680|4|voltage 0/PS0/M1/SP +1.3.6.1.2.1.47.1.1.1.1.7.33027158|4|voltage 0/0/1 +1.3.6.1.2.1.47.1.1.1.1.7.33028842|4|temperature 0/0/1 +1.3.6.1.2.1.47.1.1.1.1.7.33874532|4|voltage 0/RSP0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.33876152|4|voltage 0/RSP0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.34515143|4|slot mau 0/0/1/1 +1.3.6.1.2.1.47.1.1.1.1.7.35064942|4|speed 0/FT0/SP +1.3.6.1.2.1.47.1.1.1.1.7.35484503|4|power Tx 0/0/0/3 +1.3.6.1.2.1.47.1.1.1.1.7.35565686|4|cpu 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.36113247|4|voltage 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.36114835|4|voltage 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.36118139|4|voltage 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.37336673|4|module mau 0/0/0/3 +1.3.6.1.2.1.47.1.1.1.1.7.38645760|4|module 0/RSP0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.38774543|4|subslot 0/0/1 +1.3.6.1.2.1.47.1.1.1.1.7.39009631|4|GigabitEthernet0/0/1/11 +1.3.6.1.2.1.47.1.1.1.1.7.39011219|4|GigabitEthernet0/0/1/7 +1.3.6.1.2.1.47.1.1.1.1.7.39161540|4|GigabitEthernet0/0/1/15 +1.3.6.1.2.1.47.1.1.1.1.7.39163160|4|GigabitEthernet0/0/1/19 +1.3.6.1.2.1.47.1.1.1.1.7.39508938|4|GigabitEthernet0/0/1/3 +1.3.6.1.2.1.47.1.1.1.1.7.40316076|4|temperature 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.40317664|4|temperature 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.40319284|4|voltage 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.40390140|4|voltage 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.40391728|4|voltage 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.40393284|4|voltage 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.40886175|4|voltage 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.40889447|4|voltage 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.40891067|4|voltage 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.40910684|4|fan3 0/FT0/SP +1.3.6.1.2.1.47.1.1.1.1.7.40912272|4|module 0/FT0/SP +1.3.6.1.2.1.47.1.1.1.1.7.40915576|4|fan7 0/FT0/SP +1.3.6.1.2.1.47.1.1.1.1.7.40983240|4|current 0/0/1/1 +1.3.6.1.2.1.47.1.1.1.1.7.41847727|4|slot mau 0/0/1/12 +1.3.6.1.2.1.47.1.1.1.1.7.41889607|4|slot mau 0/0/0/0 +1.3.6.1.2.1.47.1.1.1.1.7.41903305|4|slot mau 0/0/0/2 +1.3.6.1.2.1.47.1.1.1.1.7.41983486|4|voltage 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.41985074|4|voltage 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.42108634|4|TenGigE0/0/2/3 +1.3.6.1.2.1.47.1.1.1.1.7.42328478|4|TenGigE0/0/0/2 +1.3.6.1.2.1.47.1.1.1.1.7.42471453|4|voltage 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.43271261|4|power Rx 0/0/1/3 +1.3.6.1.2.1.47.1.1.1.1.7.43665869|4|slot 0/PS0/M0 +1.3.6.1.2.1.47.1.1.1.1.7.44949055|4|speed 0/FT0/SP +1.3.6.1.2.1.47.1.1.1.1.7.44982153|4|MgmtEth0/RSP0/CPU0/1 +1.3.6.1.2.1.47.1.1.1.1.7.44987045|4|ControlEthernet0/RSP0/CPU0/S0/2 +1.3.6.1.2.1.47.1.1.1.1.7.45182502|4|ControlEthernet0/RSP0/CPU0/S0/12 +1.3.6.1.2.1.47.1.1.1.1.7.45185678|4|ControlEthernet0/RSP0/CPU0/S0/4 +1.3.6.1.2.1.47.1.1.1.1.7.45187266|4|ControlEthernet0/RSP0/CPU0/S0/8 +1.3.6.1.2.1.47.1.1.1.1.7.45331139|4|ControlEthernet0/RSP0/CPU0/S0/22 +1.3.6.1.2.1.47.1.1.1.1.7.45332759|4|ControlEthernet0/RSP0/CPU0/S0/18 +1.3.6.1.2.1.47.1.1.1.1.7.45334443|4|ControlEthernet0/RSP0/CPU0/S0/14 +1.3.6.1.2.1.47.1.1.1.1.7.45692779|4|slot mau 0/0/1/8 +1.3.6.1.2.1.47.1.1.1.1.7.45825250|4|fan12 0/FT0/SP +1.3.6.1.2.1.47.1.1.1.1.7.45832162|4|slot 0/FT0 +1.3.6.1.2.1.47.1.1.1.1.7.46324915|4|speed 0/FT0/SP +1.3.6.1.2.1.47.1.1.1.1.7.46457974|4|voltage 0/RSP0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.46461150|4|temperature 0/RSP0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.46462738|4|temperature 0/RSP0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.47349219|4|power Tx 0/0/2/2 +1.3.6.1.2.1.47.1.1.1.1.7.47925186|4|slot mau 0/0/2/2 +1.3.6.1.2.1.47.1.1.1.1.7.48146598|4|voltage 0/0/0 +1.3.6.1.2.1.47.1.1.1.1.7.48148218|4|temperature 0/0/0 +1.3.6.1.2.1.47.1.1.1.1.7.48151362|4|voltage 0/0/0 +1.3.6.1.2.1.47.1.1.1.1.7.48336040|4|power Rx 0/0/2/0 +1.3.6.1.2.1.47.1.1.1.1.7.49125802|4|module 0/0/1 +1.3.6.1.2.1.47.1.1.1.1.7.49413261|4|current 0/PS0/M1/SP +1.3.6.1.2.1.47.1.1.1.1.7.49626948|4|slot mau 0/0/2/0 +1.3.6.1.2.1.47.1.1.1.1.7.49803247|4|voltage 0/0/1 +1.3.6.1.2.1.47.1.1.1.1.7.49804835|4|voltage 0/0/1 +1.3.6.1.2.1.47.1.1.1.1.7.50514562|4|speed 0/FT0/SP +1.3.6.1.2.1.47.1.1.1.1.7.50650557|4|voltage 0/RSP0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.50652145|4|voltage 0/RSP0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.50653701|4|voltage 0/RSP0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.50864446|4|speed 0/FT0/SP +1.3.6.1.2.1.47.1.1.1.1.7.52262180|4|temperature 0/0/0/3 +1.3.6.1.2.1.47.1.1.1.1.7.52690955|4|module 0/RSP0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.52890924|4|voltage 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.52892512|4|voltage 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.52895688|4|voltage 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.53442901|4|speed 0/FT0/SP +1.3.6.1.2.1.47.1.1.1.1.7.53687180|4|current 0/PS0/M0/SP +1.3.6.1.2.1.47.1.1.1.1.7.53899162|4|module 0/0/2 +1.3.6.1.2.1.47.1.1.1.1.7.55552156|4|subslot 0/0/0 +1.3.6.1.2.1.47.1.1.1.1.7.55787308|4|GigabitEthernet0/0/1/12 +1.3.6.1.2.1.47.1.1.1.1.7.55788896|4|GigabitEthernet0/0/1/8 +1.3.6.1.2.1.47.1.1.1.1.7.55939153|4|GigabitEthernet0/0/1/18 +1.3.6.1.2.1.47.1.1.1.1.7.56286551|4|GigabitEthernet0/0/1/2 +1.3.6.1.2.1.47.1.1.1.1.7.56880003|4|speed 0/FT0/SP +1.3.6.1.2.1.47.1.1.1.1.7.57093689|4|temperature 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.57095245|4|voltage 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.57167689|4|voltage 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.57169309|4|voltage 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.57269142|4|speed 0/FT0/SP +1.3.6.1.2.1.47.1.1.1.1.7.57663852|4|voltage 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.57667060|4|voltage 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.57668616|4|voltage 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.57688361|4|fan6 0/FT0/SP +1.3.6.1.2.1.47.1.1.1.1.7.57689981|4|fan2 0/FT0/SP +1.3.6.1.2.1.47.1.1.1.1.7.57759233|4|voltage 0/0/1/1 +1.3.6.1.2.1.47.1.1.1.1.7.57760853|4|temperature 0/0/1/1 +1.3.6.1.2.1.47.1.1.1.1.7.57885340|4|slot mau 0/0/1/9 +1.3.6.1.2.1.47.1.1.1.1.7.58757859|4|voltage 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.58759479|4|voltage 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.58761035|4|voltage 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.58886311|4|TenGigE0/0/2/2 +1.3.6.1.2.1.47.1.1.1.1.7.59102851|4|TenGigE0/0/0/3 +1.3.6.1.2.1.47.1.1.1.1.7.59249130|4|voltage 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.59316821|4|fantray 0/FT0/SP +1.3.6.1.2.1.47.1.1.1.1.7.59586871|4|slot mau 0/0/2/1 +1.3.6.1.2.1.47.1.1.1.1.7.60048938|4|current 0/0/1/3 +1.3.6.1.2.1.47.1.1.1.1.7.60443482|4|slot 0/PS0/M1 +1.3.6.1.2.1.47.1.1.1.1.7.60798546|4|slot mau 0/0/1/2 +1.3.6.1.2.1.47.1.1.1.1.7.61759766|4|MgmtEth0/RSP0/CPU0/0 +1.3.6.1.2.1.47.1.1.1.1.7.61764658|4|ControlEthernet0/RSP0/CPU0/S0/1 +1.3.6.1.2.1.47.1.1.1.1.7.61961671|4|ControlEthernet0/RSP0/CPU0/S0/5 +1.3.6.1.2.1.47.1.1.1.1.7.61963291|4|ControlEthernet0/RSP0/CPU0/S0/9 +1.3.6.1.2.1.47.1.1.1.1.7.62108752|4|ControlEthernet0/RSP0/CPU0/S0/21 +1.3.6.1.2.1.47.1.1.1.1.7.62110436|4|ControlEthernet0/RSP0/CPU0/S0/17 +1.3.6.1.2.1.47.1.1.1.1.7.62112056|4|ControlEthernet0/RSP0/CPU0/S0/13 +1.3.6.1.2.1.47.1.1.1.1.7.62482494|4|module 0/0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.62599655|4|fan13 0/FT0/SP +1.3.6.1.2.1.47.1.1.1.1.7.62601275|4|fan9 0/FT0/SP +1.3.6.1.2.1.47.1.1.1.1.7.63171350|4|slot mau 0/0/0/3 +1.3.6.1.2.1.47.1.1.1.1.7.63237143|4|temperature 0/RSP0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.63238827|4|voltage 0/RSP0/CPU0 +1.3.6.1.2.1.47.1.1.1.1.7.64125244|4|voltage 0/0/2/2 +1.3.6.1.2.1.47.1.1.1.1.7.64126832|4|temperature 0/0/2/2 +1.3.6.1.2.1.47.1.1.1.1.7.64527637|4|slot mau 0/0/1/14 +1.3.6.1.2.1.47.1.1.1.1.7.64765592|4|slot mau 0/0/1/4 +1.3.6.1.2.1.47.1.1.1.1.7.64922623|4|voltage 0/0/0 +1.3.6.1.2.1.47.1.1.1.1.7.64924211|4|voltage 0/0/0 +1.3.6.1.2.1.47.1.1.1.1.7.65113653|4|power Tx 0/0/2/0 +1.3.6.1.2.1.47.1.1.1.1.7.66227682|4|module mau 0/0/1/1 +1.3.6.1.2.1.47.1.1.1.1.7.66237848|4|speed 0/FT0/SP +1.3.6.1.2.1.47.1.1.1.1.7.66531208|4|power-module 0/PS0/M0/SP +1.3.6.1.2.1.47.1.1.1.1.7.66582448|4|voltage 0/0/1 +1.3.6.1.2.1.47.1.1.1.1.8.172193|4| +1.3.6.1.2.1.47.1.1.1.1.8.319242|4| +1.3.6.1.2.1.47.1.1.1.1.8.320862|4| +1.3.6.1.2.1.47.1.1.1.1.8.322450|4| +1.3.6.1.2.1.47.1.1.1.1.8.1930929|4| +1.3.6.1.2.1.47.1.1.1.1.8.2237736|4| +1.3.6.1.2.1.47.1.1.1.1.8.2359704|4|N/A +1.3.6.1.2.1.47.1.1.1.1.8.2559673|4| +1.3.6.1.2.1.47.1.1.1.1.8.2561229|4| +1.3.6.1.2.1.47.1.1.1.1.8.3355929|4| +1.3.6.1.2.1.47.1.1.1.1.8.5199496|4| +1.3.6.1.2.1.47.1.1.1.1.8.5225733|4|V01 +1.3.6.1.2.1.47.1.1.1.1.8.5456057|4| +1.3.6.1.2.1.47.1.1.1.1.8.5457613|4| +1.3.6.1.2.1.47.1.1.1.1.8.5460821|4| +1.3.6.1.2.1.47.1.1.1.1.8.5607998|4| +1.3.6.1.2.1.47.1.1.1.1.8.5955364|4| +1.3.6.1.2.1.47.1.1.1.1.8.5959917|4| +1.3.6.1.2.1.47.1.1.1.1.8.6762374|4| +1.3.6.1.2.1.47.1.1.1.1.8.6763994|4| +1.3.6.1.2.1.47.1.1.1.1.8.6836438|4| +1.3.6.1.2.1.47.1.1.1.1.8.6838122|4| +1.3.6.1.2.1.47.1.1.1.1.8.7335745|4| +1.3.6.1.2.1.47.1.1.1.1.8.7337365|4| +1.3.6.1.2.1.47.1.1.1.1.8.7357110|4|N/A +1.3.6.1.2.1.47.1.1.1.1.8.7358666|4|N/A +1.3.6.1.2.1.47.1.1.1.1.8.7429666|4| +1.3.6.1.2.1.47.1.1.1.1.8.8426608|4| +1.3.6.1.2.1.47.1.1.1.1.8.8428164|4| +1.3.6.1.2.1.47.1.1.1.1.8.8429784|4| +1.3.6.1.2.1.47.1.1.1.1.8.8555060|4| +1.3.6.1.2.1.47.1.1.1.1.8.8773284|4| +1.3.6.1.2.1.47.1.1.1.1.8.8916259|4| +1.3.6.1.2.1.47.1.1.1.1.8.9714479|4| +1.3.6.1.2.1.47.1.1.1.1.8.9716067|4| +1.3.6.1.2.1.47.1.1.1.1.8.10077780|4| +1.3.6.1.2.1.47.1.1.1.1.8.10090737|4| +1.3.6.1.2.1.47.1.1.1.1.8.10527011|4| +1.3.6.1.2.1.47.1.1.1.1.8.11426991|4| +1.3.6.1.2.1.47.1.1.1.1.8.11517556|4| +1.3.6.1.2.1.47.1.1.1.1.8.11630420|4| +1.3.6.1.2.1.47.1.1.1.1.8.11632104|4| +1.3.6.1.2.1.47.1.1.1.1.8.11779185|4| +1.3.6.1.2.1.47.1.1.1.1.8.11780741|4| +1.3.6.1.2.1.47.1.1.1.1.8.12269960|4|N/A +1.3.6.1.2.1.47.1.1.1.1.8.12333373|4| +1.3.6.1.2.1.47.1.1.1.1.8.12510322|4| +1.3.6.1.2.1.47.1.1.1.1.8.12905956|4| +1.3.6.1.2.1.47.1.1.1.1.8.12907576|4| +1.3.6.1.2.1.47.1.1.1.1.8.13795549|4| +1.3.6.1.2.1.47.1.1.1.1.8.13805629|4| +1.3.6.1.2.1.47.1.1.1.1.8.14322921|4| +1.3.6.1.2.1.47.1.1.1.1.8.14585855|4|V05 +1.3.6.1.2.1.47.1.1.1.1.8.14591308|4| +1.3.6.1.2.1.47.1.1.1.1.8.14592896|4| +1.3.6.1.2.1.47.1.1.1.1.8.14780750|4| +1.3.6.1.2.1.47.1.1.1.1.8.14782338|4| +1.3.6.1.2.1.47.1.1.1.1.8.15177601|4| +1.3.6.1.2.1.47.1.1.1.1.8.15394522|4| +1.3.6.1.2.1.47.1.1.1.1.8.15526104|4|V02 +1.3.6.1.2.1.47.1.1.1.1.8.15858003|4| +1.3.6.1.2.1.47.1.1.1.1.8.16249545|4| +1.3.6.1.2.1.47.1.1.1.1.8.16251165|4| +1.3.6.1.2.1.47.1.1.1.1.8.16949774|4| +1.3.6.1.2.1.47.1.1.1.1.8.17096855|4| +1.3.6.1.2.1.47.1.1.1.1.8.17098539|4| +1.3.6.1.2.1.47.1.1.1.1.8.17452244|4| +1.3.6.1.2.1.47.1.1.1.1.8.17977066|4| +1.3.6.1.2.1.47.1.1.1.1.8.18708510|4| +1.3.6.1.2.1.47.1.1.1.1.8.18788073|4|N/A +1.3.6.1.2.1.47.1.1.1.1.8.19161232|4| +1.3.6.1.2.1.47.1.1.1.1.8.19337222|4| +1.3.6.1.2.1.47.1.1.1.1.8.19338842|4| +1.3.6.1.2.1.47.1.1.1.1.8.19441360|4| +1.3.6.1.2.1.47.1.1.1.1.8.19750579|4| +1.3.6.1.2.1.47.1.1.1.1.8.20133606|4| +1.3.6.1.2.1.47.1.1.1.1.8.21500831|4| +1.3.6.1.2.1.47.1.1.1.1.8.21657197|4|V01 +1.3.6.1.2.1.47.1.1.1.1.8.22233606|4| +1.3.6.1.2.1.47.1.1.1.1.8.22235226|4| +1.3.6.1.2.1.47.1.1.1.1.8.22238498|4| +1.3.6.1.2.1.47.1.1.1.1.8.22383991|4| +1.3.6.1.2.1.47.1.1.1.1.8.22731389|4| +1.3.6.1.2.1.47.1.1.1.1.8.22732977|4| +1.3.6.1.2.1.47.1.1.1.1.8.23538399|4| +1.3.6.1.2.1.47.1.1.1.1.8.23539987|4| +1.3.6.1.2.1.47.1.1.1.1.8.23541671|4| +1.3.6.1.2.1.47.1.1.1.1.8.23612527|4| +1.3.6.1.2.1.47.1.1.1.1.8.23614115|4| +1.3.6.1.2.1.47.1.1.1.1.8.23615735|4| +1.3.6.1.2.1.47.1.1.1.1.8.24113454|4| +1.3.6.1.2.1.47.1.1.1.1.8.24115042|4| +1.3.6.1.2.1.47.1.1.1.1.8.24133071|4|N/A +1.3.6.1.2.1.47.1.1.1.1.8.24134659|4|N/A +1.3.6.1.2.1.47.1.1.1.1.8.24137963|4|N/A +1.3.6.1.2.1.47.1.1.1.1.8.24205691|4| +1.3.6.1.2.1.47.1.1.1.1.8.24555730|4|V06 +1.3.6.1.2.1.47.1.1.1.1.8.25205777|4| +1.3.6.1.2.1.47.1.1.1.1.8.25207461|4| +1.3.6.1.2.1.47.1.1.1.1.8.25332609|4| +1.3.6.1.2.1.47.1.1.1.1.8.25550897|4| +1.3.6.1.2.1.47.1.1.1.1.8.25693872|4| +1.3.6.1.2.1.47.1.1.1.1.8.26493680|4| +1.3.6.1.2.1.47.1.1.1.1.8.26947585|4| +1.3.6.1.2.1.47.1.1.1.1.8.27434349|4| +1.3.6.1.2.1.47.1.1.1.1.8.28091685|4| +1.3.6.1.2.1.47.1.1.1.1.8.28204604|4| +1.3.6.1.2.1.47.1.1.1.1.8.28404825|4| +1.3.6.1.2.1.47.1.1.1.1.8.28408097|4| +1.3.6.1.2.1.47.1.1.1.1.8.28409717|4| +1.3.6.1.2.1.47.1.1.1.1.8.28556766|4| +1.3.6.1.2.1.47.1.1.1.1.8.28558354|4| +1.3.6.1.2.1.47.1.1.1.1.8.28595820|4| +1.3.6.1.2.1.47.1.1.1.1.8.28712902|4| +1.3.6.1.2.1.47.1.1.1.1.8.29047573|4|N/A +1.3.6.1.2.1.47.1.1.1.1.8.29680361|4| +1.3.6.1.2.1.47.1.1.1.1.8.29683569|4| +1.3.6.1.2.1.47.1.1.1.1.8.29685125|4| +1.3.6.1.2.1.47.1.1.1.1.8.30054631|4|V02 +1.3.6.1.2.1.47.1.1.1.1.8.30573226|4| +1.3.6.1.2.1.47.1.1.1.1.8.30805863|4| +1.3.6.1.2.1.47.1.1.1.1.8.31368921|4| +1.3.6.1.2.1.47.1.1.1.1.8.31370605|4| +1.3.6.1.2.1.47.1.1.1.1.8.31373813|4| +1.3.6.1.2.1.47.1.1.1.1.8.31415605|4|V01 +1.3.6.1.2.1.47.1.1.1.1.8.31558363|4| +1.3.6.1.2.1.47.1.1.1.1.8.32635680|4| +1.3.6.1.2.1.47.1.1.1.1.8.33027158|4| +1.3.6.1.2.1.47.1.1.1.1.8.33028842|4| +1.3.6.1.2.1.47.1.1.1.1.8.33874532|4| +1.3.6.1.2.1.47.1.1.1.1.8.33876152|4| +1.3.6.1.2.1.47.1.1.1.1.8.34515143|4| +1.3.6.1.2.1.47.1.1.1.1.8.35064942|4| +1.3.6.1.2.1.47.1.1.1.1.8.35484503|4| +1.3.6.1.2.1.47.1.1.1.1.8.35565686|4|N/A +1.3.6.1.2.1.47.1.1.1.1.8.36113247|4| +1.3.6.1.2.1.47.1.1.1.1.8.36114835|4| +1.3.6.1.2.1.47.1.1.1.1.8.36118139|4| +1.3.6.1.2.1.47.1.1.1.1.8.37336673|4|V03 +1.3.6.1.2.1.47.1.1.1.1.8.38645760|4|V01 +1.3.6.1.2.1.47.1.1.1.1.8.38774543|4| +1.3.6.1.2.1.47.1.1.1.1.8.39009631|4| +1.3.6.1.2.1.47.1.1.1.1.8.39011219|4| +1.3.6.1.2.1.47.1.1.1.1.8.39161540|4| +1.3.6.1.2.1.47.1.1.1.1.8.39163160|4| +1.3.6.1.2.1.47.1.1.1.1.8.39508938|4| +1.3.6.1.2.1.47.1.1.1.1.8.40316076|4| +1.3.6.1.2.1.47.1.1.1.1.8.40317664|4| +1.3.6.1.2.1.47.1.1.1.1.8.40319284|4| +1.3.6.1.2.1.47.1.1.1.1.8.40390140|4| +1.3.6.1.2.1.47.1.1.1.1.8.40391728|4| +1.3.6.1.2.1.47.1.1.1.1.8.40393284|4| +1.3.6.1.2.1.47.1.1.1.1.8.40886175|4| +1.3.6.1.2.1.47.1.1.1.1.8.40889447|4| +1.3.6.1.2.1.47.1.1.1.1.8.40891067|4| +1.3.6.1.2.1.47.1.1.1.1.8.40910684|4|N/A +1.3.6.1.2.1.47.1.1.1.1.8.40912272|4|N/A +1.3.6.1.2.1.47.1.1.1.1.8.40915576|4|N/A +1.3.6.1.2.1.47.1.1.1.1.8.40983240|4| +1.3.6.1.2.1.47.1.1.1.1.8.41847727|4| +1.3.6.1.2.1.47.1.1.1.1.8.41889607|4| +1.3.6.1.2.1.47.1.1.1.1.8.41903305|4| +1.3.6.1.2.1.47.1.1.1.1.8.41983486|4| +1.3.6.1.2.1.47.1.1.1.1.8.41985074|4| +1.3.6.1.2.1.47.1.1.1.1.8.42108634|4| +1.3.6.1.2.1.47.1.1.1.1.8.42328478|4| +1.3.6.1.2.1.47.1.1.1.1.8.42471453|4| +1.3.6.1.2.1.47.1.1.1.1.8.43271261|4| +1.3.6.1.2.1.47.1.1.1.1.8.43665869|4| +1.3.6.1.2.1.47.1.1.1.1.8.44949055|4| +1.3.6.1.2.1.47.1.1.1.1.8.44982153|4| +1.3.6.1.2.1.47.1.1.1.1.8.44987045|4| +1.3.6.1.2.1.47.1.1.1.1.8.45182502|4| +1.3.6.1.2.1.47.1.1.1.1.8.45185678|4| +1.3.6.1.2.1.47.1.1.1.1.8.45187266|4| +1.3.6.1.2.1.47.1.1.1.1.8.45331139|4| +1.3.6.1.2.1.47.1.1.1.1.8.45332759|4| +1.3.6.1.2.1.47.1.1.1.1.8.45334443|4| +1.3.6.1.2.1.47.1.1.1.1.8.45692779|4| +1.3.6.1.2.1.47.1.1.1.1.8.45825250|4|N/A +1.3.6.1.2.1.47.1.1.1.1.8.45832162|4| +1.3.6.1.2.1.47.1.1.1.1.8.46324915|4| +1.3.6.1.2.1.47.1.1.1.1.8.46457974|4| +1.3.6.1.2.1.47.1.1.1.1.8.46461150|4| +1.3.6.1.2.1.47.1.1.1.1.8.46462738|4| +1.3.6.1.2.1.47.1.1.1.1.8.47349219|4| +1.3.6.1.2.1.47.1.1.1.1.8.47925186|4| +1.3.6.1.2.1.47.1.1.1.1.8.48146598|4| +1.3.6.1.2.1.47.1.1.1.1.8.48148218|4| +1.3.6.1.2.1.47.1.1.1.1.8.48151362|4| +1.3.6.1.2.1.47.1.1.1.1.8.48336040|4| +1.3.6.1.2.1.47.1.1.1.1.8.49125802|4|V05 +1.3.6.1.2.1.47.1.1.1.1.8.49413261|4| +1.3.6.1.2.1.47.1.1.1.1.8.49626948|4| +1.3.6.1.2.1.47.1.1.1.1.8.49803247|4| +1.3.6.1.2.1.47.1.1.1.1.8.49804835|4| +1.3.6.1.2.1.47.1.1.1.1.8.50514562|4| +1.3.6.1.2.1.47.1.1.1.1.8.50650557|4| +1.3.6.1.2.1.47.1.1.1.1.8.50652145|4| +1.3.6.1.2.1.47.1.1.1.1.8.50653701|4| +1.3.6.1.2.1.47.1.1.1.1.8.50864446|4| +1.3.6.1.2.1.47.1.1.1.1.8.52262180|4| +1.3.6.1.2.1.47.1.1.1.1.8.52690955|4| +1.3.6.1.2.1.47.1.1.1.1.8.52890924|4| +1.3.6.1.2.1.47.1.1.1.1.8.52892512|4| +1.3.6.1.2.1.47.1.1.1.1.8.52895688|4| +1.3.6.1.2.1.47.1.1.1.1.8.53442901|4| +1.3.6.1.2.1.47.1.1.1.1.8.53687180|4| +1.3.6.1.2.1.47.1.1.1.1.8.53899162|4| +1.3.6.1.2.1.47.1.1.1.1.8.55552156|4| +1.3.6.1.2.1.47.1.1.1.1.8.55787308|4| +1.3.6.1.2.1.47.1.1.1.1.8.55788896|4| +1.3.6.1.2.1.47.1.1.1.1.8.55939153|4| +1.3.6.1.2.1.47.1.1.1.1.8.56286551|4| +1.3.6.1.2.1.47.1.1.1.1.8.56880003|4| +1.3.6.1.2.1.47.1.1.1.1.8.57093689|4| +1.3.6.1.2.1.47.1.1.1.1.8.57095245|4| +1.3.6.1.2.1.47.1.1.1.1.8.57167689|4| +1.3.6.1.2.1.47.1.1.1.1.8.57169309|4| +1.3.6.1.2.1.47.1.1.1.1.8.57269142|4| +1.3.6.1.2.1.47.1.1.1.1.8.57663852|4| +1.3.6.1.2.1.47.1.1.1.1.8.57667060|4| +1.3.6.1.2.1.47.1.1.1.1.8.57668616|4| +1.3.6.1.2.1.47.1.1.1.1.8.57688361|4|N/A +1.3.6.1.2.1.47.1.1.1.1.8.57689981|4|N/A +1.3.6.1.2.1.47.1.1.1.1.8.57759233|4| +1.3.6.1.2.1.47.1.1.1.1.8.57760853|4| +1.3.6.1.2.1.47.1.1.1.1.8.57885340|4| +1.3.6.1.2.1.47.1.1.1.1.8.58757859|4| +1.3.6.1.2.1.47.1.1.1.1.8.58759479|4| +1.3.6.1.2.1.47.1.1.1.1.8.58761035|4| +1.3.6.1.2.1.47.1.1.1.1.8.58886311|4| +1.3.6.1.2.1.47.1.1.1.1.8.59102851|4| +1.3.6.1.2.1.47.1.1.1.1.8.59249130|4| +1.3.6.1.2.1.47.1.1.1.1.8.59316821|4|V03 +1.3.6.1.2.1.47.1.1.1.1.8.59586871|4| +1.3.6.1.2.1.47.1.1.1.1.8.60048938|4| +1.3.6.1.2.1.47.1.1.1.1.8.60443482|4| +1.3.6.1.2.1.47.1.1.1.1.8.60798546|4| +1.3.6.1.2.1.47.1.1.1.1.8.61759766|4| +1.3.6.1.2.1.47.1.1.1.1.8.61764658|4| +1.3.6.1.2.1.47.1.1.1.1.8.61961671|4| +1.3.6.1.2.1.47.1.1.1.1.8.61963291|4| +1.3.6.1.2.1.47.1.1.1.1.8.62108752|4| +1.3.6.1.2.1.47.1.1.1.1.8.62110436|4| +1.3.6.1.2.1.47.1.1.1.1.8.62112056|4| +1.3.6.1.2.1.47.1.1.1.1.8.62482494|4|V01 +1.3.6.1.2.1.47.1.1.1.1.8.62599655|4|N/A +1.3.6.1.2.1.47.1.1.1.1.8.62601275|4|N/A +1.3.6.1.2.1.47.1.1.1.1.8.63171350|4| +1.3.6.1.2.1.47.1.1.1.1.8.63237143|4| +1.3.6.1.2.1.47.1.1.1.1.8.63238827|4| +1.3.6.1.2.1.47.1.1.1.1.8.64125244|4| +1.3.6.1.2.1.47.1.1.1.1.8.64126832|4| +1.3.6.1.2.1.47.1.1.1.1.8.64527637|4| +1.3.6.1.2.1.47.1.1.1.1.8.64765592|4| +1.3.6.1.2.1.47.1.1.1.1.8.64922623|4| +1.3.6.1.2.1.47.1.1.1.1.8.64924211|4| +1.3.6.1.2.1.47.1.1.1.1.8.65113653|4| +1.3.6.1.2.1.47.1.1.1.1.8.66227682|4|V01 +1.3.6.1.2.1.47.1.1.1.1.8.66237848|4| +1.3.6.1.2.1.47.1.1.1.1.8.66531208|4|V01 +1.3.6.1.2.1.47.1.1.1.1.8.66582448|4| +1.3.6.1.2.1.47.1.1.1.1.9.172193|4| +1.3.6.1.2.1.47.1.1.1.1.9.319242|4| +1.3.6.1.2.1.47.1.1.1.1.9.320862|4| +1.3.6.1.2.1.47.1.1.1.1.9.322450|4| +1.3.6.1.2.1.47.1.1.1.1.9.1930929|4| +1.3.6.1.2.1.47.1.1.1.1.9.2237736|4| +1.3.6.1.2.1.47.1.1.1.1.9.2359704|4| +1.3.6.1.2.1.47.1.1.1.1.9.2559673|4| +1.3.6.1.2.1.47.1.1.1.1.9.2561229|4| +1.3.6.1.2.1.47.1.1.1.1.9.3355929|4| +1.3.6.1.2.1.47.1.1.1.1.9.5199496|4| +1.3.6.1.2.1.47.1.1.1.1.9.5225733|4|V0.0 +1.3.6.1.2.1.47.1.1.1.1.9.5456057|4| +1.3.6.1.2.1.47.1.1.1.1.9.5457613|4| +1.3.6.1.2.1.47.1.1.1.1.9.5460821|4| +1.3.6.1.2.1.47.1.1.1.1.9.5607998|4| +1.3.6.1.2.1.47.1.1.1.1.9.5955364|4| +1.3.6.1.2.1.47.1.1.1.1.9.5959917|4| +1.3.6.1.2.1.47.1.1.1.1.9.6762374|4| +1.3.6.1.2.1.47.1.1.1.1.9.6763994|4| +1.3.6.1.2.1.47.1.1.1.1.9.6836438|4| +1.3.6.1.2.1.47.1.1.1.1.9.6838122|4| +1.3.6.1.2.1.47.1.1.1.1.9.7335745|4| +1.3.6.1.2.1.47.1.1.1.1.9.7337365|4| +1.3.6.1.2.1.47.1.1.1.1.9.7357110|4| +1.3.6.1.2.1.47.1.1.1.1.9.7358666|4| +1.3.6.1.2.1.47.1.1.1.1.9.7429666|4| +1.3.6.1.2.1.47.1.1.1.1.9.8426608|4| +1.3.6.1.2.1.47.1.1.1.1.9.8428164|4| +1.3.6.1.2.1.47.1.1.1.1.9.8429784|4| +1.3.6.1.2.1.47.1.1.1.1.9.8555060|4| +1.3.6.1.2.1.47.1.1.1.1.9.8773284|4| +1.3.6.1.2.1.47.1.1.1.1.9.8916259|4| +1.3.6.1.2.1.47.1.1.1.1.9.9714479|4| +1.3.6.1.2.1.47.1.1.1.1.9.9716067|4| +1.3.6.1.2.1.47.1.1.1.1.9.10077780|4| +1.3.6.1.2.1.47.1.1.1.1.9.10090737|4| +1.3.6.1.2.1.47.1.1.1.1.9.10527011|4| +1.3.6.1.2.1.47.1.1.1.1.9.11426991|4| +1.3.6.1.2.1.47.1.1.1.1.9.11517556|4| +1.3.6.1.2.1.47.1.1.1.1.9.11630420|4| +1.3.6.1.2.1.47.1.1.1.1.9.11632104|4| +1.3.6.1.2.1.47.1.1.1.1.9.11779185|4| +1.3.6.1.2.1.47.1.1.1.1.9.11780741|4| +1.3.6.1.2.1.47.1.1.1.1.9.12269960|4| +1.3.6.1.2.1.47.1.1.1.1.9.12333373|4| +1.3.6.1.2.1.47.1.1.1.1.9.12510322|4| +1.3.6.1.2.1.47.1.1.1.1.9.12905956|4| +1.3.6.1.2.1.47.1.1.1.1.9.12907576|4| +1.3.6.1.2.1.47.1.1.1.1.9.13795549|4| +1.3.6.1.2.1.47.1.1.1.1.9.13805629|4| +1.3.6.1.2.1.47.1.1.1.1.9.14322921|4| +1.3.6.1.2.1.47.1.1.1.1.9.14585855|4| +1.3.6.1.2.1.47.1.1.1.1.9.14591308|4| +1.3.6.1.2.1.47.1.1.1.1.9.14592896|4| +1.3.6.1.2.1.47.1.1.1.1.9.14780750|4| +1.3.6.1.2.1.47.1.1.1.1.9.14782338|4| +1.3.6.1.2.1.47.1.1.1.1.9.15177601|4| +1.3.6.1.2.1.47.1.1.1.1.9.15394522|4| +1.3.6.1.2.1.47.1.1.1.1.9.15526104|4| +1.3.6.1.2.1.47.1.1.1.1.9.15858003|4| +1.3.6.1.2.1.47.1.1.1.1.9.16249545|4| +1.3.6.1.2.1.47.1.1.1.1.9.16251165|4| +1.3.6.1.2.1.47.1.1.1.1.9.16949774|4| +1.3.6.1.2.1.47.1.1.1.1.9.17096855|4| +1.3.6.1.2.1.47.1.1.1.1.9.17098539|4| +1.3.6.1.2.1.47.1.1.1.1.9.17452244|4| +1.3.6.1.2.1.47.1.1.1.1.9.17977066|4| +1.3.6.1.2.1.47.1.1.1.1.9.18708510|4| +1.3.6.1.2.1.47.1.1.1.1.9.18788073|4|V0.0 +1.3.6.1.2.1.47.1.1.1.1.9.19161232|4| +1.3.6.1.2.1.47.1.1.1.1.9.19337222|4| +1.3.6.1.2.1.47.1.1.1.1.9.19338842|4| +1.3.6.1.2.1.47.1.1.1.1.9.19441360|4| +1.3.6.1.2.1.47.1.1.1.1.9.19750579|4| +1.3.6.1.2.1.47.1.1.1.1.9.20133606|4| +1.3.6.1.2.1.47.1.1.1.1.9.21500831|4| +1.3.6.1.2.1.47.1.1.1.1.9.21657197|4| +1.3.6.1.2.1.47.1.1.1.1.9.22233606|4| +1.3.6.1.2.1.47.1.1.1.1.9.22235226|4| +1.3.6.1.2.1.47.1.1.1.1.9.22238498|4| +1.3.6.1.2.1.47.1.1.1.1.9.22383991|4| +1.3.6.1.2.1.47.1.1.1.1.9.22731389|4| +1.3.6.1.2.1.47.1.1.1.1.9.22732977|4| +1.3.6.1.2.1.47.1.1.1.1.9.23538399|4| +1.3.6.1.2.1.47.1.1.1.1.9.23539987|4| +1.3.6.1.2.1.47.1.1.1.1.9.23541671|4| +1.3.6.1.2.1.47.1.1.1.1.9.23612527|4| +1.3.6.1.2.1.47.1.1.1.1.9.23614115|4| +1.3.6.1.2.1.47.1.1.1.1.9.23615735|4| +1.3.6.1.2.1.47.1.1.1.1.9.24113454|4| +1.3.6.1.2.1.47.1.1.1.1.9.24115042|4| +1.3.6.1.2.1.47.1.1.1.1.9.24133071|4| +1.3.6.1.2.1.47.1.1.1.1.9.24134659|4| +1.3.6.1.2.1.47.1.1.1.1.9.24137963|4| +1.3.6.1.2.1.47.1.1.1.1.9.24205691|4| +1.3.6.1.2.1.47.1.1.1.1.9.24555730|4| +1.3.6.1.2.1.47.1.1.1.1.9.25205777|4| +1.3.6.1.2.1.47.1.1.1.1.9.25207461|4| +1.3.6.1.2.1.47.1.1.1.1.9.25332609|4| +1.3.6.1.2.1.47.1.1.1.1.9.25550897|4| +1.3.6.1.2.1.47.1.1.1.1.9.25693872|4| +1.3.6.1.2.1.47.1.1.1.1.9.26493680|4| +1.3.6.1.2.1.47.1.1.1.1.9.26947585|4| +1.3.6.1.2.1.47.1.1.1.1.9.27434349|4| +1.3.6.1.2.1.47.1.1.1.1.9.28091685|4| +1.3.6.1.2.1.47.1.1.1.1.9.28204604|4| +1.3.6.1.2.1.47.1.1.1.1.9.28404825|4| +1.3.6.1.2.1.47.1.1.1.1.9.28408097|4| +1.3.6.1.2.1.47.1.1.1.1.9.28409717|4| +1.3.6.1.2.1.47.1.1.1.1.9.28556766|4| +1.3.6.1.2.1.47.1.1.1.1.9.28558354|4| +1.3.6.1.2.1.47.1.1.1.1.9.28595820|4| +1.3.6.1.2.1.47.1.1.1.1.9.28712902|4| +1.3.6.1.2.1.47.1.1.1.1.9.29047573|4| +1.3.6.1.2.1.47.1.1.1.1.9.29680361|4| +1.3.6.1.2.1.47.1.1.1.1.9.29683569|4| +1.3.6.1.2.1.47.1.1.1.1.9.29685125|4| +1.3.6.1.2.1.47.1.1.1.1.9.30054631|4| +1.3.6.1.2.1.47.1.1.1.1.9.30573226|4| +1.3.6.1.2.1.47.1.1.1.1.9.30805863|4| +1.3.6.1.2.1.47.1.1.1.1.9.31368921|4| +1.3.6.1.2.1.47.1.1.1.1.9.31370605|4| +1.3.6.1.2.1.47.1.1.1.1.9.31373813|4| +1.3.6.1.2.1.47.1.1.1.1.9.31415605|4| +1.3.6.1.2.1.47.1.1.1.1.9.31558363|4| +1.3.6.1.2.1.47.1.1.1.1.9.32635680|4| +1.3.6.1.2.1.47.1.1.1.1.9.33027158|4| +1.3.6.1.2.1.47.1.1.1.1.9.33028842|4| +1.3.6.1.2.1.47.1.1.1.1.9.33874532|4| +1.3.6.1.2.1.47.1.1.1.1.9.33876152|4| +1.3.6.1.2.1.47.1.1.1.1.9.34515143|4| +1.3.6.1.2.1.47.1.1.1.1.9.35064942|4| +1.3.6.1.2.1.47.1.1.1.1.9.35484503|4| +1.3.6.1.2.1.47.1.1.1.1.9.35565686|4|V0.0 +1.3.6.1.2.1.47.1.1.1.1.9.36113247|4| +1.3.6.1.2.1.47.1.1.1.1.9.36114835|4| +1.3.6.1.2.1.47.1.1.1.1.9.36118139|4| +1.3.6.1.2.1.47.1.1.1.1.9.37336673|4| +1.3.6.1.2.1.47.1.1.1.1.9.38645760|4|Version 3.4(20160919:102146) +1.3.6.1.2.1.47.1.1.1.1.9.38774543|4| +1.3.6.1.2.1.47.1.1.1.1.9.39009631|4| +1.3.6.1.2.1.47.1.1.1.1.9.39011219|4| +1.3.6.1.2.1.47.1.1.1.1.9.39161540|4| +1.3.6.1.2.1.47.1.1.1.1.9.39163160|4| +1.3.6.1.2.1.47.1.1.1.1.9.39508938|4| +1.3.6.1.2.1.47.1.1.1.1.9.40316076|4| +1.3.6.1.2.1.47.1.1.1.1.9.40317664|4| +1.3.6.1.2.1.47.1.1.1.1.9.40319284|4| +1.3.6.1.2.1.47.1.1.1.1.9.40390140|4| +1.3.6.1.2.1.47.1.1.1.1.9.40391728|4| +1.3.6.1.2.1.47.1.1.1.1.9.40393284|4| +1.3.6.1.2.1.47.1.1.1.1.9.40886175|4| +1.3.6.1.2.1.47.1.1.1.1.9.40889447|4| +1.3.6.1.2.1.47.1.1.1.1.9.40891067|4| +1.3.6.1.2.1.47.1.1.1.1.9.40910684|4| +1.3.6.1.2.1.47.1.1.1.1.9.40912272|4|V0.0 +1.3.6.1.2.1.47.1.1.1.1.9.40915576|4| +1.3.6.1.2.1.47.1.1.1.1.9.40983240|4| +1.3.6.1.2.1.47.1.1.1.1.9.41847727|4| +1.3.6.1.2.1.47.1.1.1.1.9.41889607|4| +1.3.6.1.2.1.47.1.1.1.1.9.41903305|4| +1.3.6.1.2.1.47.1.1.1.1.9.41983486|4| +1.3.6.1.2.1.47.1.1.1.1.9.41985074|4| +1.3.6.1.2.1.47.1.1.1.1.9.42108634|4| +1.3.6.1.2.1.47.1.1.1.1.9.42328478|4| +1.3.6.1.2.1.47.1.1.1.1.9.42471453|4| +1.3.6.1.2.1.47.1.1.1.1.9.43271261|4| +1.3.6.1.2.1.47.1.1.1.1.9.43665869|4| +1.3.6.1.2.1.47.1.1.1.1.9.44949055|4| +1.3.6.1.2.1.47.1.1.1.1.9.44982153|4| +1.3.6.1.2.1.47.1.1.1.1.9.44987045|4| +1.3.6.1.2.1.47.1.1.1.1.9.45182502|4| +1.3.6.1.2.1.47.1.1.1.1.9.45185678|4| +1.3.6.1.2.1.47.1.1.1.1.9.45187266|4| +1.3.6.1.2.1.47.1.1.1.1.9.45331139|4| +1.3.6.1.2.1.47.1.1.1.1.9.45332759|4| +1.3.6.1.2.1.47.1.1.1.1.9.45334443|4| +1.3.6.1.2.1.47.1.1.1.1.9.45692779|4| +1.3.6.1.2.1.47.1.1.1.1.9.45825250|4| +1.3.6.1.2.1.47.1.1.1.1.9.45832162|4| +1.3.6.1.2.1.47.1.1.1.1.9.46324915|4| +1.3.6.1.2.1.47.1.1.1.1.9.46457974|4| +1.3.6.1.2.1.47.1.1.1.1.9.46461150|4| +1.3.6.1.2.1.47.1.1.1.1.9.46462738|4| +1.3.6.1.2.1.47.1.1.1.1.9.47349219|4| +1.3.6.1.2.1.47.1.1.1.1.9.47925186|4| +1.3.6.1.2.1.47.1.1.1.1.9.48146598|4| +1.3.6.1.2.1.47.1.1.1.1.9.48148218|4| +1.3.6.1.2.1.47.1.1.1.1.9.48151362|4| +1.3.6.1.2.1.47.1.1.1.1.9.48336040|4| +1.3.6.1.2.1.47.1.1.1.1.9.49125802|4| +1.3.6.1.2.1.47.1.1.1.1.9.49413261|4| +1.3.6.1.2.1.47.1.1.1.1.9.49626948|4| +1.3.6.1.2.1.47.1.1.1.1.9.49803247|4| +1.3.6.1.2.1.47.1.1.1.1.9.49804835|4| +1.3.6.1.2.1.47.1.1.1.1.9.50514562|4| +1.3.6.1.2.1.47.1.1.1.1.9.50650557|4| +1.3.6.1.2.1.47.1.1.1.1.9.50652145|4| +1.3.6.1.2.1.47.1.1.1.1.9.50653701|4| +1.3.6.1.2.1.47.1.1.1.1.9.50864446|4| +1.3.6.1.2.1.47.1.1.1.1.9.52262180|4| +1.3.6.1.2.1.47.1.1.1.1.9.52690955|4| +1.3.6.1.2.1.47.1.1.1.1.9.52890924|4| +1.3.6.1.2.1.47.1.1.1.1.9.52892512|4| +1.3.6.1.2.1.47.1.1.1.1.9.52895688|4| +1.3.6.1.2.1.47.1.1.1.1.9.53442901|4| +1.3.6.1.2.1.47.1.1.1.1.9.53687180|4| +1.3.6.1.2.1.47.1.1.1.1.9.53899162|4| +1.3.6.1.2.1.47.1.1.1.1.9.55552156|4| +1.3.6.1.2.1.47.1.1.1.1.9.55787308|4| +1.3.6.1.2.1.47.1.1.1.1.9.55788896|4| +1.3.6.1.2.1.47.1.1.1.1.9.55939153|4| +1.3.6.1.2.1.47.1.1.1.1.9.56286551|4| +1.3.6.1.2.1.47.1.1.1.1.9.56880003|4| +1.3.6.1.2.1.47.1.1.1.1.9.57093689|4| +1.3.6.1.2.1.47.1.1.1.1.9.57095245|4| +1.3.6.1.2.1.47.1.1.1.1.9.57167689|4| +1.3.6.1.2.1.47.1.1.1.1.9.57169309|4| +1.3.6.1.2.1.47.1.1.1.1.9.57269142|4| +1.3.6.1.2.1.47.1.1.1.1.9.57663852|4| +1.3.6.1.2.1.47.1.1.1.1.9.57667060|4| +1.3.6.1.2.1.47.1.1.1.1.9.57668616|4| +1.3.6.1.2.1.47.1.1.1.1.9.57688361|4| +1.3.6.1.2.1.47.1.1.1.1.9.57689981|4| +1.3.6.1.2.1.47.1.1.1.1.9.57759233|4| +1.3.6.1.2.1.47.1.1.1.1.9.57760853|4| +1.3.6.1.2.1.47.1.1.1.1.9.57885340|4| +1.3.6.1.2.1.47.1.1.1.1.9.58757859|4| +1.3.6.1.2.1.47.1.1.1.1.9.58759479|4| +1.3.6.1.2.1.47.1.1.1.1.9.58761035|4| +1.3.6.1.2.1.47.1.1.1.1.9.58886311|4| +1.3.6.1.2.1.47.1.1.1.1.9.59102851|4| +1.3.6.1.2.1.47.1.1.1.1.9.59249130|4| +1.3.6.1.2.1.47.1.1.1.1.9.59316821|4| +1.3.6.1.2.1.47.1.1.1.1.9.59586871|4| +1.3.6.1.2.1.47.1.1.1.1.9.60048938|4| +1.3.6.1.2.1.47.1.1.1.1.9.60443482|4| +1.3.6.1.2.1.47.1.1.1.1.9.60798546|4| +1.3.6.1.2.1.47.1.1.1.1.9.61759766|4| +1.3.6.1.2.1.47.1.1.1.1.9.61764658|4| +1.3.6.1.2.1.47.1.1.1.1.9.61961671|4| +1.3.6.1.2.1.47.1.1.1.1.9.61963291|4| +1.3.6.1.2.1.47.1.1.1.1.9.62108752|4| +1.3.6.1.2.1.47.1.1.1.1.9.62110436|4| +1.3.6.1.2.1.47.1.1.1.1.9.62112056|4| +1.3.6.1.2.1.47.1.1.1.1.9.62482494|4|Version 3.4(20160331:133429) +1.3.6.1.2.1.47.1.1.1.1.9.62599655|4| +1.3.6.1.2.1.47.1.1.1.1.9.62601275|4| +1.3.6.1.2.1.47.1.1.1.1.9.63171350|4| +1.3.6.1.2.1.47.1.1.1.1.9.63237143|4| +1.3.6.1.2.1.47.1.1.1.1.9.63238827|4| +1.3.6.1.2.1.47.1.1.1.1.9.64125244|4| +1.3.6.1.2.1.47.1.1.1.1.9.64126832|4| +1.3.6.1.2.1.47.1.1.1.1.9.64527637|4| +1.3.6.1.2.1.47.1.1.1.1.9.64765592|4| +1.3.6.1.2.1.47.1.1.1.1.9.64922623|4| +1.3.6.1.2.1.47.1.1.1.1.9.64924211|4| +1.3.6.1.2.1.47.1.1.1.1.9.65113653|4| +1.3.6.1.2.1.47.1.1.1.1.9.66227682|4| +1.3.6.1.2.1.47.1.1.1.1.9.66237848|4| +1.3.6.1.2.1.47.1.1.1.1.9.66531208|4| +1.3.6.1.2.1.47.1.1.1.1.9.66582448|4| +1.3.6.1.2.1.47.1.1.1.1.10.172193|4| +1.3.6.1.2.1.47.1.1.1.1.10.319242|4| +1.3.6.1.2.1.47.1.1.1.1.10.320862|4| +1.3.6.1.2.1.47.1.1.1.1.10.322450|4| +1.3.6.1.2.1.47.1.1.1.1.10.1930929|4| +1.3.6.1.2.1.47.1.1.1.1.10.2237736|4| +1.3.6.1.2.1.47.1.1.1.1.10.2359704|4|6.6.3 +1.3.6.1.2.1.47.1.1.1.1.10.2559673|4| +1.3.6.1.2.1.47.1.1.1.1.10.2561229|4| +1.3.6.1.2.1.47.1.1.1.1.10.3355929|4| +1.3.6.1.2.1.47.1.1.1.1.10.5199496|4| +1.3.6.1.2.1.47.1.1.1.1.10.5225733|4|V0.0 +1.3.6.1.2.1.47.1.1.1.1.10.5456057|4| +1.3.6.1.2.1.47.1.1.1.1.10.5457613|4| +1.3.6.1.2.1.47.1.1.1.1.10.5460821|4| +1.3.6.1.2.1.47.1.1.1.1.10.5607998|4| +1.3.6.1.2.1.47.1.1.1.1.10.5955364|4| +1.3.6.1.2.1.47.1.1.1.1.10.5959917|4| +1.3.6.1.2.1.47.1.1.1.1.10.6762374|4| +1.3.6.1.2.1.47.1.1.1.1.10.6763994|4| +1.3.6.1.2.1.47.1.1.1.1.10.6836438|4| +1.3.6.1.2.1.47.1.1.1.1.10.6838122|4| +1.3.6.1.2.1.47.1.1.1.1.10.7335745|4| +1.3.6.1.2.1.47.1.1.1.1.10.7337365|4| +1.3.6.1.2.1.47.1.1.1.1.10.7357110|4|6.6.3 +1.3.6.1.2.1.47.1.1.1.1.10.7358666|4|6.6.3 +1.3.6.1.2.1.47.1.1.1.1.10.7429666|4| +1.3.6.1.2.1.47.1.1.1.1.10.8426608|4| +1.3.6.1.2.1.47.1.1.1.1.10.8428164|4| +1.3.6.1.2.1.47.1.1.1.1.10.8429784|4| +1.3.6.1.2.1.47.1.1.1.1.10.8555060|4| +1.3.6.1.2.1.47.1.1.1.1.10.8773284|4| +1.3.6.1.2.1.47.1.1.1.1.10.8916259|4| +1.3.6.1.2.1.47.1.1.1.1.10.9714479|4| +1.3.6.1.2.1.47.1.1.1.1.10.9716067|4| +1.3.6.1.2.1.47.1.1.1.1.10.10077780|4| +1.3.6.1.2.1.47.1.1.1.1.10.10090737|4| +1.3.6.1.2.1.47.1.1.1.1.10.10527011|4| +1.3.6.1.2.1.47.1.1.1.1.10.11426991|4| +1.3.6.1.2.1.47.1.1.1.1.10.11517556|4| +1.3.6.1.2.1.47.1.1.1.1.10.11630420|4| +1.3.6.1.2.1.47.1.1.1.1.10.11632104|4| +1.3.6.1.2.1.47.1.1.1.1.10.11779185|4| +1.3.6.1.2.1.47.1.1.1.1.10.11780741|4| +1.3.6.1.2.1.47.1.1.1.1.10.12269960|4|6.6.3 +1.3.6.1.2.1.47.1.1.1.1.10.12333373|4| +1.3.6.1.2.1.47.1.1.1.1.10.12510322|4| +1.3.6.1.2.1.47.1.1.1.1.10.12905956|4| +1.3.6.1.2.1.47.1.1.1.1.10.12907576|4| +1.3.6.1.2.1.47.1.1.1.1.10.13795549|4| +1.3.6.1.2.1.47.1.1.1.1.10.13805629|4| +1.3.6.1.2.1.47.1.1.1.1.10.14322921|4| +1.3.6.1.2.1.47.1.1.1.1.10.14585855|4| +1.3.6.1.2.1.47.1.1.1.1.10.14591308|4| +1.3.6.1.2.1.47.1.1.1.1.10.14592896|4| +1.3.6.1.2.1.47.1.1.1.1.10.14780750|4| +1.3.6.1.2.1.47.1.1.1.1.10.14782338|4| +1.3.6.1.2.1.47.1.1.1.1.10.15177601|4| +1.3.6.1.2.1.47.1.1.1.1.10.15394522|4| +1.3.6.1.2.1.47.1.1.1.1.10.15526104|4| +1.3.6.1.2.1.47.1.1.1.1.10.15858003|4| +1.3.6.1.2.1.47.1.1.1.1.10.16249545|4| +1.3.6.1.2.1.47.1.1.1.1.10.16251165|4| +1.3.6.1.2.1.47.1.1.1.1.10.16949774|4| +1.3.6.1.2.1.47.1.1.1.1.10.17096855|4| +1.3.6.1.2.1.47.1.1.1.1.10.17098539|4| +1.3.6.1.2.1.47.1.1.1.1.10.17452244|4| +1.3.6.1.2.1.47.1.1.1.1.10.17977066|4| +1.3.6.1.2.1.47.1.1.1.1.10.18708510|4| +1.3.6.1.2.1.47.1.1.1.1.10.18788073|4|V0.0 +1.3.6.1.2.1.47.1.1.1.1.10.19161232|4| +1.3.6.1.2.1.47.1.1.1.1.10.19337222|4| +1.3.6.1.2.1.47.1.1.1.1.10.19338842|4| +1.3.6.1.2.1.47.1.1.1.1.10.19441360|4| +1.3.6.1.2.1.47.1.1.1.1.10.19750579|4| +1.3.6.1.2.1.47.1.1.1.1.10.20133606|4| +1.3.6.1.2.1.47.1.1.1.1.10.21500831|4| +1.3.6.1.2.1.47.1.1.1.1.10.21657197|4|6.6.3 +1.3.6.1.2.1.47.1.1.1.1.10.22233606|4| +1.3.6.1.2.1.47.1.1.1.1.10.22235226|4| +1.3.6.1.2.1.47.1.1.1.1.10.22238498|4| +1.3.6.1.2.1.47.1.1.1.1.10.22383991|4| +1.3.6.1.2.1.47.1.1.1.1.10.22731389|4| +1.3.6.1.2.1.47.1.1.1.1.10.22732977|4| +1.3.6.1.2.1.47.1.1.1.1.10.23538399|4| +1.3.6.1.2.1.47.1.1.1.1.10.23539987|4| +1.3.6.1.2.1.47.1.1.1.1.10.23541671|4| +1.3.6.1.2.1.47.1.1.1.1.10.23612527|4| +1.3.6.1.2.1.47.1.1.1.1.10.23614115|4| +1.3.6.1.2.1.47.1.1.1.1.10.23615735|4| +1.3.6.1.2.1.47.1.1.1.1.10.24113454|4| +1.3.6.1.2.1.47.1.1.1.1.10.24115042|4| +1.3.6.1.2.1.47.1.1.1.1.10.24133071|4|6.6.3 +1.3.6.1.2.1.47.1.1.1.1.10.24134659|4|6.6.3 +1.3.6.1.2.1.47.1.1.1.1.10.24137963|4|6.6.3 +1.3.6.1.2.1.47.1.1.1.1.10.24205691|4| +1.3.6.1.2.1.47.1.1.1.1.10.24555730|4|6.6.3 +1.3.6.1.2.1.47.1.1.1.1.10.25205777|4| +1.3.6.1.2.1.47.1.1.1.1.10.25207461|4| +1.3.6.1.2.1.47.1.1.1.1.10.25332609|4| +1.3.6.1.2.1.47.1.1.1.1.10.25550897|4| +1.3.6.1.2.1.47.1.1.1.1.10.25693872|4| +1.3.6.1.2.1.47.1.1.1.1.10.26493680|4| +1.3.6.1.2.1.47.1.1.1.1.10.26947585|4| +1.3.6.1.2.1.47.1.1.1.1.10.27434349|4| +1.3.6.1.2.1.47.1.1.1.1.10.28091685|4| +1.3.6.1.2.1.47.1.1.1.1.10.28204604|4| +1.3.6.1.2.1.47.1.1.1.1.10.28404825|4| +1.3.6.1.2.1.47.1.1.1.1.10.28408097|4| +1.3.6.1.2.1.47.1.1.1.1.10.28409717|4| +1.3.6.1.2.1.47.1.1.1.1.10.28556766|4| +1.3.6.1.2.1.47.1.1.1.1.10.28558354|4| +1.3.6.1.2.1.47.1.1.1.1.10.28595820|4| +1.3.6.1.2.1.47.1.1.1.1.10.28712902|4| +1.3.6.1.2.1.47.1.1.1.1.10.29047573|4|6.6.3 +1.3.6.1.2.1.47.1.1.1.1.10.29680361|4| +1.3.6.1.2.1.47.1.1.1.1.10.29683569|4| +1.3.6.1.2.1.47.1.1.1.1.10.29685125|4| +1.3.6.1.2.1.47.1.1.1.1.10.30054631|4| +1.3.6.1.2.1.47.1.1.1.1.10.30573226|4| +1.3.6.1.2.1.47.1.1.1.1.10.30805863|4| +1.3.6.1.2.1.47.1.1.1.1.10.31368921|4| +1.3.6.1.2.1.47.1.1.1.1.10.31370605|4| +1.3.6.1.2.1.47.1.1.1.1.10.31373813|4| +1.3.6.1.2.1.47.1.1.1.1.10.31415605|4| +1.3.6.1.2.1.47.1.1.1.1.10.31558363|4| +1.3.6.1.2.1.47.1.1.1.1.10.32635680|4| +1.3.6.1.2.1.47.1.1.1.1.10.33027158|4| +1.3.6.1.2.1.47.1.1.1.1.10.33028842|4| +1.3.6.1.2.1.47.1.1.1.1.10.33874532|4| +1.3.6.1.2.1.47.1.1.1.1.10.33876152|4| +1.3.6.1.2.1.47.1.1.1.1.10.34515143|4| +1.3.6.1.2.1.47.1.1.1.1.10.35064942|4| +1.3.6.1.2.1.47.1.1.1.1.10.35484503|4| +1.3.6.1.2.1.47.1.1.1.1.10.35565686|4|V0.0 +1.3.6.1.2.1.47.1.1.1.1.10.36113247|4| +1.3.6.1.2.1.47.1.1.1.1.10.36114835|4| +1.3.6.1.2.1.47.1.1.1.1.10.36118139|4| +1.3.6.1.2.1.47.1.1.1.1.10.37336673|4| +1.3.6.1.2.1.47.1.1.1.1.10.38645760|4|6.6.3 +1.3.6.1.2.1.47.1.1.1.1.10.38774543|4| +1.3.6.1.2.1.47.1.1.1.1.10.39009631|4| +1.3.6.1.2.1.47.1.1.1.1.10.39011219|4| +1.3.6.1.2.1.47.1.1.1.1.10.39161540|4| +1.3.6.1.2.1.47.1.1.1.1.10.39163160|4| +1.3.6.1.2.1.47.1.1.1.1.10.39508938|4| +1.3.6.1.2.1.47.1.1.1.1.10.40316076|4| +1.3.6.1.2.1.47.1.1.1.1.10.40317664|4| +1.3.6.1.2.1.47.1.1.1.1.10.40319284|4| +1.3.6.1.2.1.47.1.1.1.1.10.40390140|4| +1.3.6.1.2.1.47.1.1.1.1.10.40391728|4| +1.3.6.1.2.1.47.1.1.1.1.10.40393284|4| +1.3.6.1.2.1.47.1.1.1.1.10.40886175|4| +1.3.6.1.2.1.47.1.1.1.1.10.40889447|4| +1.3.6.1.2.1.47.1.1.1.1.10.40891067|4| +1.3.6.1.2.1.47.1.1.1.1.10.40910684|4|6.6.3 +1.3.6.1.2.1.47.1.1.1.1.10.40912272|4|V0.0 +1.3.6.1.2.1.47.1.1.1.1.10.40915576|4|6.6.3 +1.3.6.1.2.1.47.1.1.1.1.10.40983240|4| +1.3.6.1.2.1.47.1.1.1.1.10.41847727|4| +1.3.6.1.2.1.47.1.1.1.1.10.41889607|4| +1.3.6.1.2.1.47.1.1.1.1.10.41903305|4| +1.3.6.1.2.1.47.1.1.1.1.10.41983486|4| +1.3.6.1.2.1.47.1.1.1.1.10.41985074|4| +1.3.6.1.2.1.47.1.1.1.1.10.42108634|4| +1.3.6.1.2.1.47.1.1.1.1.10.42328478|4| +1.3.6.1.2.1.47.1.1.1.1.10.42471453|4| +1.3.6.1.2.1.47.1.1.1.1.10.43271261|4| +1.3.6.1.2.1.47.1.1.1.1.10.43665869|4| +1.3.6.1.2.1.47.1.1.1.1.10.44949055|4| +1.3.6.1.2.1.47.1.1.1.1.10.44982153|4| +1.3.6.1.2.1.47.1.1.1.1.10.44987045|4| +1.3.6.1.2.1.47.1.1.1.1.10.45182502|4| +1.3.6.1.2.1.47.1.1.1.1.10.45185678|4| +1.3.6.1.2.1.47.1.1.1.1.10.45187266|4| +1.3.6.1.2.1.47.1.1.1.1.10.45331139|4| +1.3.6.1.2.1.47.1.1.1.1.10.45332759|4| +1.3.6.1.2.1.47.1.1.1.1.10.45334443|4| +1.3.6.1.2.1.47.1.1.1.1.10.45692779|4| +1.3.6.1.2.1.47.1.1.1.1.10.45825250|4|6.6.3 +1.3.6.1.2.1.47.1.1.1.1.10.45832162|4| +1.3.6.1.2.1.47.1.1.1.1.10.46324915|4| +1.3.6.1.2.1.47.1.1.1.1.10.46457974|4| +1.3.6.1.2.1.47.1.1.1.1.10.46461150|4| +1.3.6.1.2.1.47.1.1.1.1.10.46462738|4| +1.3.6.1.2.1.47.1.1.1.1.10.47349219|4| +1.3.6.1.2.1.47.1.1.1.1.10.47925186|4| +1.3.6.1.2.1.47.1.1.1.1.10.48146598|4| +1.3.6.1.2.1.47.1.1.1.1.10.48148218|4| +1.3.6.1.2.1.47.1.1.1.1.10.48151362|4| +1.3.6.1.2.1.47.1.1.1.1.10.48336040|4| +1.3.6.1.2.1.47.1.1.1.1.10.49125802|4| +1.3.6.1.2.1.47.1.1.1.1.10.49413261|4| +1.3.6.1.2.1.47.1.1.1.1.10.49626948|4| +1.3.6.1.2.1.47.1.1.1.1.10.49803247|4| +1.3.6.1.2.1.47.1.1.1.1.10.49804835|4| +1.3.6.1.2.1.47.1.1.1.1.10.50514562|4| +1.3.6.1.2.1.47.1.1.1.1.10.50650557|4| +1.3.6.1.2.1.47.1.1.1.1.10.50652145|4| +1.3.6.1.2.1.47.1.1.1.1.10.50653701|4| +1.3.6.1.2.1.47.1.1.1.1.10.50864446|4| +1.3.6.1.2.1.47.1.1.1.1.10.52262180|4| +1.3.6.1.2.1.47.1.1.1.1.10.52690955|4| +1.3.6.1.2.1.47.1.1.1.1.10.52890924|4| +1.3.6.1.2.1.47.1.1.1.1.10.52892512|4| +1.3.6.1.2.1.47.1.1.1.1.10.52895688|4| +1.3.6.1.2.1.47.1.1.1.1.10.53442901|4| +1.3.6.1.2.1.47.1.1.1.1.10.53687180|4| +1.3.6.1.2.1.47.1.1.1.1.10.53899162|4| +1.3.6.1.2.1.47.1.1.1.1.10.55552156|4| +1.3.6.1.2.1.47.1.1.1.1.10.55787308|4| +1.3.6.1.2.1.47.1.1.1.1.10.55788896|4| +1.3.6.1.2.1.47.1.1.1.1.10.55939153|4| +1.3.6.1.2.1.47.1.1.1.1.10.56286551|4| +1.3.6.1.2.1.47.1.1.1.1.10.56880003|4| +1.3.6.1.2.1.47.1.1.1.1.10.57093689|4| +1.3.6.1.2.1.47.1.1.1.1.10.57095245|4| +1.3.6.1.2.1.47.1.1.1.1.10.57167689|4| +1.3.6.1.2.1.47.1.1.1.1.10.57169309|4| +1.3.6.1.2.1.47.1.1.1.1.10.57269142|4| +1.3.6.1.2.1.47.1.1.1.1.10.57663852|4| +1.3.6.1.2.1.47.1.1.1.1.10.57667060|4| +1.3.6.1.2.1.47.1.1.1.1.10.57668616|4| +1.3.6.1.2.1.47.1.1.1.1.10.57688361|4|6.6.3 +1.3.6.1.2.1.47.1.1.1.1.10.57689981|4|6.6.3 +1.3.6.1.2.1.47.1.1.1.1.10.57759233|4| +1.3.6.1.2.1.47.1.1.1.1.10.57760853|4| +1.3.6.1.2.1.47.1.1.1.1.10.57885340|4| +1.3.6.1.2.1.47.1.1.1.1.10.58757859|4| +1.3.6.1.2.1.47.1.1.1.1.10.58759479|4| +1.3.6.1.2.1.47.1.1.1.1.10.58761035|4| +1.3.6.1.2.1.47.1.1.1.1.10.58886311|4| +1.3.6.1.2.1.47.1.1.1.1.10.59102851|4| +1.3.6.1.2.1.47.1.1.1.1.10.59249130|4| +1.3.6.1.2.1.47.1.1.1.1.10.59316821|4|6.6.3 +1.3.6.1.2.1.47.1.1.1.1.10.59586871|4| +1.3.6.1.2.1.47.1.1.1.1.10.60048938|4| +1.3.6.1.2.1.47.1.1.1.1.10.60443482|4| +1.3.6.1.2.1.47.1.1.1.1.10.60798546|4| +1.3.6.1.2.1.47.1.1.1.1.10.61759766|4| +1.3.6.1.2.1.47.1.1.1.1.10.61764658|4| +1.3.6.1.2.1.47.1.1.1.1.10.61961671|4| +1.3.6.1.2.1.47.1.1.1.1.10.61963291|4| +1.3.6.1.2.1.47.1.1.1.1.10.62108752|4| +1.3.6.1.2.1.47.1.1.1.1.10.62110436|4| +1.3.6.1.2.1.47.1.1.1.1.10.62112056|4| +1.3.6.1.2.1.47.1.1.1.1.10.62482494|4|6.6.3 +1.3.6.1.2.1.47.1.1.1.1.10.62599655|4|6.6.3 +1.3.6.1.2.1.47.1.1.1.1.10.62601275|4|6.6.3 +1.3.6.1.2.1.47.1.1.1.1.10.63171350|4| +1.3.6.1.2.1.47.1.1.1.1.10.63237143|4| +1.3.6.1.2.1.47.1.1.1.1.10.63238827|4| +1.3.6.1.2.1.47.1.1.1.1.10.64125244|4| +1.3.6.1.2.1.47.1.1.1.1.10.64126832|4| +1.3.6.1.2.1.47.1.1.1.1.10.64527637|4| +1.3.6.1.2.1.47.1.1.1.1.10.64765592|4| +1.3.6.1.2.1.47.1.1.1.1.10.64922623|4| +1.3.6.1.2.1.47.1.1.1.1.10.64924211|4| +1.3.6.1.2.1.47.1.1.1.1.10.65113653|4| +1.3.6.1.2.1.47.1.1.1.1.10.66227682|4| +1.3.6.1.2.1.47.1.1.1.1.10.66237848|4| +1.3.6.1.2.1.47.1.1.1.1.10.66531208|4|6.6.3 +1.3.6.1.2.1.47.1.1.1.1.10.66582448|4| +1.3.6.1.2.1.47.1.1.1.1.11.172193|4| +1.3.6.1.2.1.47.1.1.1.1.11.319242|4| +1.3.6.1.2.1.47.1.1.1.1.11.320862|4| +1.3.6.1.2.1.47.1.1.1.1.11.322450|4| +1.3.6.1.2.1.47.1.1.1.1.11.1930929|4| +1.3.6.1.2.1.47.1.1.1.1.11.2237736|4| +1.3.6.1.2.1.47.1.1.1.1.11.2359704|4| +1.3.6.1.2.1.47.1.1.1.1.11.2559673|4| +1.3.6.1.2.1.47.1.1.1.1.11.2561229|4| +1.3.6.1.2.1.47.1.1.1.1.11.3355929|4| +1.3.6.1.2.1.47.1.1.1.1.11.5199496|4| +1.3.6.1.2.1.47.1.1.1.1.11.5225733|4|FOC1938NCN9 +1.3.6.1.2.1.47.1.1.1.1.11.5456057|4| +1.3.6.1.2.1.47.1.1.1.1.11.5457613|4| +1.3.6.1.2.1.47.1.1.1.1.11.5460821|4| +1.3.6.1.2.1.47.1.1.1.1.11.5607998|4| +1.3.6.1.2.1.47.1.1.1.1.11.5955364|4| +1.3.6.1.2.1.47.1.1.1.1.11.5959917|4|N/A +1.3.6.1.2.1.47.1.1.1.1.11.6762374|4| +1.3.6.1.2.1.47.1.1.1.1.11.6763994|4| +1.3.6.1.2.1.47.1.1.1.1.11.6836438|4| +1.3.6.1.2.1.47.1.1.1.1.11.6838122|4| +1.3.6.1.2.1.47.1.1.1.1.11.7335745|4| +1.3.6.1.2.1.47.1.1.1.1.11.7337365|4| +1.3.6.1.2.1.47.1.1.1.1.11.7357110|4| +1.3.6.1.2.1.47.1.1.1.1.11.7358666|4| +1.3.6.1.2.1.47.1.1.1.1.11.7429666|4| +1.3.6.1.2.1.47.1.1.1.1.11.8426608|4| +1.3.6.1.2.1.47.1.1.1.1.11.8428164|4| +1.3.6.1.2.1.47.1.1.1.1.11.8429784|4| +1.3.6.1.2.1.47.1.1.1.1.11.8555060|4| +1.3.6.1.2.1.47.1.1.1.1.11.8773284|4| +1.3.6.1.2.1.47.1.1.1.1.11.8916259|4| +1.3.6.1.2.1.47.1.1.1.1.11.9714479|4| +1.3.6.1.2.1.47.1.1.1.1.11.9716067|4| +1.3.6.1.2.1.47.1.1.1.1.11.10077780|4| +1.3.6.1.2.1.47.1.1.1.1.11.10090737|4| +1.3.6.1.2.1.47.1.1.1.1.11.10527011|4| +1.3.6.1.2.1.47.1.1.1.1.11.11426991|4| +1.3.6.1.2.1.47.1.1.1.1.11.11517556|4| +1.3.6.1.2.1.47.1.1.1.1.11.11630420|4| +1.3.6.1.2.1.47.1.1.1.1.11.11632104|4| +1.3.6.1.2.1.47.1.1.1.1.11.11779185|4| +1.3.6.1.2.1.47.1.1.1.1.11.11780741|4| +1.3.6.1.2.1.47.1.1.1.1.11.12269960|4| +1.3.6.1.2.1.47.1.1.1.1.11.12333373|4| +1.3.6.1.2.1.47.1.1.1.1.11.12510322|4| +1.3.6.1.2.1.47.1.1.1.1.11.12905956|4| +1.3.6.1.2.1.47.1.1.1.1.11.12907576|4| +1.3.6.1.2.1.47.1.1.1.1.11.13795549|4| +1.3.6.1.2.1.47.1.1.1.1.11.13805629|4| +1.3.6.1.2.1.47.1.1.1.1.11.14322921|4| +1.3.6.1.2.1.47.1.1.1.1.11.14585855|4|FOC1702N57M +1.3.6.1.2.1.47.1.1.1.1.11.14591308|4| +1.3.6.1.2.1.47.1.1.1.1.11.14592896|4| +1.3.6.1.2.1.47.1.1.1.1.11.14780750|4| +1.3.6.1.2.1.47.1.1.1.1.11.14782338|4| +1.3.6.1.2.1.47.1.1.1.1.11.15177601|4| +1.3.6.1.2.1.47.1.1.1.1.11.15394522|4| +1.3.6.1.2.1.47.1.1.1.1.11.15526104|4|T1510200002 +1.3.6.1.2.1.47.1.1.1.1.11.15858003|4| +1.3.6.1.2.1.47.1.1.1.1.11.16249545|4| +1.3.6.1.2.1.47.1.1.1.1.11.16251165|4| +1.3.6.1.2.1.47.1.1.1.1.11.16949774|4| +1.3.6.1.2.1.47.1.1.1.1.11.17096855|4| +1.3.6.1.2.1.47.1.1.1.1.11.17098539|4| +1.3.6.1.2.1.47.1.1.1.1.11.17452244|4| +1.3.6.1.2.1.47.1.1.1.1.11.17977066|4| +1.3.6.1.2.1.47.1.1.1.1.11.18708510|4| +1.3.6.1.2.1.47.1.1.1.1.11.18788073|4| +1.3.6.1.2.1.47.1.1.1.1.11.19161232|4| +1.3.6.1.2.1.47.1.1.1.1.11.19337222|4| +1.3.6.1.2.1.47.1.1.1.1.11.19338842|4| +1.3.6.1.2.1.47.1.1.1.1.11.19441360|4| +1.3.6.1.2.1.47.1.1.1.1.11.19750579|4| +1.3.6.1.2.1.47.1.1.1.1.11.20133606|4| +1.3.6.1.2.1.47.1.1.1.1.11.21500831|4|N/A +1.3.6.1.2.1.47.1.1.1.1.11.21657197|4|ART1932X10W +1.3.6.1.2.1.47.1.1.1.1.11.22233606|4| +1.3.6.1.2.1.47.1.1.1.1.11.22235226|4| +1.3.6.1.2.1.47.1.1.1.1.11.22238498|4| +1.3.6.1.2.1.47.1.1.1.1.11.22383991|4| +1.3.6.1.2.1.47.1.1.1.1.11.22731389|4| +1.3.6.1.2.1.47.1.1.1.1.11.22732977|4| +1.3.6.1.2.1.47.1.1.1.1.11.23538399|4| +1.3.6.1.2.1.47.1.1.1.1.11.23539987|4| +1.3.6.1.2.1.47.1.1.1.1.11.23541671|4| +1.3.6.1.2.1.47.1.1.1.1.11.23612527|4| +1.3.6.1.2.1.47.1.1.1.1.11.23614115|4| +1.3.6.1.2.1.47.1.1.1.1.11.23615735|4| +1.3.6.1.2.1.47.1.1.1.1.11.24113454|4| +1.3.6.1.2.1.47.1.1.1.1.11.24115042|4| +1.3.6.1.2.1.47.1.1.1.1.11.24133071|4| +1.3.6.1.2.1.47.1.1.1.1.11.24134659|4| +1.3.6.1.2.1.47.1.1.1.1.11.24137963|4| +1.3.6.1.2.1.47.1.1.1.1.11.24205691|4| +1.3.6.1.2.1.47.1.1.1.1.11.24555730|4|FOC1939NDNZ +1.3.6.1.2.1.47.1.1.1.1.11.25205777|4| +1.3.6.1.2.1.47.1.1.1.1.11.25207461|4| +1.3.6.1.2.1.47.1.1.1.1.11.25332609|4| +1.3.6.1.2.1.47.1.1.1.1.11.25550897|4| +1.3.6.1.2.1.47.1.1.1.1.11.25693872|4| +1.3.6.1.2.1.47.1.1.1.1.11.26493680|4| +1.3.6.1.2.1.47.1.1.1.1.11.26947585|4| +1.3.6.1.2.1.47.1.1.1.1.11.27434349|4| +1.3.6.1.2.1.47.1.1.1.1.11.28091685|4| +1.3.6.1.2.1.47.1.1.1.1.11.28204604|4| +1.3.6.1.2.1.47.1.1.1.1.11.28404825|4| +1.3.6.1.2.1.47.1.1.1.1.11.28408097|4| +1.3.6.1.2.1.47.1.1.1.1.11.28409717|4| +1.3.6.1.2.1.47.1.1.1.1.11.28556766|4| +1.3.6.1.2.1.47.1.1.1.1.11.28558354|4| +1.3.6.1.2.1.47.1.1.1.1.11.28595820|4| +1.3.6.1.2.1.47.1.1.1.1.11.28712902|4| +1.3.6.1.2.1.47.1.1.1.1.11.29047573|4| +1.3.6.1.2.1.47.1.1.1.1.11.29680361|4| +1.3.6.1.2.1.47.1.1.1.1.11.29683569|4| +1.3.6.1.2.1.47.1.1.1.1.11.29685125|4| +1.3.6.1.2.1.47.1.1.1.1.11.30054631|4|S1601213098 +1.3.6.1.2.1.47.1.1.1.1.11.30573226|4| +1.3.6.1.2.1.47.1.1.1.1.11.30805863|4| +1.3.6.1.2.1.47.1.1.1.1.11.31368921|4| +1.3.6.1.2.1.47.1.1.1.1.11.31370605|4| +1.3.6.1.2.1.47.1.1.1.1.11.31373813|4| +1.3.6.1.2.1.47.1.1.1.1.11.31415605|4|S1709020011 +1.3.6.1.2.1.47.1.1.1.1.11.31558363|4| +1.3.6.1.2.1.47.1.1.1.1.11.32635680|4| +1.3.6.1.2.1.47.1.1.1.1.11.33027158|4| +1.3.6.1.2.1.47.1.1.1.1.11.33028842|4| +1.3.6.1.2.1.47.1.1.1.1.11.33874532|4| +1.3.6.1.2.1.47.1.1.1.1.11.33876152|4| +1.3.6.1.2.1.47.1.1.1.1.11.34515143|4| +1.3.6.1.2.1.47.1.1.1.1.11.35064942|4| +1.3.6.1.2.1.47.1.1.1.1.11.35484503|4| +1.3.6.1.2.1.47.1.1.1.1.11.35565686|4| +1.3.6.1.2.1.47.1.1.1.1.11.36113247|4| +1.3.6.1.2.1.47.1.1.1.1.11.36114835|4| +1.3.6.1.2.1.47.1.1.1.1.11.36118139|4| +1.3.6.1.2.1.47.1.1.1.1.11.37336673|4|S1702060052 +1.3.6.1.2.1.47.1.1.1.1.11.38645760|4|FOC1938NCF9 +1.3.6.1.2.1.47.1.1.1.1.11.38774543|4|N/A +1.3.6.1.2.1.47.1.1.1.1.11.39009631|4| +1.3.6.1.2.1.47.1.1.1.1.11.39011219|4| +1.3.6.1.2.1.47.1.1.1.1.11.39161540|4| +1.3.6.1.2.1.47.1.1.1.1.11.39163160|4| +1.3.6.1.2.1.47.1.1.1.1.11.39508938|4| +1.3.6.1.2.1.47.1.1.1.1.11.40316076|4| +1.3.6.1.2.1.47.1.1.1.1.11.40317664|4| +1.3.6.1.2.1.47.1.1.1.1.11.40319284|4| +1.3.6.1.2.1.47.1.1.1.1.11.40390140|4| +1.3.6.1.2.1.47.1.1.1.1.11.40391728|4| +1.3.6.1.2.1.47.1.1.1.1.11.40393284|4| +1.3.6.1.2.1.47.1.1.1.1.11.40886175|4| +1.3.6.1.2.1.47.1.1.1.1.11.40889447|4| +1.3.6.1.2.1.47.1.1.1.1.11.40891067|4| +1.3.6.1.2.1.47.1.1.1.1.11.40910684|4| +1.3.6.1.2.1.47.1.1.1.1.11.40912272|4| +1.3.6.1.2.1.47.1.1.1.1.11.40915576|4| +1.3.6.1.2.1.47.1.1.1.1.11.40983240|4| +1.3.6.1.2.1.47.1.1.1.1.11.41847727|4| +1.3.6.1.2.1.47.1.1.1.1.11.41889607|4| +1.3.6.1.2.1.47.1.1.1.1.11.41903305|4| +1.3.6.1.2.1.47.1.1.1.1.11.41983486|4| +1.3.6.1.2.1.47.1.1.1.1.11.41985074|4| +1.3.6.1.2.1.47.1.1.1.1.11.42108634|4| +1.3.6.1.2.1.47.1.1.1.1.11.42328478|4| +1.3.6.1.2.1.47.1.1.1.1.11.42471453|4| +1.3.6.1.2.1.47.1.1.1.1.11.43271261|4| +1.3.6.1.2.1.47.1.1.1.1.11.43665869|4| +1.3.6.1.2.1.47.1.1.1.1.11.44949055|4| +1.3.6.1.2.1.47.1.1.1.1.11.44982153|4| +1.3.6.1.2.1.47.1.1.1.1.11.44987045|4| +1.3.6.1.2.1.47.1.1.1.1.11.45182502|4| +1.3.6.1.2.1.47.1.1.1.1.11.45185678|4| +1.3.6.1.2.1.47.1.1.1.1.11.45187266|4| +1.3.6.1.2.1.47.1.1.1.1.11.45331139|4| +1.3.6.1.2.1.47.1.1.1.1.11.45332759|4| +1.3.6.1.2.1.47.1.1.1.1.11.45334443|4| +1.3.6.1.2.1.47.1.1.1.1.11.45692779|4| +1.3.6.1.2.1.47.1.1.1.1.11.45825250|4| +1.3.6.1.2.1.47.1.1.1.1.11.45832162|4| +1.3.6.1.2.1.47.1.1.1.1.11.46324915|4| +1.3.6.1.2.1.47.1.1.1.1.11.46457974|4| +1.3.6.1.2.1.47.1.1.1.1.11.46461150|4| +1.3.6.1.2.1.47.1.1.1.1.11.46462738|4| +1.3.6.1.2.1.47.1.1.1.1.11.47349219|4| +1.3.6.1.2.1.47.1.1.1.1.11.47925186|4|N/A +1.3.6.1.2.1.47.1.1.1.1.11.48146598|4| +1.3.6.1.2.1.47.1.1.1.1.11.48148218|4| +1.3.6.1.2.1.47.1.1.1.1.11.48151362|4| +1.3.6.1.2.1.47.1.1.1.1.11.48336040|4| +1.3.6.1.2.1.47.1.1.1.1.11.49125802|4|FOC2027NBD2 +1.3.6.1.2.1.47.1.1.1.1.11.49413261|4| +1.3.6.1.2.1.47.1.1.1.1.11.49626948|4|N/A +1.3.6.1.2.1.47.1.1.1.1.11.49803247|4| +1.3.6.1.2.1.47.1.1.1.1.11.49804835|4| +1.3.6.1.2.1.47.1.1.1.1.11.50514562|4| +1.3.6.1.2.1.47.1.1.1.1.11.50650557|4| +1.3.6.1.2.1.47.1.1.1.1.11.50652145|4| +1.3.6.1.2.1.47.1.1.1.1.11.50653701|4| +1.3.6.1.2.1.47.1.1.1.1.11.50864446|4| +1.3.6.1.2.1.47.1.1.1.1.11.52262180|4| +1.3.6.1.2.1.47.1.1.1.1.11.52690955|4| +1.3.6.1.2.1.47.1.1.1.1.11.52890924|4| +1.3.6.1.2.1.47.1.1.1.1.11.52892512|4| +1.3.6.1.2.1.47.1.1.1.1.11.52895688|4| +1.3.6.1.2.1.47.1.1.1.1.11.53442901|4| +1.3.6.1.2.1.47.1.1.1.1.11.53687180|4| +1.3.6.1.2.1.47.1.1.1.1.11.53899162|4|N/A +1.3.6.1.2.1.47.1.1.1.1.11.55552156|4|N/A +1.3.6.1.2.1.47.1.1.1.1.11.55787308|4| +1.3.6.1.2.1.47.1.1.1.1.11.55788896|4| +1.3.6.1.2.1.47.1.1.1.1.11.55939153|4| +1.3.6.1.2.1.47.1.1.1.1.11.56286551|4| +1.3.6.1.2.1.47.1.1.1.1.11.56880003|4| +1.3.6.1.2.1.47.1.1.1.1.11.57093689|4| +1.3.6.1.2.1.47.1.1.1.1.11.57095245|4| +1.3.6.1.2.1.47.1.1.1.1.11.57167689|4| +1.3.6.1.2.1.47.1.1.1.1.11.57169309|4| +1.3.6.1.2.1.47.1.1.1.1.11.57269142|4| +1.3.6.1.2.1.47.1.1.1.1.11.57663852|4| +1.3.6.1.2.1.47.1.1.1.1.11.57667060|4| +1.3.6.1.2.1.47.1.1.1.1.11.57668616|4| +1.3.6.1.2.1.47.1.1.1.1.11.57688361|4| +1.3.6.1.2.1.47.1.1.1.1.11.57689981|4| +1.3.6.1.2.1.47.1.1.1.1.11.57759233|4| +1.3.6.1.2.1.47.1.1.1.1.11.57760853|4| +1.3.6.1.2.1.47.1.1.1.1.11.57885340|4| +1.3.6.1.2.1.47.1.1.1.1.11.58757859|4| +1.3.6.1.2.1.47.1.1.1.1.11.58759479|4| +1.3.6.1.2.1.47.1.1.1.1.11.58761035|4| +1.3.6.1.2.1.47.1.1.1.1.11.58886311|4| +1.3.6.1.2.1.47.1.1.1.1.11.59102851|4| +1.3.6.1.2.1.47.1.1.1.1.11.59249130|4| +1.3.6.1.2.1.47.1.1.1.1.11.59316821|4|FOC1937NJF8 +1.3.6.1.2.1.47.1.1.1.1.11.59586871|4|N/A +1.3.6.1.2.1.47.1.1.1.1.11.60048938|4| +1.3.6.1.2.1.47.1.1.1.1.11.60443482|4| +1.3.6.1.2.1.47.1.1.1.1.11.60798546|4| +1.3.6.1.2.1.47.1.1.1.1.11.61759766|4| +1.3.6.1.2.1.47.1.1.1.1.11.61764658|4| +1.3.6.1.2.1.47.1.1.1.1.11.61961671|4| +1.3.6.1.2.1.47.1.1.1.1.11.61963291|4| +1.3.6.1.2.1.47.1.1.1.1.11.62108752|4| +1.3.6.1.2.1.47.1.1.1.1.11.62110436|4| +1.3.6.1.2.1.47.1.1.1.1.11.62112056|4| +1.3.6.1.2.1.47.1.1.1.1.11.62482494|4|FOC1938NCN9 +1.3.6.1.2.1.47.1.1.1.1.11.62599655|4| +1.3.6.1.2.1.47.1.1.1.1.11.62601275|4| +1.3.6.1.2.1.47.1.1.1.1.11.63171350|4| +1.3.6.1.2.1.47.1.1.1.1.11.63237143|4| +1.3.6.1.2.1.47.1.1.1.1.11.63238827|4| +1.3.6.1.2.1.47.1.1.1.1.11.64125244|4| +1.3.6.1.2.1.47.1.1.1.1.11.64126832|4| +1.3.6.1.2.1.47.1.1.1.1.11.64527637|4| +1.3.6.1.2.1.47.1.1.1.1.11.64765592|4| +1.3.6.1.2.1.47.1.1.1.1.11.64922623|4| +1.3.6.1.2.1.47.1.1.1.1.11.64924211|4| +1.3.6.1.2.1.47.1.1.1.1.11.65113653|4| +1.3.6.1.2.1.47.1.1.1.1.11.66227682|4|S1809290080 +1.3.6.1.2.1.47.1.1.1.1.11.66237848|4| +1.3.6.1.2.1.47.1.1.1.1.11.66531208|4|ART1932X10Y +1.3.6.1.2.1.47.1.1.1.1.11.66582448|4| +1.3.6.1.2.1.47.1.1.1.1.12.172193|4| +1.3.6.1.2.1.47.1.1.1.1.12.319242|4| +1.3.6.1.2.1.47.1.1.1.1.12.320862|4| +1.3.6.1.2.1.47.1.1.1.1.12.322450|4| +1.3.6.1.2.1.47.1.1.1.1.12.1930929|4| +1.3.6.1.2.1.47.1.1.1.1.12.2237736|4| +1.3.6.1.2.1.47.1.1.1.1.12.2359704|4| +1.3.6.1.2.1.47.1.1.1.1.12.2559673|4| +1.3.6.1.2.1.47.1.1.1.1.12.2561229|4| +1.3.6.1.2.1.47.1.1.1.1.12.3355929|4| +1.3.6.1.2.1.47.1.1.1.1.12.5199496|4| +1.3.6.1.2.1.47.1.1.1.1.12.5225733|4| +1.3.6.1.2.1.47.1.1.1.1.12.5456057|4| +1.3.6.1.2.1.47.1.1.1.1.12.5457613|4| +1.3.6.1.2.1.47.1.1.1.1.12.5460821|4| +1.3.6.1.2.1.47.1.1.1.1.12.5607998|4| +1.3.6.1.2.1.47.1.1.1.1.12.5955364|4| +1.3.6.1.2.1.47.1.1.1.1.12.5959917|4| +1.3.6.1.2.1.47.1.1.1.1.12.6762374|4| +1.3.6.1.2.1.47.1.1.1.1.12.6763994|4| +1.3.6.1.2.1.47.1.1.1.1.12.6836438|4| +1.3.6.1.2.1.47.1.1.1.1.12.6838122|4| +1.3.6.1.2.1.47.1.1.1.1.12.7335745|4| +1.3.6.1.2.1.47.1.1.1.1.12.7337365|4| +1.3.6.1.2.1.47.1.1.1.1.12.7357110|4| +1.3.6.1.2.1.47.1.1.1.1.12.7358666|4| +1.3.6.1.2.1.47.1.1.1.1.12.7429666|4| +1.3.6.1.2.1.47.1.1.1.1.12.8426608|4| +1.3.6.1.2.1.47.1.1.1.1.12.8428164|4| +1.3.6.1.2.1.47.1.1.1.1.12.8429784|4| +1.3.6.1.2.1.47.1.1.1.1.12.8555060|4| +1.3.6.1.2.1.47.1.1.1.1.12.8773284|4| +1.3.6.1.2.1.47.1.1.1.1.12.8916259|4| +1.3.6.1.2.1.47.1.1.1.1.12.9714479|4| +1.3.6.1.2.1.47.1.1.1.1.12.9716067|4| +1.3.6.1.2.1.47.1.1.1.1.12.10077780|4| +1.3.6.1.2.1.47.1.1.1.1.12.10090737|4| +1.3.6.1.2.1.47.1.1.1.1.12.10527011|4| +1.3.6.1.2.1.47.1.1.1.1.12.11426991|4| +1.3.6.1.2.1.47.1.1.1.1.12.11517556|4| +1.3.6.1.2.1.47.1.1.1.1.12.11630420|4| +1.3.6.1.2.1.47.1.1.1.1.12.11632104|4| +1.3.6.1.2.1.47.1.1.1.1.12.11779185|4| +1.3.6.1.2.1.47.1.1.1.1.12.11780741|4| +1.3.6.1.2.1.47.1.1.1.1.12.12269960|4| +1.3.6.1.2.1.47.1.1.1.1.12.12333373|4| +1.3.6.1.2.1.47.1.1.1.1.12.12510322|4| +1.3.6.1.2.1.47.1.1.1.1.12.12905956|4| +1.3.6.1.2.1.47.1.1.1.1.12.12907576|4| +1.3.6.1.2.1.47.1.1.1.1.12.13795549|4| +1.3.6.1.2.1.47.1.1.1.1.12.13805629|4| +1.3.6.1.2.1.47.1.1.1.1.12.14322921|4| +1.3.6.1.2.1.47.1.1.1.1.12.14585855|4|Cisco Systems Inc. +1.3.6.1.2.1.47.1.1.1.1.12.14591308|4| +1.3.6.1.2.1.47.1.1.1.1.12.14592896|4| +1.3.6.1.2.1.47.1.1.1.1.12.14780750|4| +1.3.6.1.2.1.47.1.1.1.1.12.14782338|4| +1.3.6.1.2.1.47.1.1.1.1.12.15177601|4| +1.3.6.1.2.1.47.1.1.1.1.12.15394522|4| +1.3.6.1.2.1.47.1.1.1.1.12.15526104|4| +1.3.6.1.2.1.47.1.1.1.1.12.15858003|4| +1.3.6.1.2.1.47.1.1.1.1.12.16249545|4| +1.3.6.1.2.1.47.1.1.1.1.12.16251165|4| +1.3.6.1.2.1.47.1.1.1.1.12.16949774|4| +1.3.6.1.2.1.47.1.1.1.1.12.17096855|4| +1.3.6.1.2.1.47.1.1.1.1.12.17098539|4| +1.3.6.1.2.1.47.1.1.1.1.12.17452244|4| +1.3.6.1.2.1.47.1.1.1.1.12.17977066|4| +1.3.6.1.2.1.47.1.1.1.1.12.18708510|4| +1.3.6.1.2.1.47.1.1.1.1.12.18788073|4| +1.3.6.1.2.1.47.1.1.1.1.12.19161232|4| +1.3.6.1.2.1.47.1.1.1.1.12.19337222|4| +1.3.6.1.2.1.47.1.1.1.1.12.19338842|4| +1.3.6.1.2.1.47.1.1.1.1.12.19441360|4| +1.3.6.1.2.1.47.1.1.1.1.12.19750579|4| +1.3.6.1.2.1.47.1.1.1.1.12.20133606|4| +1.3.6.1.2.1.47.1.1.1.1.12.21500831|4| +1.3.6.1.2.1.47.1.1.1.1.12.21657197|4|Cisco Systems Inc. +1.3.6.1.2.1.47.1.1.1.1.12.22233606|4| +1.3.6.1.2.1.47.1.1.1.1.12.22235226|4| +1.3.6.1.2.1.47.1.1.1.1.12.22238498|4| +1.3.6.1.2.1.47.1.1.1.1.12.22383991|4| +1.3.6.1.2.1.47.1.1.1.1.12.22731389|4| +1.3.6.1.2.1.47.1.1.1.1.12.22732977|4| +1.3.6.1.2.1.47.1.1.1.1.12.23538399|4| +1.3.6.1.2.1.47.1.1.1.1.12.23539987|4| +1.3.6.1.2.1.47.1.1.1.1.12.23541671|4| +1.3.6.1.2.1.47.1.1.1.1.12.23612527|4| +1.3.6.1.2.1.47.1.1.1.1.12.23614115|4| +1.3.6.1.2.1.47.1.1.1.1.12.23615735|4| +1.3.6.1.2.1.47.1.1.1.1.12.24113454|4| +1.3.6.1.2.1.47.1.1.1.1.12.24115042|4| +1.3.6.1.2.1.47.1.1.1.1.12.24133071|4| +1.3.6.1.2.1.47.1.1.1.1.12.24134659|4| +1.3.6.1.2.1.47.1.1.1.1.12.24137963|4| +1.3.6.1.2.1.47.1.1.1.1.12.24205691|4| +1.3.6.1.2.1.47.1.1.1.1.12.24555730|4|Cisco Systems Inc. +1.3.6.1.2.1.47.1.1.1.1.12.25205777|4| +1.3.6.1.2.1.47.1.1.1.1.12.25207461|4| +1.3.6.1.2.1.47.1.1.1.1.12.25332609|4| +1.3.6.1.2.1.47.1.1.1.1.12.25550897|4| +1.3.6.1.2.1.47.1.1.1.1.12.25693872|4| +1.3.6.1.2.1.47.1.1.1.1.12.26493680|4| +1.3.6.1.2.1.47.1.1.1.1.12.26947585|4| +1.3.6.1.2.1.47.1.1.1.1.12.27434349|4| +1.3.6.1.2.1.47.1.1.1.1.12.28091685|4| +1.3.6.1.2.1.47.1.1.1.1.12.28204604|4| +1.3.6.1.2.1.47.1.1.1.1.12.28404825|4| +1.3.6.1.2.1.47.1.1.1.1.12.28408097|4| +1.3.6.1.2.1.47.1.1.1.1.12.28409717|4| +1.3.6.1.2.1.47.1.1.1.1.12.28556766|4| +1.3.6.1.2.1.47.1.1.1.1.12.28558354|4| +1.3.6.1.2.1.47.1.1.1.1.12.28595820|4| +1.3.6.1.2.1.47.1.1.1.1.12.28712902|4| +1.3.6.1.2.1.47.1.1.1.1.12.29047573|4| +1.3.6.1.2.1.47.1.1.1.1.12.29680361|4| +1.3.6.1.2.1.47.1.1.1.1.12.29683569|4| +1.3.6.1.2.1.47.1.1.1.1.12.29685125|4| +1.3.6.1.2.1.47.1.1.1.1.12.30054631|4| +1.3.6.1.2.1.47.1.1.1.1.12.30573226|4| +1.3.6.1.2.1.47.1.1.1.1.12.30805863|4| +1.3.6.1.2.1.47.1.1.1.1.12.31368921|4| +1.3.6.1.2.1.47.1.1.1.1.12.31370605|4| +1.3.6.1.2.1.47.1.1.1.1.12.31373813|4| +1.3.6.1.2.1.47.1.1.1.1.12.31415605|4| +1.3.6.1.2.1.47.1.1.1.1.12.31558363|4| +1.3.6.1.2.1.47.1.1.1.1.12.32635680|4| +1.3.6.1.2.1.47.1.1.1.1.12.33027158|4| +1.3.6.1.2.1.47.1.1.1.1.12.33028842|4| +1.3.6.1.2.1.47.1.1.1.1.12.33874532|4| +1.3.6.1.2.1.47.1.1.1.1.12.33876152|4| +1.3.6.1.2.1.47.1.1.1.1.12.34515143|4| +1.3.6.1.2.1.47.1.1.1.1.12.35064942|4| +1.3.6.1.2.1.47.1.1.1.1.12.35484503|4| +1.3.6.1.2.1.47.1.1.1.1.12.35565686|4| +1.3.6.1.2.1.47.1.1.1.1.12.36113247|4| +1.3.6.1.2.1.47.1.1.1.1.12.36114835|4| +1.3.6.1.2.1.47.1.1.1.1.12.36118139|4| +1.3.6.1.2.1.47.1.1.1.1.12.37336673|4| +1.3.6.1.2.1.47.1.1.1.1.12.38645760|4|Cisco Systems Inc. +1.3.6.1.2.1.47.1.1.1.1.12.38774543|4| +1.3.6.1.2.1.47.1.1.1.1.12.39009631|4| +1.3.6.1.2.1.47.1.1.1.1.12.39011219|4| +1.3.6.1.2.1.47.1.1.1.1.12.39161540|4| +1.3.6.1.2.1.47.1.1.1.1.12.39163160|4| +1.3.6.1.2.1.47.1.1.1.1.12.39508938|4| +1.3.6.1.2.1.47.1.1.1.1.12.40316076|4| +1.3.6.1.2.1.47.1.1.1.1.12.40317664|4| +1.3.6.1.2.1.47.1.1.1.1.12.40319284|4| +1.3.6.1.2.1.47.1.1.1.1.12.40390140|4| +1.3.6.1.2.1.47.1.1.1.1.12.40391728|4| +1.3.6.1.2.1.47.1.1.1.1.12.40393284|4| +1.3.6.1.2.1.47.1.1.1.1.12.40886175|4| +1.3.6.1.2.1.47.1.1.1.1.12.40889447|4| +1.3.6.1.2.1.47.1.1.1.1.12.40891067|4| +1.3.6.1.2.1.47.1.1.1.1.12.40910684|4| +1.3.6.1.2.1.47.1.1.1.1.12.40912272|4| +1.3.6.1.2.1.47.1.1.1.1.12.40915576|4| +1.3.6.1.2.1.47.1.1.1.1.12.40983240|4| +1.3.6.1.2.1.47.1.1.1.1.12.41847727|4| +1.3.6.1.2.1.47.1.1.1.1.12.41889607|4| +1.3.6.1.2.1.47.1.1.1.1.12.41903305|4| +1.3.6.1.2.1.47.1.1.1.1.12.41983486|4| +1.3.6.1.2.1.47.1.1.1.1.12.41985074|4| +1.3.6.1.2.1.47.1.1.1.1.12.42108634|4| +1.3.6.1.2.1.47.1.1.1.1.12.42328478|4| +1.3.6.1.2.1.47.1.1.1.1.12.42471453|4| +1.3.6.1.2.1.47.1.1.1.1.12.43271261|4| +1.3.6.1.2.1.47.1.1.1.1.12.43665869|4| +1.3.6.1.2.1.47.1.1.1.1.12.44949055|4| +1.3.6.1.2.1.47.1.1.1.1.12.44982153|4| +1.3.6.1.2.1.47.1.1.1.1.12.44987045|4| +1.3.6.1.2.1.47.1.1.1.1.12.45182502|4| +1.3.6.1.2.1.47.1.1.1.1.12.45185678|4| +1.3.6.1.2.1.47.1.1.1.1.12.45187266|4| +1.3.6.1.2.1.47.1.1.1.1.12.45331139|4| +1.3.6.1.2.1.47.1.1.1.1.12.45332759|4| +1.3.6.1.2.1.47.1.1.1.1.12.45334443|4| +1.3.6.1.2.1.47.1.1.1.1.12.45692779|4| +1.3.6.1.2.1.47.1.1.1.1.12.45825250|4| +1.3.6.1.2.1.47.1.1.1.1.12.45832162|4| +1.3.6.1.2.1.47.1.1.1.1.12.46324915|4| +1.3.6.1.2.1.47.1.1.1.1.12.46457974|4| +1.3.6.1.2.1.47.1.1.1.1.12.46461150|4| +1.3.6.1.2.1.47.1.1.1.1.12.46462738|4| +1.3.6.1.2.1.47.1.1.1.1.12.47349219|4| +1.3.6.1.2.1.47.1.1.1.1.12.47925186|4| +1.3.6.1.2.1.47.1.1.1.1.12.48146598|4| +1.3.6.1.2.1.47.1.1.1.1.12.48148218|4| +1.3.6.1.2.1.47.1.1.1.1.12.48151362|4| +1.3.6.1.2.1.47.1.1.1.1.12.48336040|4| +1.3.6.1.2.1.47.1.1.1.1.12.49125802|4|Cisco Systems Inc. +1.3.6.1.2.1.47.1.1.1.1.12.49413261|4| +1.3.6.1.2.1.47.1.1.1.1.12.49626948|4| +1.3.6.1.2.1.47.1.1.1.1.12.49803247|4| +1.3.6.1.2.1.47.1.1.1.1.12.49804835|4| +1.3.6.1.2.1.47.1.1.1.1.12.50514562|4| +1.3.6.1.2.1.47.1.1.1.1.12.50650557|4| +1.3.6.1.2.1.47.1.1.1.1.12.50652145|4| +1.3.6.1.2.1.47.1.1.1.1.12.50653701|4| +1.3.6.1.2.1.47.1.1.1.1.12.50864446|4| +1.3.6.1.2.1.47.1.1.1.1.12.52262180|4| +1.3.6.1.2.1.47.1.1.1.1.12.52690955|4| +1.3.6.1.2.1.47.1.1.1.1.12.52890924|4| +1.3.6.1.2.1.47.1.1.1.1.12.52892512|4| +1.3.6.1.2.1.47.1.1.1.1.12.52895688|4| +1.3.6.1.2.1.47.1.1.1.1.12.53442901|4| +1.3.6.1.2.1.47.1.1.1.1.12.53687180|4| +1.3.6.1.2.1.47.1.1.1.1.12.53899162|4| +1.3.6.1.2.1.47.1.1.1.1.12.55552156|4| +1.3.6.1.2.1.47.1.1.1.1.12.55787308|4| +1.3.6.1.2.1.47.1.1.1.1.12.55788896|4| +1.3.6.1.2.1.47.1.1.1.1.12.55939153|4| +1.3.6.1.2.1.47.1.1.1.1.12.56286551|4| +1.3.6.1.2.1.47.1.1.1.1.12.56880003|4| +1.3.6.1.2.1.47.1.1.1.1.12.57093689|4| +1.3.6.1.2.1.47.1.1.1.1.12.57095245|4| +1.3.6.1.2.1.47.1.1.1.1.12.57167689|4| +1.3.6.1.2.1.47.1.1.1.1.12.57169309|4| +1.3.6.1.2.1.47.1.1.1.1.12.57269142|4| +1.3.6.1.2.1.47.1.1.1.1.12.57663852|4| +1.3.6.1.2.1.47.1.1.1.1.12.57667060|4| +1.3.6.1.2.1.47.1.1.1.1.12.57668616|4| +1.3.6.1.2.1.47.1.1.1.1.12.57688361|4| +1.3.6.1.2.1.47.1.1.1.1.12.57689981|4| +1.3.6.1.2.1.47.1.1.1.1.12.57759233|4| +1.3.6.1.2.1.47.1.1.1.1.12.57760853|4| +1.3.6.1.2.1.47.1.1.1.1.12.57885340|4| +1.3.6.1.2.1.47.1.1.1.1.12.58757859|4| +1.3.6.1.2.1.47.1.1.1.1.12.58759479|4| +1.3.6.1.2.1.47.1.1.1.1.12.58761035|4| +1.3.6.1.2.1.47.1.1.1.1.12.58886311|4| +1.3.6.1.2.1.47.1.1.1.1.12.59102851|4| +1.3.6.1.2.1.47.1.1.1.1.12.59249130|4| +1.3.6.1.2.1.47.1.1.1.1.12.59316821|4|Cisco Systems Inc. +1.3.6.1.2.1.47.1.1.1.1.12.59586871|4| +1.3.6.1.2.1.47.1.1.1.1.12.60048938|4| +1.3.6.1.2.1.47.1.1.1.1.12.60443482|4| +1.3.6.1.2.1.47.1.1.1.1.12.60798546|4| +1.3.6.1.2.1.47.1.1.1.1.12.61759766|4| +1.3.6.1.2.1.47.1.1.1.1.12.61764658|4| +1.3.6.1.2.1.47.1.1.1.1.12.61961671|4| +1.3.6.1.2.1.47.1.1.1.1.12.61963291|4| +1.3.6.1.2.1.47.1.1.1.1.12.62108752|4| +1.3.6.1.2.1.47.1.1.1.1.12.62110436|4| +1.3.6.1.2.1.47.1.1.1.1.12.62112056|4| +1.3.6.1.2.1.47.1.1.1.1.12.62482494|4|Cisco Systems Inc. +1.3.6.1.2.1.47.1.1.1.1.12.62599655|4| +1.3.6.1.2.1.47.1.1.1.1.12.62601275|4| +1.3.6.1.2.1.47.1.1.1.1.12.63171350|4| +1.3.6.1.2.1.47.1.1.1.1.12.63237143|4| +1.3.6.1.2.1.47.1.1.1.1.12.63238827|4| +1.3.6.1.2.1.47.1.1.1.1.12.64125244|4| +1.3.6.1.2.1.47.1.1.1.1.12.64126832|4| +1.3.6.1.2.1.47.1.1.1.1.12.64527637|4| +1.3.6.1.2.1.47.1.1.1.1.12.64765592|4| +1.3.6.1.2.1.47.1.1.1.1.12.64922623|4| +1.3.6.1.2.1.47.1.1.1.1.12.64924211|4| +1.3.6.1.2.1.47.1.1.1.1.12.65113653|4| +1.3.6.1.2.1.47.1.1.1.1.12.66227682|4| +1.3.6.1.2.1.47.1.1.1.1.12.66237848|4| +1.3.6.1.2.1.47.1.1.1.1.12.66531208|4|Cisco Systems Inc. +1.3.6.1.2.1.47.1.1.1.1.12.66582448|4| +1.3.6.1.2.1.47.1.1.1.1.13.172193|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.319242|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.320862|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.322450|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.1930929|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2237736|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2359704|4| +1.3.6.1.2.1.47.1.1.1.1.13.2559673|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2561229|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.3355929|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.5199496|4| +1.3.6.1.2.1.47.1.1.1.1.13.5225733|4|ASR9001-LC +1.3.6.1.2.1.47.1.1.1.1.13.5456057|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.5457613|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.5460821|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.5607998|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.5955364|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.5959917|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.6762374|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.6763994|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.6836438|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.6838122|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.7335745|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.7337365|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.7357110|4| +1.3.6.1.2.1.47.1.1.1.1.13.7358666|4| +1.3.6.1.2.1.47.1.1.1.1.13.7429666|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8426608|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8428164|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8429784|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8555060|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8773284|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8916259|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9714479|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9716067|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10077780|4| +1.3.6.1.2.1.47.1.1.1.1.13.10090737|4| +1.3.6.1.2.1.47.1.1.1.1.13.10527011|4| +1.3.6.1.2.1.47.1.1.1.1.13.11426991|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.11517556|4| +1.3.6.1.2.1.47.1.1.1.1.13.11630420|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.11632104|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.11779185|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.11780741|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.12269960|4| +1.3.6.1.2.1.47.1.1.1.1.13.12333373|4| +1.3.6.1.2.1.47.1.1.1.1.13.12510322|4| +1.3.6.1.2.1.47.1.1.1.1.13.12905956|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.12907576|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.13795549|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.13805629|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.14322921|4| +1.3.6.1.2.1.47.1.1.1.1.13.14585855|4|A9K-MPA-4X10GE +1.3.6.1.2.1.47.1.1.1.1.13.14591308|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.14592896|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.14780750|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.14782338|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.15177601|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.15394522|4| +1.3.6.1.2.1.47.1.1.1.1.13.15526104|4|SFP-GE-T +1.3.6.1.2.1.47.1.1.1.1.13.15858003|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.16249545|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.16251165|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.16949774|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.17096855|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.17098539|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.17452244|4| +1.3.6.1.2.1.47.1.1.1.1.13.17977066|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.18708510|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.18788073|4| +1.3.6.1.2.1.47.1.1.1.1.13.19161232|4| +1.3.6.1.2.1.47.1.1.1.1.13.19337222|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.19338842|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.19441360|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.19750579|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.20133606|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.21500831|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.21657197|4|A9K-750W-AC +1.3.6.1.2.1.47.1.1.1.1.13.22233606|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.22235226|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.22238498|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.22383991|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.22731389|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.22732977|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.23538399|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.23539987|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.23541671|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.23612527|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.23614115|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.23615735|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.24113454|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.24115042|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.24133071|4| +1.3.6.1.2.1.47.1.1.1.1.13.24134659|4| +1.3.6.1.2.1.47.1.1.1.1.13.24137963|4| +1.3.6.1.2.1.47.1.1.1.1.13.24205691|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.24555730|4|ASR-9001 +1.3.6.1.2.1.47.1.1.1.1.13.25205777|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.25207461|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.25332609|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.25550897|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.25693872|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.26493680|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.26947585|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.27434349|4| +1.3.6.1.2.1.47.1.1.1.1.13.28091685|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.28204604|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.28404825|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.28408097|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.28409717|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.28556766|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.28558354|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.28595820|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.28712902|4| +1.3.6.1.2.1.47.1.1.1.1.13.29047573|4| +1.3.6.1.2.1.47.1.1.1.1.13.29680361|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.29683569|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.29685125|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.30054631|4|SFP-10G-LR +1.3.6.1.2.1.47.1.1.1.1.13.30573226|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.30805863|4| +1.3.6.1.2.1.47.1.1.1.1.13.31368921|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.31370605|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.31373813|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.31415605|4|SFP-10G-LR +1.3.6.1.2.1.47.1.1.1.1.13.31558363|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.32635680|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.33027158|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.33028842|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.33874532|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.33876152|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.34515143|4| +1.3.6.1.2.1.47.1.1.1.1.13.35064942|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.35484503|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.35565686|4| +1.3.6.1.2.1.47.1.1.1.1.13.36113247|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.36114835|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.36118139|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.37336673|4|XFP-10GLR-OC192SR +1.3.6.1.2.1.47.1.1.1.1.13.38645760|4|ASR9001-RP +1.3.6.1.2.1.47.1.1.1.1.13.38774543|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.39009631|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.39011219|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.39161540|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.39163160|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.39508938|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.40316076|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.40317664|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.40319284|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.40390140|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.40391728|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.40393284|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.40886175|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.40889447|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.40891067|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.40910684|4| +1.3.6.1.2.1.47.1.1.1.1.13.40912272|4| +1.3.6.1.2.1.47.1.1.1.1.13.40915576|4| +1.3.6.1.2.1.47.1.1.1.1.13.40983240|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.41847727|4| +1.3.6.1.2.1.47.1.1.1.1.13.41889607|4| +1.3.6.1.2.1.47.1.1.1.1.13.41903305|4| +1.3.6.1.2.1.47.1.1.1.1.13.41983486|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.41985074|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.42108634|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.42328478|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.42471453|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.43271261|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.43665869|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.44949055|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.44982153|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.44987045|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.45182502|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.45185678|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.45187266|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.45331139|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.45332759|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.45334443|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.45692779|4| +1.3.6.1.2.1.47.1.1.1.1.13.45825250|4| +1.3.6.1.2.1.47.1.1.1.1.13.45832162|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.46324915|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.46457974|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.46461150|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.46462738|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.47349219|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.47925186|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.48146598|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.48148218|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.48151362|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.48336040|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.49125802|4|A9K-MPA-20X1GE +1.3.6.1.2.1.47.1.1.1.1.13.49413261|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.49626948|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.49803247|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.49804835|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.50514562|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.50650557|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.50652145|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.50653701|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.50864446|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.52262180|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.52690955|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.52890924|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.52892512|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.52895688|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.53442901|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.53687180|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.53899162|4|A9K-MODULEv +1.3.6.1.2.1.47.1.1.1.1.13.55552156|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.55787308|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.55788896|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.55939153|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.56286551|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.56880003|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.57093689|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.57095245|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.57167689|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.57169309|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.57269142|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.57663852|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.57667060|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.57668616|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.57688361|4| +1.3.6.1.2.1.47.1.1.1.1.13.57689981|4| +1.3.6.1.2.1.47.1.1.1.1.13.57759233|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.57760853|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.57885340|4| +1.3.6.1.2.1.47.1.1.1.1.13.58757859|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.58759479|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.58761035|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.58886311|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.59102851|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.59249130|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.59316821|4|ASR-9001-FAN-V2 +1.3.6.1.2.1.47.1.1.1.1.13.59586871|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.60048938|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.60443482|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.60798546|4| +1.3.6.1.2.1.47.1.1.1.1.13.61759766|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.61764658|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.61961671|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.61963291|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.62108752|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.62110436|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.62112056|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.62482494|4|ASR9001-LC +1.3.6.1.2.1.47.1.1.1.1.13.62599655|4| +1.3.6.1.2.1.47.1.1.1.1.13.62601275|4| +1.3.6.1.2.1.47.1.1.1.1.13.63171350|4| +1.3.6.1.2.1.47.1.1.1.1.13.63237143|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.63238827|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.64125244|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.64126832|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.64527637|4| +1.3.6.1.2.1.47.1.1.1.1.13.64765592|4| +1.3.6.1.2.1.47.1.1.1.1.13.64922623|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.64924211|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.65113653|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.66227682|4|GLC-LH-SMD +1.3.6.1.2.1.47.1.1.1.1.13.66237848|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.66531208|4|A9K-750W-AC +1.3.6.1.2.1.47.1.1.1.1.13.66582448|4|N/A +1.3.6.1.2.1.47.1.1.1.1.14.172193|4| +1.3.6.1.2.1.47.1.1.1.1.14.319242|4| +1.3.6.1.2.1.47.1.1.1.1.14.320862|4| +1.3.6.1.2.1.47.1.1.1.1.14.322450|4| +1.3.6.1.2.1.47.1.1.1.1.14.1930929|4| +1.3.6.1.2.1.47.1.1.1.1.14.2237736|4|host +1.3.6.1.2.1.47.1.1.1.1.14.2359704|4|host +1.3.6.1.2.1.47.1.1.1.1.14.2559673|4| +1.3.6.1.2.1.47.1.1.1.1.14.2561229|4| +1.3.6.1.2.1.47.1.1.1.1.14.3355929|4| +1.3.6.1.2.1.47.1.1.1.1.14.5199496|4| +1.3.6.1.2.1.47.1.1.1.1.14.5225733|4|host +1.3.6.1.2.1.47.1.1.1.1.14.5456057|4| +1.3.6.1.2.1.47.1.1.1.1.14.5457613|4| +1.3.6.1.2.1.47.1.1.1.1.14.5460821|4| +1.3.6.1.2.1.47.1.1.1.1.14.5607998|4| +1.3.6.1.2.1.47.1.1.1.1.14.5955364|4| +1.3.6.1.2.1.47.1.1.1.1.14.5959917|4| +1.3.6.1.2.1.47.1.1.1.1.14.6762374|4| +1.3.6.1.2.1.47.1.1.1.1.14.6763994|4| +1.3.6.1.2.1.47.1.1.1.1.14.6836438|4| +1.3.6.1.2.1.47.1.1.1.1.14.6838122|4| +1.3.6.1.2.1.47.1.1.1.1.14.7335745|4| +1.3.6.1.2.1.47.1.1.1.1.14.7337365|4| +1.3.6.1.2.1.47.1.1.1.1.14.7357110|4| +1.3.6.1.2.1.47.1.1.1.1.14.7358666|4| +1.3.6.1.2.1.47.1.1.1.1.14.7429666|4| +1.3.6.1.2.1.47.1.1.1.1.14.8426608|4| +1.3.6.1.2.1.47.1.1.1.1.14.8428164|4| +1.3.6.1.2.1.47.1.1.1.1.14.8429784|4| +1.3.6.1.2.1.47.1.1.1.1.14.8555060|4| +1.3.6.1.2.1.47.1.1.1.1.14.8773284|4| +1.3.6.1.2.1.47.1.1.1.1.14.8916259|4| +1.3.6.1.2.1.47.1.1.1.1.14.9714479|4| +1.3.6.1.2.1.47.1.1.1.1.14.9716067|4| +1.3.6.1.2.1.47.1.1.1.1.14.10077780|4| +1.3.6.1.2.1.47.1.1.1.1.14.10090737|4| +1.3.6.1.2.1.47.1.1.1.1.14.10527011|4| +1.3.6.1.2.1.47.1.1.1.1.14.11426991|4| +1.3.6.1.2.1.47.1.1.1.1.14.11517556|4| +1.3.6.1.2.1.47.1.1.1.1.14.11630420|4| +1.3.6.1.2.1.47.1.1.1.1.14.11632104|4| +1.3.6.1.2.1.47.1.1.1.1.14.11779185|4| +1.3.6.1.2.1.47.1.1.1.1.14.11780741|4| +1.3.6.1.2.1.47.1.1.1.1.14.12269960|4| +1.3.6.1.2.1.47.1.1.1.1.14.12333373|4| +1.3.6.1.2.1.47.1.1.1.1.14.12510322|4| +1.3.6.1.2.1.47.1.1.1.1.14.12905956|4| +1.3.6.1.2.1.47.1.1.1.1.14.12907576|4| +1.3.6.1.2.1.47.1.1.1.1.14.13795549|4| +1.3.6.1.2.1.47.1.1.1.1.14.13805629|4| +1.3.6.1.2.1.47.1.1.1.1.14.14322921|4| +1.3.6.1.2.1.47.1.1.1.1.14.14585855|4|ep0 +1.3.6.1.2.1.47.1.1.1.1.14.14591308|4| +1.3.6.1.2.1.47.1.1.1.1.14.14592896|4| +1.3.6.1.2.1.47.1.1.1.1.14.14780750|4| +1.3.6.1.2.1.47.1.1.1.1.14.14782338|4| +1.3.6.1.2.1.47.1.1.1.1.14.15177601|4| +1.3.6.1.2.1.47.1.1.1.1.14.15394522|4| +1.3.6.1.2.1.47.1.1.1.1.14.15526104|4| +1.3.6.1.2.1.47.1.1.1.1.14.15858003|4| +1.3.6.1.2.1.47.1.1.1.1.14.16249545|4| +1.3.6.1.2.1.47.1.1.1.1.14.16251165|4| +1.3.6.1.2.1.47.1.1.1.1.14.16949774|4| +1.3.6.1.2.1.47.1.1.1.1.14.17096855|4| +1.3.6.1.2.1.47.1.1.1.1.14.17098539|4| +1.3.6.1.2.1.47.1.1.1.1.14.17452244|4| +1.3.6.1.2.1.47.1.1.1.1.14.17977066|4| +1.3.6.1.2.1.47.1.1.1.1.14.18708510|4| +1.3.6.1.2.1.47.1.1.1.1.14.18788073|4|host +1.3.6.1.2.1.47.1.1.1.1.14.19161232|4| +1.3.6.1.2.1.47.1.1.1.1.14.19337222|4| +1.3.6.1.2.1.47.1.1.1.1.14.19338842|4| +1.3.6.1.2.1.47.1.1.1.1.14.19441360|4| +1.3.6.1.2.1.47.1.1.1.1.14.19750579|4|host +1.3.6.1.2.1.47.1.1.1.1.14.20133606|4| +1.3.6.1.2.1.47.1.1.1.1.14.21500831|4| +1.3.6.1.2.1.47.1.1.1.1.14.21657197|4| +1.3.6.1.2.1.47.1.1.1.1.14.22233606|4| +1.3.6.1.2.1.47.1.1.1.1.14.22235226|4| +1.3.6.1.2.1.47.1.1.1.1.14.22238498|4| +1.3.6.1.2.1.47.1.1.1.1.14.22383991|4| +1.3.6.1.2.1.47.1.1.1.1.14.22731389|4| +1.3.6.1.2.1.47.1.1.1.1.14.22732977|4| +1.3.6.1.2.1.47.1.1.1.1.14.23538399|4| +1.3.6.1.2.1.47.1.1.1.1.14.23539987|4| +1.3.6.1.2.1.47.1.1.1.1.14.23541671|4| +1.3.6.1.2.1.47.1.1.1.1.14.23612527|4| +1.3.6.1.2.1.47.1.1.1.1.14.23614115|4| +1.3.6.1.2.1.47.1.1.1.1.14.23615735|4| +1.3.6.1.2.1.47.1.1.1.1.14.24113454|4| +1.3.6.1.2.1.47.1.1.1.1.14.24115042|4| +1.3.6.1.2.1.47.1.1.1.1.14.24133071|4| +1.3.6.1.2.1.47.1.1.1.1.14.24134659|4| +1.3.6.1.2.1.47.1.1.1.1.14.24137963|4| +1.3.6.1.2.1.47.1.1.1.1.14.24205691|4| +1.3.6.1.2.1.47.1.1.1.1.14.24555730|4| +1.3.6.1.2.1.47.1.1.1.1.14.25205777|4| +1.3.6.1.2.1.47.1.1.1.1.14.25207461|4| +1.3.6.1.2.1.47.1.1.1.1.14.25332609|4| +1.3.6.1.2.1.47.1.1.1.1.14.25550897|4| +1.3.6.1.2.1.47.1.1.1.1.14.25693872|4| +1.3.6.1.2.1.47.1.1.1.1.14.26493680|4| +1.3.6.1.2.1.47.1.1.1.1.14.26947585|4| +1.3.6.1.2.1.47.1.1.1.1.14.27434349|4| +1.3.6.1.2.1.47.1.1.1.1.14.28091685|4| +1.3.6.1.2.1.47.1.1.1.1.14.28204604|4| +1.3.6.1.2.1.47.1.1.1.1.14.28404825|4| +1.3.6.1.2.1.47.1.1.1.1.14.28408097|4| +1.3.6.1.2.1.47.1.1.1.1.14.28409717|4| +1.3.6.1.2.1.47.1.1.1.1.14.28556766|4| +1.3.6.1.2.1.47.1.1.1.1.14.28558354|4| +1.3.6.1.2.1.47.1.1.1.1.14.28595820|4| +1.3.6.1.2.1.47.1.1.1.1.14.28712902|4| +1.3.6.1.2.1.47.1.1.1.1.14.29047573|4| +1.3.6.1.2.1.47.1.1.1.1.14.29680361|4| +1.3.6.1.2.1.47.1.1.1.1.14.29683569|4| +1.3.6.1.2.1.47.1.1.1.1.14.29685125|4| +1.3.6.1.2.1.47.1.1.1.1.14.30054631|4| +1.3.6.1.2.1.47.1.1.1.1.14.30573226|4| +1.3.6.1.2.1.47.1.1.1.1.14.30805863|4| +1.3.6.1.2.1.47.1.1.1.1.14.31368921|4| +1.3.6.1.2.1.47.1.1.1.1.14.31370605|4| +1.3.6.1.2.1.47.1.1.1.1.14.31373813|4| +1.3.6.1.2.1.47.1.1.1.1.14.31415605|4| +1.3.6.1.2.1.47.1.1.1.1.14.31558363|4| +1.3.6.1.2.1.47.1.1.1.1.14.32635680|4| +1.3.6.1.2.1.47.1.1.1.1.14.33027158|4| +1.3.6.1.2.1.47.1.1.1.1.14.33028842|4| +1.3.6.1.2.1.47.1.1.1.1.14.33874532|4| +1.3.6.1.2.1.47.1.1.1.1.14.33876152|4| +1.3.6.1.2.1.47.1.1.1.1.14.34515143|4| +1.3.6.1.2.1.47.1.1.1.1.14.35064942|4| +1.3.6.1.2.1.47.1.1.1.1.14.35484503|4| +1.3.6.1.2.1.47.1.1.1.1.14.35565686|4|host +1.3.6.1.2.1.47.1.1.1.1.14.36113247|4| +1.3.6.1.2.1.47.1.1.1.1.14.36114835|4| +1.3.6.1.2.1.47.1.1.1.1.14.36118139|4| +1.3.6.1.2.1.47.1.1.1.1.14.37336673|4| +1.3.6.1.2.1.47.1.1.1.1.14.38645760|4| +1.3.6.1.2.1.47.1.1.1.1.14.38774543|4| +1.3.6.1.2.1.47.1.1.1.1.14.39009631|4| +1.3.6.1.2.1.47.1.1.1.1.14.39011219|4| +1.3.6.1.2.1.47.1.1.1.1.14.39161540|4| +1.3.6.1.2.1.47.1.1.1.1.14.39163160|4| +1.3.6.1.2.1.47.1.1.1.1.14.39508938|4| +1.3.6.1.2.1.47.1.1.1.1.14.40316076|4| +1.3.6.1.2.1.47.1.1.1.1.14.40317664|4| +1.3.6.1.2.1.47.1.1.1.1.14.40319284|4| +1.3.6.1.2.1.47.1.1.1.1.14.40390140|4| +1.3.6.1.2.1.47.1.1.1.1.14.40391728|4| +1.3.6.1.2.1.47.1.1.1.1.14.40393284|4| +1.3.6.1.2.1.47.1.1.1.1.14.40886175|4| +1.3.6.1.2.1.47.1.1.1.1.14.40889447|4| +1.3.6.1.2.1.47.1.1.1.1.14.40891067|4| +1.3.6.1.2.1.47.1.1.1.1.14.40910684|4| +1.3.6.1.2.1.47.1.1.1.1.14.40912272|4|host +1.3.6.1.2.1.47.1.1.1.1.14.40915576|4| +1.3.6.1.2.1.47.1.1.1.1.14.40983240|4| +1.3.6.1.2.1.47.1.1.1.1.14.41847727|4| +1.3.6.1.2.1.47.1.1.1.1.14.41889607|4| +1.3.6.1.2.1.47.1.1.1.1.14.41903305|4| +1.3.6.1.2.1.47.1.1.1.1.14.41983486|4| +1.3.6.1.2.1.47.1.1.1.1.14.41985074|4| +1.3.6.1.2.1.47.1.1.1.1.14.42108634|4| +1.3.6.1.2.1.47.1.1.1.1.14.42328478|4| +1.3.6.1.2.1.47.1.1.1.1.14.42471453|4| +1.3.6.1.2.1.47.1.1.1.1.14.43271261|4| +1.3.6.1.2.1.47.1.1.1.1.14.43665869|4| +1.3.6.1.2.1.47.1.1.1.1.14.44949055|4| +1.3.6.1.2.1.47.1.1.1.1.14.44982153|4| +1.3.6.1.2.1.47.1.1.1.1.14.44987045|4| +1.3.6.1.2.1.47.1.1.1.1.14.45182502|4| +1.3.6.1.2.1.47.1.1.1.1.14.45185678|4| +1.3.6.1.2.1.47.1.1.1.1.14.45187266|4| +1.3.6.1.2.1.47.1.1.1.1.14.45331139|4| +1.3.6.1.2.1.47.1.1.1.1.14.45332759|4| +1.3.6.1.2.1.47.1.1.1.1.14.45334443|4| +1.3.6.1.2.1.47.1.1.1.1.14.45692779|4| +1.3.6.1.2.1.47.1.1.1.1.14.45825250|4| +1.3.6.1.2.1.47.1.1.1.1.14.45832162|4| +1.3.6.1.2.1.47.1.1.1.1.14.46324915|4| +1.3.6.1.2.1.47.1.1.1.1.14.46457974|4| +1.3.6.1.2.1.47.1.1.1.1.14.46461150|4| +1.3.6.1.2.1.47.1.1.1.1.14.46462738|4| +1.3.6.1.2.1.47.1.1.1.1.14.47349219|4| +1.3.6.1.2.1.47.1.1.1.1.14.47925186|4| +1.3.6.1.2.1.47.1.1.1.1.14.48146598|4| +1.3.6.1.2.1.47.1.1.1.1.14.48148218|4| +1.3.6.1.2.1.47.1.1.1.1.14.48151362|4| +1.3.6.1.2.1.47.1.1.1.1.14.48336040|4| +1.3.6.1.2.1.47.1.1.1.1.14.49125802|4|ep1 +1.3.6.1.2.1.47.1.1.1.1.14.49413261|4| +1.3.6.1.2.1.47.1.1.1.1.14.49626948|4| +1.3.6.1.2.1.47.1.1.1.1.14.49803247|4| +1.3.6.1.2.1.47.1.1.1.1.14.49804835|4| +1.3.6.1.2.1.47.1.1.1.1.14.50514562|4| +1.3.6.1.2.1.47.1.1.1.1.14.50650557|4| +1.3.6.1.2.1.47.1.1.1.1.14.50652145|4| +1.3.6.1.2.1.47.1.1.1.1.14.50653701|4| +1.3.6.1.2.1.47.1.1.1.1.14.50864446|4| +1.3.6.1.2.1.47.1.1.1.1.14.52262180|4| +1.3.6.1.2.1.47.1.1.1.1.14.52690955|4|host +1.3.6.1.2.1.47.1.1.1.1.14.52890924|4| +1.3.6.1.2.1.47.1.1.1.1.14.52892512|4| +1.3.6.1.2.1.47.1.1.1.1.14.52895688|4| +1.3.6.1.2.1.47.1.1.1.1.14.53442901|4| +1.3.6.1.2.1.47.1.1.1.1.14.53687180|4| +1.3.6.1.2.1.47.1.1.1.1.14.53899162|4| +1.3.6.1.2.1.47.1.1.1.1.14.55552156|4| +1.3.6.1.2.1.47.1.1.1.1.14.55787308|4| +1.3.6.1.2.1.47.1.1.1.1.14.55788896|4| +1.3.6.1.2.1.47.1.1.1.1.14.55939153|4| +1.3.6.1.2.1.47.1.1.1.1.14.56286551|4| +1.3.6.1.2.1.47.1.1.1.1.14.56880003|4| +1.3.6.1.2.1.47.1.1.1.1.14.57093689|4| +1.3.6.1.2.1.47.1.1.1.1.14.57095245|4| +1.3.6.1.2.1.47.1.1.1.1.14.57167689|4| +1.3.6.1.2.1.47.1.1.1.1.14.57169309|4| +1.3.6.1.2.1.47.1.1.1.1.14.57269142|4| +1.3.6.1.2.1.47.1.1.1.1.14.57663852|4| +1.3.6.1.2.1.47.1.1.1.1.14.57667060|4| +1.3.6.1.2.1.47.1.1.1.1.14.57668616|4| +1.3.6.1.2.1.47.1.1.1.1.14.57688361|4| +1.3.6.1.2.1.47.1.1.1.1.14.57689981|4| +1.3.6.1.2.1.47.1.1.1.1.14.57759233|4| +1.3.6.1.2.1.47.1.1.1.1.14.57760853|4| +1.3.6.1.2.1.47.1.1.1.1.14.57885340|4| +1.3.6.1.2.1.47.1.1.1.1.14.58757859|4| +1.3.6.1.2.1.47.1.1.1.1.14.58759479|4| +1.3.6.1.2.1.47.1.1.1.1.14.58761035|4| +1.3.6.1.2.1.47.1.1.1.1.14.58886311|4| +1.3.6.1.2.1.47.1.1.1.1.14.59102851|4| +1.3.6.1.2.1.47.1.1.1.1.14.59249130|4| +1.3.6.1.2.1.47.1.1.1.1.14.59316821|4| +1.3.6.1.2.1.47.1.1.1.1.14.59586871|4| +1.3.6.1.2.1.47.1.1.1.1.14.60048938|4| +1.3.6.1.2.1.47.1.1.1.1.14.60443482|4| +1.3.6.1.2.1.47.1.1.1.1.14.60798546|4| +1.3.6.1.2.1.47.1.1.1.1.14.61759766|4| +1.3.6.1.2.1.47.1.1.1.1.14.61764658|4| +1.3.6.1.2.1.47.1.1.1.1.14.61961671|4| +1.3.6.1.2.1.47.1.1.1.1.14.61963291|4| +1.3.6.1.2.1.47.1.1.1.1.14.62108752|4| +1.3.6.1.2.1.47.1.1.1.1.14.62110436|4| +1.3.6.1.2.1.47.1.1.1.1.14.62112056|4| +1.3.6.1.2.1.47.1.1.1.1.14.62482494|4| +1.3.6.1.2.1.47.1.1.1.1.14.62599655|4| +1.3.6.1.2.1.47.1.1.1.1.14.62601275|4| +1.3.6.1.2.1.47.1.1.1.1.14.63171350|4| +1.3.6.1.2.1.47.1.1.1.1.14.63237143|4| +1.3.6.1.2.1.47.1.1.1.1.14.63238827|4| +1.3.6.1.2.1.47.1.1.1.1.14.64125244|4| +1.3.6.1.2.1.47.1.1.1.1.14.64126832|4| +1.3.6.1.2.1.47.1.1.1.1.14.64527637|4| +1.3.6.1.2.1.47.1.1.1.1.14.64765592|4| +1.3.6.1.2.1.47.1.1.1.1.14.64922623|4| +1.3.6.1.2.1.47.1.1.1.1.14.64924211|4| +1.3.6.1.2.1.47.1.1.1.1.14.65113653|4| +1.3.6.1.2.1.47.1.1.1.1.14.66227682|4| +1.3.6.1.2.1.47.1.1.1.1.14.66237848|4| +1.3.6.1.2.1.47.1.1.1.1.14.66531208|4| +1.3.6.1.2.1.47.1.1.1.1.14.66582448|4| +1.3.6.1.2.1.47.1.1.1.1.15.172193|4| +1.3.6.1.2.1.47.1.1.1.1.15.319242|4| +1.3.6.1.2.1.47.1.1.1.1.15.320862|4| +1.3.6.1.2.1.47.1.1.1.1.15.322450|4| +1.3.6.1.2.1.47.1.1.1.1.15.1930929|4| +1.3.6.1.2.1.47.1.1.1.1.15.2237736|4| +1.3.6.1.2.1.47.1.1.1.1.15.2359704|4| +1.3.6.1.2.1.47.1.1.1.1.15.2559673|4| +1.3.6.1.2.1.47.1.1.1.1.15.2561229|4| +1.3.6.1.2.1.47.1.1.1.1.15.3355929|4| +1.3.6.1.2.1.47.1.1.1.1.15.5199496|4| +1.3.6.1.2.1.47.1.1.1.1.15.5225733|4| +1.3.6.1.2.1.47.1.1.1.1.15.5456057|4| +1.3.6.1.2.1.47.1.1.1.1.15.5457613|4| +1.3.6.1.2.1.47.1.1.1.1.15.5460821|4| +1.3.6.1.2.1.47.1.1.1.1.15.5607998|4| +1.3.6.1.2.1.47.1.1.1.1.15.5955364|4| +1.3.6.1.2.1.47.1.1.1.1.15.5959917|4| +1.3.6.1.2.1.47.1.1.1.1.15.6762374|4| +1.3.6.1.2.1.47.1.1.1.1.15.6763994|4| +1.3.6.1.2.1.47.1.1.1.1.15.6836438|4| +1.3.6.1.2.1.47.1.1.1.1.15.6838122|4| +1.3.6.1.2.1.47.1.1.1.1.15.7335745|4| +1.3.6.1.2.1.47.1.1.1.1.15.7337365|4| +1.3.6.1.2.1.47.1.1.1.1.15.7357110|4| +1.3.6.1.2.1.47.1.1.1.1.15.7358666|4| +1.3.6.1.2.1.47.1.1.1.1.15.7429666|4| +1.3.6.1.2.1.47.1.1.1.1.15.8426608|4| +1.3.6.1.2.1.47.1.1.1.1.15.8428164|4| +1.3.6.1.2.1.47.1.1.1.1.15.8429784|4| +1.3.6.1.2.1.47.1.1.1.1.15.8555060|4| +1.3.6.1.2.1.47.1.1.1.1.15.8773284|4| +1.3.6.1.2.1.47.1.1.1.1.15.8916259|4| +1.3.6.1.2.1.47.1.1.1.1.15.9714479|4| +1.3.6.1.2.1.47.1.1.1.1.15.9716067|4| +1.3.6.1.2.1.47.1.1.1.1.15.10077780|4| +1.3.6.1.2.1.47.1.1.1.1.15.10090737|4| +1.3.6.1.2.1.47.1.1.1.1.15.10527011|4| +1.3.6.1.2.1.47.1.1.1.1.15.11426991|4| +1.3.6.1.2.1.47.1.1.1.1.15.11517556|4| +1.3.6.1.2.1.47.1.1.1.1.15.11630420|4| +1.3.6.1.2.1.47.1.1.1.1.15.11632104|4| +1.3.6.1.2.1.47.1.1.1.1.15.11779185|4| +1.3.6.1.2.1.47.1.1.1.1.15.11780741|4| +1.3.6.1.2.1.47.1.1.1.1.15.12269960|4| +1.3.6.1.2.1.47.1.1.1.1.15.12333373|4| +1.3.6.1.2.1.47.1.1.1.1.15.12510322|4| +1.3.6.1.2.1.47.1.1.1.1.15.12905956|4| +1.3.6.1.2.1.47.1.1.1.1.15.12907576|4| +1.3.6.1.2.1.47.1.1.1.1.15.13795549|4| +1.3.6.1.2.1.47.1.1.1.1.15.13805629|4| +1.3.6.1.2.1.47.1.1.1.1.15.14322921|4| +1.3.6.1.2.1.47.1.1.1.1.15.14585855|4| +1.3.6.1.2.1.47.1.1.1.1.15.14591308|4| +1.3.6.1.2.1.47.1.1.1.1.15.14592896|4| +1.3.6.1.2.1.47.1.1.1.1.15.14780750|4| +1.3.6.1.2.1.47.1.1.1.1.15.14782338|4| +1.3.6.1.2.1.47.1.1.1.1.15.15177601|4| +1.3.6.1.2.1.47.1.1.1.1.15.15394522|4| +1.3.6.1.2.1.47.1.1.1.1.15.15526104|4| +1.3.6.1.2.1.47.1.1.1.1.15.15858003|4| +1.3.6.1.2.1.47.1.1.1.1.15.16249545|4| +1.3.6.1.2.1.47.1.1.1.1.15.16251165|4| +1.3.6.1.2.1.47.1.1.1.1.15.16949774|4| +1.3.6.1.2.1.47.1.1.1.1.15.17096855|4| +1.3.6.1.2.1.47.1.1.1.1.15.17098539|4| +1.3.6.1.2.1.47.1.1.1.1.15.17452244|4| +1.3.6.1.2.1.47.1.1.1.1.15.17977066|4| +1.3.6.1.2.1.47.1.1.1.1.15.18708510|4| +1.3.6.1.2.1.47.1.1.1.1.15.18788073|4| +1.3.6.1.2.1.47.1.1.1.1.15.19161232|4| +1.3.6.1.2.1.47.1.1.1.1.15.19337222|4| +1.3.6.1.2.1.47.1.1.1.1.15.19338842|4| +1.3.6.1.2.1.47.1.1.1.1.15.19441360|4| +1.3.6.1.2.1.47.1.1.1.1.15.19750579|4| +1.3.6.1.2.1.47.1.1.1.1.15.20133606|4| +1.3.6.1.2.1.47.1.1.1.1.15.21500831|4| +1.3.6.1.2.1.47.1.1.1.1.15.21657197|4| +1.3.6.1.2.1.47.1.1.1.1.15.22233606|4| +1.3.6.1.2.1.47.1.1.1.1.15.22235226|4| +1.3.6.1.2.1.47.1.1.1.1.15.22238498|4| +1.3.6.1.2.1.47.1.1.1.1.15.22383991|4| +1.3.6.1.2.1.47.1.1.1.1.15.22731389|4| +1.3.6.1.2.1.47.1.1.1.1.15.22732977|4| +1.3.6.1.2.1.47.1.1.1.1.15.23538399|4| +1.3.6.1.2.1.47.1.1.1.1.15.23539987|4| +1.3.6.1.2.1.47.1.1.1.1.15.23541671|4| +1.3.6.1.2.1.47.1.1.1.1.15.23612527|4| +1.3.6.1.2.1.47.1.1.1.1.15.23614115|4| +1.3.6.1.2.1.47.1.1.1.1.15.23615735|4| +1.3.6.1.2.1.47.1.1.1.1.15.24113454|4| +1.3.6.1.2.1.47.1.1.1.1.15.24115042|4| +1.3.6.1.2.1.47.1.1.1.1.15.24133071|4| +1.3.6.1.2.1.47.1.1.1.1.15.24134659|4| +1.3.6.1.2.1.47.1.1.1.1.15.24137963|4| +1.3.6.1.2.1.47.1.1.1.1.15.24205691|4| +1.3.6.1.2.1.47.1.1.1.1.15.24555730|4| +1.3.6.1.2.1.47.1.1.1.1.15.25205777|4| +1.3.6.1.2.1.47.1.1.1.1.15.25207461|4| +1.3.6.1.2.1.47.1.1.1.1.15.25332609|4| +1.3.6.1.2.1.47.1.1.1.1.15.25550897|4| +1.3.6.1.2.1.47.1.1.1.1.15.25693872|4| +1.3.6.1.2.1.47.1.1.1.1.15.26493680|4| +1.3.6.1.2.1.47.1.1.1.1.15.26947585|4| +1.3.6.1.2.1.47.1.1.1.1.15.27434349|4| +1.3.6.1.2.1.47.1.1.1.1.15.28091685|4| +1.3.6.1.2.1.47.1.1.1.1.15.28204604|4| +1.3.6.1.2.1.47.1.1.1.1.15.28404825|4| +1.3.6.1.2.1.47.1.1.1.1.15.28408097|4| +1.3.6.1.2.1.47.1.1.1.1.15.28409717|4| +1.3.6.1.2.1.47.1.1.1.1.15.28556766|4| +1.3.6.1.2.1.47.1.1.1.1.15.28558354|4| +1.3.6.1.2.1.47.1.1.1.1.15.28595820|4| +1.3.6.1.2.1.47.1.1.1.1.15.28712902|4| +1.3.6.1.2.1.47.1.1.1.1.15.29047573|4| +1.3.6.1.2.1.47.1.1.1.1.15.29680361|4| +1.3.6.1.2.1.47.1.1.1.1.15.29683569|4| +1.3.6.1.2.1.47.1.1.1.1.15.29685125|4| +1.3.6.1.2.1.47.1.1.1.1.15.30054631|4| +1.3.6.1.2.1.47.1.1.1.1.15.30573226|4| +1.3.6.1.2.1.47.1.1.1.1.15.30805863|4| +1.3.6.1.2.1.47.1.1.1.1.15.31368921|4| +1.3.6.1.2.1.47.1.1.1.1.15.31370605|4| +1.3.6.1.2.1.47.1.1.1.1.15.31373813|4| +1.3.6.1.2.1.47.1.1.1.1.15.31415605|4| +1.3.6.1.2.1.47.1.1.1.1.15.31558363|4| +1.3.6.1.2.1.47.1.1.1.1.15.32635680|4| +1.3.6.1.2.1.47.1.1.1.1.15.33027158|4| +1.3.6.1.2.1.47.1.1.1.1.15.33028842|4| +1.3.6.1.2.1.47.1.1.1.1.15.33874532|4| +1.3.6.1.2.1.47.1.1.1.1.15.33876152|4| +1.3.6.1.2.1.47.1.1.1.1.15.34515143|4| +1.3.6.1.2.1.47.1.1.1.1.15.35064942|4| +1.3.6.1.2.1.47.1.1.1.1.15.35484503|4| +1.3.6.1.2.1.47.1.1.1.1.15.35565686|4| +1.3.6.1.2.1.47.1.1.1.1.15.36113247|4| +1.3.6.1.2.1.47.1.1.1.1.15.36114835|4| +1.3.6.1.2.1.47.1.1.1.1.15.36118139|4| +1.3.6.1.2.1.47.1.1.1.1.15.37336673|4| +1.3.6.1.2.1.47.1.1.1.1.15.38645760|4| +1.3.6.1.2.1.47.1.1.1.1.15.38774543|4| +1.3.6.1.2.1.47.1.1.1.1.15.39009631|4| +1.3.6.1.2.1.47.1.1.1.1.15.39011219|4| +1.3.6.1.2.1.47.1.1.1.1.15.39161540|4| +1.3.6.1.2.1.47.1.1.1.1.15.39163160|4| +1.3.6.1.2.1.47.1.1.1.1.15.39508938|4| +1.3.6.1.2.1.47.1.1.1.1.15.40316076|4| +1.3.6.1.2.1.47.1.1.1.1.15.40317664|4| +1.3.6.1.2.1.47.1.1.1.1.15.40319284|4| +1.3.6.1.2.1.47.1.1.1.1.15.40390140|4| +1.3.6.1.2.1.47.1.1.1.1.15.40391728|4| +1.3.6.1.2.1.47.1.1.1.1.15.40393284|4| +1.3.6.1.2.1.47.1.1.1.1.15.40886175|4| +1.3.6.1.2.1.47.1.1.1.1.15.40889447|4| +1.3.6.1.2.1.47.1.1.1.1.15.40891067|4| +1.3.6.1.2.1.47.1.1.1.1.15.40910684|4| +1.3.6.1.2.1.47.1.1.1.1.15.40912272|4| +1.3.6.1.2.1.47.1.1.1.1.15.40915576|4| +1.3.6.1.2.1.47.1.1.1.1.15.40983240|4| +1.3.6.1.2.1.47.1.1.1.1.15.41847727|4| +1.3.6.1.2.1.47.1.1.1.1.15.41889607|4| +1.3.6.1.2.1.47.1.1.1.1.15.41903305|4| +1.3.6.1.2.1.47.1.1.1.1.15.41983486|4| +1.3.6.1.2.1.47.1.1.1.1.15.41985074|4| +1.3.6.1.2.1.47.1.1.1.1.15.42108634|4| +1.3.6.1.2.1.47.1.1.1.1.15.42328478|4| +1.3.6.1.2.1.47.1.1.1.1.15.42471453|4| +1.3.6.1.2.1.47.1.1.1.1.15.43271261|4| +1.3.6.1.2.1.47.1.1.1.1.15.43665869|4| +1.3.6.1.2.1.47.1.1.1.1.15.44949055|4| +1.3.6.1.2.1.47.1.1.1.1.15.44982153|4| +1.3.6.1.2.1.47.1.1.1.1.15.44987045|4| +1.3.6.1.2.1.47.1.1.1.1.15.45182502|4| +1.3.6.1.2.1.47.1.1.1.1.15.45185678|4| +1.3.6.1.2.1.47.1.1.1.1.15.45187266|4| +1.3.6.1.2.1.47.1.1.1.1.15.45331139|4| +1.3.6.1.2.1.47.1.1.1.1.15.45332759|4| +1.3.6.1.2.1.47.1.1.1.1.15.45334443|4| +1.3.6.1.2.1.47.1.1.1.1.15.45692779|4| +1.3.6.1.2.1.47.1.1.1.1.15.45825250|4| +1.3.6.1.2.1.47.1.1.1.1.15.45832162|4| +1.3.6.1.2.1.47.1.1.1.1.15.46324915|4| +1.3.6.1.2.1.47.1.1.1.1.15.46457974|4| +1.3.6.1.2.1.47.1.1.1.1.15.46461150|4| +1.3.6.1.2.1.47.1.1.1.1.15.46462738|4| +1.3.6.1.2.1.47.1.1.1.1.15.47349219|4| +1.3.6.1.2.1.47.1.1.1.1.15.47925186|4| +1.3.6.1.2.1.47.1.1.1.1.15.48146598|4| +1.3.6.1.2.1.47.1.1.1.1.15.48148218|4| +1.3.6.1.2.1.47.1.1.1.1.15.48151362|4| +1.3.6.1.2.1.47.1.1.1.1.15.48336040|4| +1.3.6.1.2.1.47.1.1.1.1.15.49125802|4| +1.3.6.1.2.1.47.1.1.1.1.15.49413261|4| +1.3.6.1.2.1.47.1.1.1.1.15.49626948|4| +1.3.6.1.2.1.47.1.1.1.1.15.49803247|4| +1.3.6.1.2.1.47.1.1.1.1.15.49804835|4| +1.3.6.1.2.1.47.1.1.1.1.15.50514562|4| +1.3.6.1.2.1.47.1.1.1.1.15.50650557|4| +1.3.6.1.2.1.47.1.1.1.1.15.50652145|4| +1.3.6.1.2.1.47.1.1.1.1.15.50653701|4| +1.3.6.1.2.1.47.1.1.1.1.15.50864446|4| +1.3.6.1.2.1.47.1.1.1.1.15.52262180|4| +1.3.6.1.2.1.47.1.1.1.1.15.52690955|4| +1.3.6.1.2.1.47.1.1.1.1.15.52890924|4| +1.3.6.1.2.1.47.1.1.1.1.15.52892512|4| +1.3.6.1.2.1.47.1.1.1.1.15.52895688|4| +1.3.6.1.2.1.47.1.1.1.1.15.53442901|4| +1.3.6.1.2.1.47.1.1.1.1.15.53687180|4| +1.3.6.1.2.1.47.1.1.1.1.15.53899162|4| +1.3.6.1.2.1.47.1.1.1.1.15.55552156|4| +1.3.6.1.2.1.47.1.1.1.1.15.55787308|4| +1.3.6.1.2.1.47.1.1.1.1.15.55788896|4| +1.3.6.1.2.1.47.1.1.1.1.15.55939153|4| +1.3.6.1.2.1.47.1.1.1.1.15.56286551|4| +1.3.6.1.2.1.47.1.1.1.1.15.56880003|4| +1.3.6.1.2.1.47.1.1.1.1.15.57093689|4| +1.3.6.1.2.1.47.1.1.1.1.15.57095245|4| +1.3.6.1.2.1.47.1.1.1.1.15.57167689|4| +1.3.6.1.2.1.47.1.1.1.1.15.57169309|4| +1.3.6.1.2.1.47.1.1.1.1.15.57269142|4| +1.3.6.1.2.1.47.1.1.1.1.15.57663852|4| +1.3.6.1.2.1.47.1.1.1.1.15.57667060|4| +1.3.6.1.2.1.47.1.1.1.1.15.57668616|4| +1.3.6.1.2.1.47.1.1.1.1.15.57688361|4| +1.3.6.1.2.1.47.1.1.1.1.15.57689981|4| +1.3.6.1.2.1.47.1.1.1.1.15.57759233|4| +1.3.6.1.2.1.47.1.1.1.1.15.57760853|4| +1.3.6.1.2.1.47.1.1.1.1.15.57885340|4| +1.3.6.1.2.1.47.1.1.1.1.15.58757859|4| +1.3.6.1.2.1.47.1.1.1.1.15.58759479|4| +1.3.6.1.2.1.47.1.1.1.1.15.58761035|4| +1.3.6.1.2.1.47.1.1.1.1.15.58886311|4| +1.3.6.1.2.1.47.1.1.1.1.15.59102851|4| +1.3.6.1.2.1.47.1.1.1.1.15.59249130|4| +1.3.6.1.2.1.47.1.1.1.1.15.59316821|4| +1.3.6.1.2.1.47.1.1.1.1.15.59586871|4| +1.3.6.1.2.1.47.1.1.1.1.15.60048938|4| +1.3.6.1.2.1.47.1.1.1.1.15.60443482|4| +1.3.6.1.2.1.47.1.1.1.1.15.60798546|4| +1.3.6.1.2.1.47.1.1.1.1.15.61759766|4| +1.3.6.1.2.1.47.1.1.1.1.15.61764658|4| +1.3.6.1.2.1.47.1.1.1.1.15.61961671|4| +1.3.6.1.2.1.47.1.1.1.1.15.61963291|4| +1.3.6.1.2.1.47.1.1.1.1.15.62108752|4| +1.3.6.1.2.1.47.1.1.1.1.15.62110436|4| +1.3.6.1.2.1.47.1.1.1.1.15.62112056|4| +1.3.6.1.2.1.47.1.1.1.1.15.62482494|4| +1.3.6.1.2.1.47.1.1.1.1.15.62599655|4| +1.3.6.1.2.1.47.1.1.1.1.15.62601275|4| +1.3.6.1.2.1.47.1.1.1.1.15.63171350|4| +1.3.6.1.2.1.47.1.1.1.1.15.63237143|4| +1.3.6.1.2.1.47.1.1.1.1.15.63238827|4| +1.3.6.1.2.1.47.1.1.1.1.15.64125244|4| +1.3.6.1.2.1.47.1.1.1.1.15.64126832|4| +1.3.6.1.2.1.47.1.1.1.1.15.64527637|4| +1.3.6.1.2.1.47.1.1.1.1.15.64765592|4| +1.3.6.1.2.1.47.1.1.1.1.15.64922623|4| +1.3.6.1.2.1.47.1.1.1.1.15.64924211|4| +1.3.6.1.2.1.47.1.1.1.1.15.65113653|4| +1.3.6.1.2.1.47.1.1.1.1.15.66227682|4| +1.3.6.1.2.1.47.1.1.1.1.15.66237848|4| +1.3.6.1.2.1.47.1.1.1.1.15.66531208|4| +1.3.6.1.2.1.47.1.1.1.1.15.66582448|4| +1.3.6.1.2.1.47.1.1.1.1.16.172193|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.319242|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.320862|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.322450|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.1930929|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2237736|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2359704|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2559673|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2561229|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3355929|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.5199496|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.5225733|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.5456057|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.5457613|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.5460821|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.5607998|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.5955364|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.5959917|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.6762374|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.6763994|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.6836438|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.6838122|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.7335745|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.7337365|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.7357110|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.7358666|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.7429666|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8426608|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8428164|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8429784|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8555060|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8773284|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8916259|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9714479|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9716067|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10077780|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10090737|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10527011|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.11426991|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.11517556|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.11630420|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.11632104|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.11779185|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.11780741|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.12269960|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.12333373|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.12510322|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.12905956|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.12907576|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.13795549|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.13805629|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.14322921|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.14585855|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.14591308|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.14592896|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.14780750|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.14782338|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.15177601|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.15394522|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.15526104|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.15858003|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.16249545|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.16251165|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.16949774|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.17096855|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.17098539|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.17452244|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.17977066|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.18708510|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.18788073|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.19161232|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.19337222|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.19338842|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.19441360|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.19750579|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.20133606|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.21500831|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.21657197|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.22233606|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.22235226|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.22238498|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.22383991|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.22731389|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.22732977|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.23538399|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.23539987|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.23541671|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.23612527|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.23614115|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.23615735|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.24113454|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.24115042|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.24133071|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.24134659|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.24137963|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.24205691|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.24555730|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.25205777|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.25207461|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.25332609|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.25550897|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.25693872|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.26493680|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.26947585|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.27434349|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.28091685|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.28204604|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.28404825|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.28408097|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.28409717|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.28556766|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.28558354|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.28595820|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.28712902|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.29047573|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.29680361|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.29683569|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.29685125|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.30054631|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.30573226|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.30805863|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.31368921|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.31370605|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.31373813|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.31415605|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.31558363|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.32635680|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.33027158|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.33028842|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.33874532|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.33876152|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.34515143|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.35064942|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.35484503|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.35565686|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.36113247|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.36114835|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.36118139|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.37336673|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.38645760|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.38774543|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.39009631|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.39011219|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.39161540|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.39163160|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.39508938|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.40316076|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.40317664|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.40319284|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.40390140|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.40391728|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.40393284|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.40886175|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.40889447|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.40891067|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.40910684|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.40912272|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.40915576|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.40983240|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.41847727|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.41889607|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.41903305|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.41983486|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.41985074|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.42108634|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.42328478|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.42471453|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.43271261|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.43665869|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.44949055|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.44982153|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.44987045|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.45182502|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.45185678|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.45187266|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.45331139|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.45332759|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.45334443|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.45692779|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.45825250|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.45832162|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.46324915|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.46457974|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.46461150|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.46462738|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.47349219|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.47925186|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.48146598|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.48148218|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.48151362|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.48336040|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.49125802|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.49413261|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.49626948|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.49803247|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.49804835|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.50514562|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.50650557|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.50652145|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.50653701|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.50864446|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.52262180|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.52690955|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.52890924|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.52892512|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.52895688|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.53442901|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.53687180|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.53899162|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.55552156|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.55787308|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.55788896|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.55939153|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.56286551|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.56880003|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.57093689|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.57095245|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.57167689|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.57169309|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.57269142|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.57663852|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.57667060|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.57668616|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.57688361|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.57689981|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.57759233|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.57760853|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.57885340|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.58757859|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.58759479|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.58761035|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.58886311|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.59102851|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.59249130|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.59316821|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.59586871|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.60048938|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.60443482|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.60798546|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.61759766|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.61764658|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.61961671|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.61963291|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.62108752|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.62110436|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.62112056|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.62482494|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.62599655|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.62601275|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.63171350|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.63237143|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.63238827|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.64125244|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.64126832|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.64527637|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.64765592|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.64922623|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.64924211|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.65113653|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.66227682|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.66237848|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.66531208|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.66582448|2|2 +1.3.6.1.2.1.47.1.3.2.1.2.5456057.0|6|1.3.6.1.2.1.2.2.1.1.31 +1.3.6.1.2.1.47.1.3.2.1.2.5457613.0|6|1.3.6.1.2.1.2.2.1.1.27 +1.3.6.1.2.1.47.1.3.2.1.2.5460821.0|6|1.3.6.1.2.1.2.2.1.1.35 +1.3.6.1.2.1.47.1.3.2.1.2.5607998.0|6|1.3.6.1.2.1.2.2.1.1.39 +1.3.6.1.2.1.47.1.3.2.1.2.5955364.0|6|1.3.6.1.2.1.2.2.1.1.23 +1.3.6.1.2.1.47.1.3.2.1.2.8555060.0|6|1.3.6.1.2.1.2.2.1.1.43 +1.3.6.1.2.1.47.1.3.2.1.2.8773284.0|6|1.3.6.1.2.1.2.2.1.1.18 +1.3.6.1.2.1.47.1.3.2.1.2.11426991.0|6|1.3.6.1.2.1.2.2.1.1.1073741826 +1.3.6.1.2.1.47.1.3.2.1.2.11630420.0|6|1.3.6.1.2.1.2.2.1.1.1073741832 +1.3.6.1.2.1.47.1.3.2.1.2.11632104.0|6|1.3.6.1.2.1.2.2.1.1.1073741836 +1.3.6.1.2.1.47.1.3.2.1.2.11779185.0|6|1.3.6.1.2.1.2.2.1.1.1073741846 +1.3.6.1.2.1.47.1.3.2.1.2.11780741.0|6|1.3.6.1.2.1.2.2.1.1.1073741842 +1.3.6.1.2.1.47.1.3.2.1.2.22233606.0|6|1.3.6.1.2.1.2.2.1.1.32 +1.3.6.1.2.1.47.1.3.2.1.2.22235226.0|6|1.3.6.1.2.1.2.2.1.1.28 +1.3.6.1.2.1.47.1.3.2.1.2.22238498.0|6|1.3.6.1.2.1.2.2.1.1.36 +1.3.6.1.2.1.47.1.3.2.1.2.22383991.0|6|1.3.6.1.2.1.2.2.1.1.38 +1.3.6.1.2.1.47.1.3.2.1.2.22731389.0|6|1.3.6.1.2.1.2.2.1.1.26 +1.3.6.1.2.1.47.1.3.2.1.2.22732977.0|6|1.3.6.1.2.1.2.2.1.1.22 +1.3.6.1.2.1.47.1.3.2.1.2.25332609.0|6|1.3.6.1.2.1.2.2.1.1.42 +1.3.6.1.2.1.47.1.3.2.1.2.25550897.0|6|1.3.6.1.2.1.2.2.1.1.19 +1.3.6.1.2.1.47.1.3.2.1.2.28204604.0|6|1.3.6.1.2.1.2.2.1.1.1073741849 +1.3.6.1.2.1.47.1.3.2.1.2.28404825.0|6|1.3.6.1.2.1.2.2.1.1.1073741837 +1.3.6.1.2.1.47.1.3.2.1.2.28408097.0|6|1.3.6.1.2.1.2.2.1.1.1073741829 +1.3.6.1.2.1.47.1.3.2.1.2.28409717.0|6|1.3.6.1.2.1.2.2.1.1.1073741833 +1.3.6.1.2.1.47.1.3.2.1.2.28556766.0|6|1.3.6.1.2.1.2.2.1.1.1073741845 +1.3.6.1.2.1.47.1.3.2.1.2.28558354.0|6|1.3.6.1.2.1.2.2.1.1.1073741841 +1.3.6.1.2.1.47.1.3.2.1.2.39009631.0|6|1.3.6.1.2.1.2.2.1.1.33 +1.3.6.1.2.1.47.1.3.2.1.2.39011219.0|6|1.3.6.1.2.1.2.2.1.1.29 +1.3.6.1.2.1.47.1.3.2.1.2.39161540.0|6|1.3.6.1.2.1.2.2.1.1.37 +1.3.6.1.2.1.47.1.3.2.1.2.39163160.0|6|1.3.6.1.2.1.2.2.1.1.41 +1.3.6.1.2.1.47.1.3.2.1.2.39508938.0|6|1.3.6.1.2.1.2.2.1.1.25 +1.3.6.1.2.1.47.1.3.2.1.2.42108634.0|6|1.3.6.1.2.1.2.2.1.1.45 +1.3.6.1.2.1.47.1.3.2.1.2.42328478.0|6|1.3.6.1.2.1.2.2.1.1.20 +1.3.6.1.2.1.47.1.3.2.1.2.44982153.0|6|1.3.6.1.2.1.2.2.1.1.4 +1.3.6.1.2.1.47.1.3.2.1.2.44987045.0|6|1.3.6.1.2.1.2.2.1.1.1073741828 +1.3.6.1.2.1.47.1.3.2.1.2.45182502.0|6|1.3.6.1.2.1.2.2.1.1.1073741838 +1.3.6.1.2.1.47.1.3.2.1.2.45185678.0|6|1.3.6.1.2.1.2.2.1.1.1073741830 +1.3.6.1.2.1.47.1.3.2.1.2.45187266.0|6|1.3.6.1.2.1.2.2.1.1.1073741834 +1.3.6.1.2.1.47.1.3.2.1.2.45331139.0|6|1.3.6.1.2.1.2.2.1.1.1073741848 +1.3.6.1.2.1.47.1.3.2.1.2.45332759.0|6|1.3.6.1.2.1.2.2.1.1.1073741844 +1.3.6.1.2.1.47.1.3.2.1.2.45334443.0|6|1.3.6.1.2.1.2.2.1.1.1073741840 +1.3.6.1.2.1.47.1.3.2.1.2.55787308.0|6|1.3.6.1.2.1.2.2.1.1.34 +1.3.6.1.2.1.47.1.3.2.1.2.55788896.0|6|1.3.6.1.2.1.2.2.1.1.30 +1.3.6.1.2.1.47.1.3.2.1.2.55939153.0|6|1.3.6.1.2.1.2.2.1.1.40 +1.3.6.1.2.1.47.1.3.2.1.2.56286551.0|6|1.3.6.1.2.1.2.2.1.1.24 +1.3.6.1.2.1.47.1.3.2.1.2.58886311.0|6|1.3.6.1.2.1.2.2.1.1.44 +1.3.6.1.2.1.47.1.3.2.1.2.59102851.0|6|1.3.6.1.2.1.2.2.1.1.21 +1.3.6.1.2.1.47.1.3.2.1.2.61759766.0|6|1.3.6.1.2.1.2.2.1.1.3 +1.3.6.1.2.1.47.1.3.2.1.2.61764658.0|6|1.3.6.1.2.1.2.2.1.1.1073741827 +1.3.6.1.2.1.47.1.3.2.1.2.61961671.0|6|1.3.6.1.2.1.2.2.1.1.1073741831 +1.3.6.1.2.1.47.1.3.2.1.2.61963291.0|6|1.3.6.1.2.1.2.2.1.1.1073741835 +1.3.6.1.2.1.47.1.3.2.1.2.62108752.0|6|1.3.6.1.2.1.2.2.1.1.1073741847 +1.3.6.1.2.1.47.1.3.2.1.2.62110436.0|6|1.3.6.1.2.1.2.2.1.1.1073741843 +1.3.6.1.2.1.47.1.3.2.1.2.62112056.0|6|1.3.6.1.2.1.2.2.1.1.1073741839 +1.3.6.1.2.1.131.1.1.1.1.2237736|4| +1.3.6.1.2.1.131.1.1.1.2.2237736|2|1 +1.3.6.1.2.1.131.1.1.1.2.5225733|2|1 +1.3.6.1.2.1.131.1.1.1.2.14585855|2|4 +1.3.6.1.2.1.131.1.1.1.2.15526104|2|4 +1.3.6.1.2.1.131.1.1.1.2.18788073|2|1 +1.3.6.1.2.1.131.1.1.1.2.19750579|2|1 +1.3.6.1.2.1.131.1.1.1.2.24555730|2|4 +1.3.6.1.2.1.131.1.1.1.2.30054631|2|4 +1.3.6.1.2.1.131.1.1.1.2.31415605|2|4 +1.3.6.1.2.1.131.1.1.1.2.37336673|2|4 +1.3.6.1.2.1.131.1.1.1.2.38645760|2|4 +1.3.6.1.2.1.131.1.1.1.2.40912272|2|1 +1.3.6.1.2.1.131.1.1.1.2.49125802|2|4 +1.3.6.1.2.1.131.1.1.1.2.52690955|2|1 +1.3.6.1.2.1.131.1.1.1.2.53899162|2|1 +1.3.6.1.2.1.131.1.1.1.2.62482494|2|4 +1.3.6.1.2.1.131.1.1.1.2.66227682|2|4 +1.3.6.1.2.1.131.1.1.1.3.2237736|2|1 +1.3.6.1.2.1.131.1.1.1.3.5225733|2|2 +1.3.6.1.2.1.131.1.1.1.3.14585855|2|3 +1.3.6.1.2.1.131.1.1.1.3.15526104|2|3 +1.3.6.1.2.1.131.1.1.1.3.18788073|2|2 +1.3.6.1.2.1.131.1.1.1.3.19750579|2|1 +1.3.6.1.2.1.131.1.1.1.3.24555730|2|3 +1.3.6.1.2.1.131.1.1.1.3.30054631|2|3 +1.3.6.1.2.1.131.1.1.1.3.31415605|2|3 +1.3.6.1.2.1.131.1.1.1.3.37336673|2|3 +1.3.6.1.2.1.131.1.1.1.3.38645760|2|3 +1.3.6.1.2.1.131.1.1.1.3.40912272|2|1 +1.3.6.1.2.1.131.1.1.1.3.49125802|2|3 +1.3.6.1.2.1.131.1.1.1.3.52690955|2|2 +1.3.6.1.2.1.131.1.1.1.3.53899162|2|1 +1.3.6.1.2.1.131.1.1.1.3.62482494|2|3 +1.3.6.1.2.1.131.1.1.1.3.66227682|2|3 +1.3.6.1.2.1.131.1.1.1.4.2237736|2|1 +1.3.6.1.2.1.131.1.1.1.4.5225733|2|1 +1.3.6.1.2.1.131.1.1.1.4.14585855|2|1 +1.3.6.1.2.1.131.1.1.1.4.15526104|2|1 +1.3.6.1.2.1.131.1.1.1.4.18788073|2|1 +1.3.6.1.2.1.131.1.1.1.4.19750579|2|1 +1.3.6.1.2.1.131.1.1.1.4.24555730|2|1 +1.3.6.1.2.1.131.1.1.1.4.30054631|2|1 +1.3.6.1.2.1.131.1.1.1.4.31415605|2|1 +1.3.6.1.2.1.131.1.1.1.4.37336673|2|1 +1.3.6.1.2.1.131.1.1.1.4.38645760|2|1 +1.3.6.1.2.1.131.1.1.1.4.40912272|2|1 +1.3.6.1.2.1.131.1.1.1.4.49125802|2|1 +1.3.6.1.2.1.131.1.1.1.4.52690955|2|1 +1.3.6.1.2.1.131.1.1.1.4.53899162|2|1 +1.3.6.1.2.1.131.1.1.1.4.62482494|2|1 +1.3.6.1.2.1.131.1.1.1.4.66227682|2|1 +1.3.6.1.2.1.131.1.1.1.5.2237736|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.5225733|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.14585855|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.15526104|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.18788073|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.19750579|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.24555730|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.30054631|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.31415605|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.37336673|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.38645760|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.40912272|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.49125802|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.52690955|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.53899162|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.62482494|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.66227682|4|80 0 +1.3.6.1.2.1.131.1.1.1.6.2237736|2|1 +1.3.6.1.2.1.131.1.1.1.6.5225733|2|1 +1.3.6.1.2.1.131.1.1.1.6.14585855|2|1 +1.3.6.1.2.1.131.1.1.1.6.15526104|2|1 +1.3.6.1.2.1.131.1.1.1.6.18788073|2|1 +1.3.6.1.2.1.131.1.1.1.6.19750579|2|1 +1.3.6.1.2.1.131.1.1.1.6.24555730|2|1 +1.3.6.1.2.1.131.1.1.1.6.30054631|2|1 +1.3.6.1.2.1.131.1.1.1.6.31415605|2|1 +1.3.6.1.2.1.131.1.1.1.6.37336673|2|1 +1.3.6.1.2.1.131.1.1.1.6.38645760|2|1 +1.3.6.1.2.1.131.1.1.1.6.40912272|2|1 +1.3.6.1.2.1.131.1.1.1.6.49125802|2|1 +1.3.6.1.2.1.131.1.1.1.6.52690955|2|4 +1.3.6.1.2.1.131.1.1.1.6.53899162|2|1 +1.3.6.1.2.1.131.1.1.1.6.62482494|2|1 +1.3.6.1.2.1.131.1.1.1.6.66227682|2|1 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.172193|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.319242|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.320862|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.322450|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.1930929|2|5 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2559673|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2561229|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.3355929|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.6762374|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.6763994|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.6836438|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.6838122|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.7335745|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.7337365|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.7429666|2|6 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.8426608|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.8428164|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.8429784|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.8916259|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.9714479|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.9716067|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.12905956|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.12907576|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.13795549|2|5 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.13805629|2|10 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.14591308|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.14592896|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.14780750|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.14782338|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.15177601|2|10 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.15858003|2|6 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.16249545|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.16251165|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.16949774|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.17096855|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.17098539|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.17977066|2|10 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.18708510|2|6 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.19337222|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.19338842|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.19441360|2|10 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.20133606|2|6 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.23538399|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.23539987|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.23541671|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.23612527|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.23614115|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.23615735|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.24113454|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.24115042|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.24205691|2|6 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.25205777|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.25207461|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.25693872|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.26493680|2|6 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.28595820|2|10 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.29680361|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.29683569|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.29685125|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.30573226|2|6 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.31368921|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.31370605|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.31373813|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.31558363|2|5 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.32635680|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.33027158|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.33028842|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.33874532|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.33876152|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.35064942|2|10 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.35484503|2|6 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.36113247|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.36114835|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.36118139|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.40316076|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.40317664|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.40319284|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.40390140|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.40391728|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.40393284|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.40886175|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.40889447|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.40891067|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.40983240|2|5 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.41983486|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.41985074|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.42471453|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.43271261|2|6 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.44949055|2|10 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.46324915|2|10 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.46457974|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.46461150|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.46462738|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.47349219|2|6 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.48146598|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.48148218|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.48151362|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.48336040|2|6 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.49413261|2|5 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.49803247|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.49804835|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.50514562|2|10 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.50650557|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.50652145|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.50653701|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.50864446|2|10 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.52262180|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.52890924|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.52892512|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.52895688|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.53442901|2|10 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.53687180|2|5 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.56880003|2|10 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.57093689|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.57095245|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.57167689|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.57169309|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.57269142|2|10 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.57663852|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.57667060|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.57668616|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.57759233|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.57760853|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.58757859|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.58759479|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.58761035|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.59249130|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.60048938|2|5 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.63237143|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.63238827|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.64125244|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.64126832|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.64922623|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.64924211|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.65113653|2|6 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.66237848|2|10 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.66582448|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.172193|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.319242|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.320862|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.322450|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.1930929|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2559673|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2561229|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.3355929|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.6762374|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.6763994|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.6836438|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.6838122|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.7335745|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.7337365|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.7429666|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.8426608|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.8428164|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.8429784|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.8916259|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.9714479|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.9716067|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.12905956|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.12907576|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.13795549|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.13805629|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.14591308|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.14592896|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.14780750|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.14782338|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.15177601|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.15858003|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.16249545|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.16251165|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.16949774|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.17096855|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.17098539|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.17977066|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.18708510|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.19337222|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.19338842|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.19441360|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.20133606|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.23538399|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.23539987|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.23541671|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.23612527|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.23614115|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.23615735|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.24113454|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.24115042|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.24205691|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.25205777|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.25207461|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.25693872|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.26493680|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.28595820|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.29680361|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.29683569|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.29685125|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.30573226|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.31368921|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.31370605|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.31373813|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.31558363|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.32635680|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.33027158|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.33028842|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.33874532|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.33876152|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.35064942|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.35484503|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.36113247|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.36114835|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.36118139|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.40316076|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.40317664|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.40319284|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.40390140|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.40391728|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.40393284|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.40886175|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.40889447|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.40891067|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.40983240|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.41983486|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.41985074|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.42471453|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.43271261|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.44949055|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.46324915|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.46457974|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.46461150|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.46462738|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.47349219|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.48146598|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.48148218|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.48151362|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.48336040|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.49413261|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.49803247|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.49804835|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.50514562|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.50650557|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.50652145|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.50653701|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.50864446|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.52262180|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.52890924|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.52892512|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.52895688|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.53442901|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.53687180|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.56880003|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.57093689|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.57095245|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.57167689|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.57169309|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.57269142|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.57663852|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.57667060|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.57668616|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.57759233|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.57760853|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.58757859|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.58759479|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.58761035|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.59249130|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.60048938|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.63237143|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.63238827|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.64125244|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.64126832|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.64922623|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.64924211|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.65113653|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.66237848|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.66582448|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.172193|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.319242|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.320862|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.322450|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.1930929|2|1 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2559673|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2561229|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.3355929|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.6762374|2|1 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.6763994|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.6836438|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.6838122|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.7335745|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.7337365|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.7429666|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.8426608|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.8428164|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.8429784|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.8916259|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.9714479|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.9716067|2|1 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.12905956|2|1 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.12907576|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.13795549|2|1 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.13805629|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.14591308|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.14592896|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.14780750|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.14782338|2|1 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.15177601|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.15858003|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.16249545|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.16251165|2|1 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.16949774|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.17096855|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.17098539|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.17977066|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.18708510|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.19337222|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.19338842|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.19441360|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.20133606|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.23538399|2|1 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.23539987|2|1 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.23541671|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.23612527|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.23614115|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.23615735|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.24113454|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.24115042|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.24205691|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.25205777|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.25207461|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.25693872|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.26493680|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.28595820|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.29680361|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.29683569|2|1 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.29685125|2|1 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.30573226|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.31368921|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.31370605|2|1 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.31373813|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.31558363|2|1 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.32635680|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.33027158|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.33028842|2|1 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.33874532|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.33876152|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.35064942|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.35484503|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.36113247|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.36114835|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.36118139|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.40316076|2|1 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.40317664|2|1 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.40319284|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.40390140|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.40391728|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.40393284|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.40886175|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.40889447|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.40891067|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.40983240|2|1 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.41983486|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.41985074|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.42471453|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.43271261|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.44949055|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.46324915|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.46457974|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.46461150|2|1 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.46462738|2|1 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.47349219|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.48146598|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.48148218|2|1 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.48151362|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.48336040|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.49413261|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.49803247|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.49804835|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.50514562|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.50650557|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.50652145|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.50653701|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.50864446|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.52262180|2|1 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.52890924|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.52892512|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.52895688|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.53442901|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.53687180|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.56880003|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.57093689|2|1 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.57095245|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.57167689|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.57169309|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.57269142|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.57663852|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.57667060|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.57668616|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.57759233|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.57760853|2|1 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.58757859|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.58759479|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.58761035|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.59249130|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.60048938|2|1 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.63237143|2|1 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.63238827|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.64125244|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.64126832|2|1 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.64922623|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.64924211|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.65113653|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.66237848|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.66582448|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.172193|2|3299 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.319242|2|3299 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.320862|2|1799 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.322450|2|1899 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.1930929|2|305 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2559673|2|1499 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2561229|2|1800 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.3355929|2|12156 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.6762374|2|305 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.6763994|2|1200 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.6836438|2|900 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.6838122|2|1799 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.7335745|2|3300 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.7337365|2|5000 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.7429666|2|3555 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.8426608|2|2500 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.8428164|2|910 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.8429784|2|999 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.8916259|2|1000 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.9714479|2|-32768 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.9716067|2|-32768 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.12905956|2|363 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.12907576|2|3300 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.13795549|2|329 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.13805629|2|7680 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.14591308|2|1199 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.14592896|2|900 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.14780750|2|3264 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.14782338|2|323 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.15177601|2|7680 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.15858003|2|750 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.16249545|2|3299 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.16251165|2|231 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.16949774|2|5000 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.17096855|2|11996 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.17098539|2|1199 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.17977066|2|7440 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.18708510|2|5847 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.19337222|2|1500 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.19338842|2|2500 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.19441360|2|7470 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.20133606|2|750 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.23538399|2|369 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.23539987|2|391 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.23541671|2|999 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.23612527|2|1199 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.23614115|2|1000 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.23615735|2|1199 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.24113454|2|1500 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.24115042|2|749 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.24205691|2|3058 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.25205777|2|3299 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.25207461|2|1000 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.25693872|2|999 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.26493680|2|-32768 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.28595820|2|7620 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.29680361|2|1499 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.29683569|2|213 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.29685125|2|380 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.30573226|2|11274 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.31368921|2|1199 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.31370605|2|290 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.31373813|2|4999 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.31558363|2|305 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.32635680|2|12156 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.33027158|2|1200 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.33028842|2|273 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.33874532|2|7000 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.33876152|2|1000 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.35064942|2|7110 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.35484503|2|6684 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.36113247|2|1499 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.36114835|2|2500 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.36118139|2|1049 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.40316076|2|317 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.40317664|2|368 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.40319284|2|1799 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.40390140|2|1200 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.40391728|2|999 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.40393284|2|1000 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.40886175|2|7000 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.40889447|2|2499 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.40891067|2|999 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.40983240|2|244 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.41983486|2|1199 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.41985074|2|1000 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.42471453|2|1000 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.43271261|2|-32768 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.44949055|2|7680 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.46324915|2|7020 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.46457974|2|1799 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.46461150|2|239 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.46462738|2|379 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.47349219|2|7594 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.48146598|2|3300 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.48148218|2|265 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.48151362|2|2499 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.48336040|2|2751 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.49413261|2|14125 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.49803247|2|1199 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.49804835|2|11862 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.50514562|2|7590 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.50650557|2|751 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.50652145|2|1000 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.50653701|2|1199 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.50864446|2|9390 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.52262180|2|185 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.52890924|2|1799 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.52892512|2|3300 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.52895688|2|1199 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.53442901|2|7500 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.53687180|2|13500 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.56880003|2|7500 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.57093689|2|405 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.57095245|2|999 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.57167689|2|900 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.57169309|2|1000 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.57269142|2|7410 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.57663852|2|3300 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.57667060|2|3300 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.57668616|2|1799 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.57759233|2|3340 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.57760853|2|160 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.58757859|2|1000 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.58759479|2|910 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.58761035|2|1000 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.59249130|2|1500 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.60048938|2|-32768 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.63237143|2|277 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.63238827|2|2500 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.64125244|2|3223 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.64126832|2|308 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.64922623|2|1799 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.64924211|2|899 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.65113653|2|6148 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.66237848|2|7470 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.66582448|2|3272 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.172193|2|52690955 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.319242|2|52690955 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.320862|2|52690955 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.322450|2|52690955 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.1930929|2|37336673 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2559673|2|5225733 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2561229|2|5225733 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.3355929|2|19750579 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.6762374|2|18788073 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.6763994|2|18788073 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.6836438|2|18788073 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.6838122|2|18788073 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.7335745|2|18788073 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.7337365|2|18788073 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.7429666|2|66227682 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.8426608|2|5225733 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.8428164|2|5225733 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.8429784|2|5225733 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.8916259|2|5225733 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.9714479|2|15526104 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.9716067|2|15526104 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.12905956|2|52690955 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.12907576|2|52690955 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.13795549|2|31415605 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.13805629|2|7358666 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.14591308|2|14585855 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.14592896|2|14585855 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.14780750|2|30054631 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.14782338|2|30054631 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.15177601|2|7357110 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.15858003|2|2237736 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.16249545|2|49125802 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.16251165|2|49125802 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.16949774|2|52690955 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.17096855|2|52690955 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.17098539|2|52690955 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.17977066|2|24133071 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.18708510|2|37336673 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.19337222|2|5225733 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.19338842|2|5225733 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.19441360|2|29047573 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.20133606|2|19750579 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.23538399|2|18788073 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.23539987|2|18788073 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.23541671|2|18788073 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.23612527|2|18788073 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.23614115|2|18788073 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.23615735|2|18788073 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.24113454|2|18788073 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.24115042|2|18788073 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.24205691|2|66227682 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.25205777|2|5225733 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.25207461|2|5225733 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.25693872|2|5225733 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.26493680|2|15526104 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.28595820|2|57688361 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.29680361|2|52690955 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.29683569|2|52690955 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.29685125|2|52690955 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.30573226|2|31415605 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.31368921|2|14585855 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.31370605|2|14585855 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.31373813|2|14585855 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.31558363|2|30054631 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.32635680|2|2237736 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.33027158|2|49125802 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.33028842|2|49125802 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.33874532|2|52690955 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.33876152|2|52690955 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.35064942|2|62601275 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.35484503|2|37336673 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.36113247|2|5225733 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.36114835|2|5225733 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.36118139|2|5225733 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.40316076|2|18788073 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.40317664|2|18788073 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.40319284|2|18788073 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.40390140|2|18788073 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.40391728|2|18788073 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.40393284|2|18788073 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.40886175|2|18788073 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.40889447|2|18788073 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.40891067|2|18788073 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.40983240|2|66227682 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.41983486|2|5225733 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.41985074|2|5225733 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.42471453|2|5225733 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.43271261|2|15526104 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.44949055|2|40910684 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.46324915|2|12269960 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.46457974|2|52690955 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.46461150|2|52690955 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.46462738|2|52690955 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.47349219|2|31415605 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.48146598|2|14585855 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.48148218|2|14585855 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.48151362|2|14585855 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.48336040|2|30054631 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.49413261|2|2237736 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.49803247|2|49125802 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.49804835|2|49125802 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.50514562|2|62599655 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.50650557|2|52690955 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.50652145|2|52690955 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.50653701|2|52690955 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.50864446|2|24137963 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.52262180|2|37336673 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.52890924|2|5225733 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.52892512|2|5225733 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.52895688|2|5225733 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.53442901|2|45825250 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.53687180|2|19750579 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.56880003|2|40915576 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.57093689|2|18788073 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.57095245|2|18788073 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.57167689|2|18788073 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.57169309|2|18788073 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.57269142|2|24134659 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.57663852|2|18788073 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.57667060|2|18788073 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.57668616|2|18788073 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.57759233|2|66227682 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.57760853|2|66227682 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.58757859|2|5225733 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.58759479|2|5225733 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.58761035|2|5225733 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.59249130|2|5225733 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.60048938|2|15526104 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.63237143|2|52690955 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.63238827|2|52690955 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.64125244|2|31415605 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.64126832|2|31415605 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.64922623|2|14585855 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.64924211|2|14585855 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.65113653|2|30054631 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.66237848|2|57689981 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.66582448|2|49125802 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.172193.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.172193.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.172193.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.172193.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.172193.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.172193.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.319242.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.319242.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.319242.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.319242.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.319242.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.319242.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.320862.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.320862.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.320862.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.320862.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.320862.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.320862.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.322450.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.322450.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.322450.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.322450.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.322450.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.322450.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.1930929.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.1930929.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.1930929.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.1930929.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.1930929.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.1930929.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2559673.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2559673.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2559673.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2559673.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2559673.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2559673.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2561229.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2561229.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2561229.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2561229.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2561229.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2561229.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3355929.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3355929.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3355929.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3355929.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3355929.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3355929.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.6762374.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.6762374.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.6762374.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.6762374.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.6762374.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.6762374.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.6763994.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.6763994.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.6763994.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.6763994.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.6763994.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.6763994.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.6836438.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.6836438.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.6836438.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.6836438.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.6836438.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.6836438.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.6838122.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.6838122.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.6838122.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.6838122.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.6838122.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.6838122.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.7335745.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.7335745.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.7335745.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.7335745.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.7335745.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.7335745.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.7337365.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.7337365.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.7337365.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.7337365.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.7337365.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.7337365.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.7429666.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.7429666.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.7429666.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.7429666.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.7429666.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.7429666.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8426608.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8426608.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8426608.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8426608.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8426608.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8426608.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8428164.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8428164.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8428164.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8428164.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8428164.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8428164.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8429784.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8429784.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8429784.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8429784.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8429784.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8429784.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8916259.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8916259.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8916259.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8916259.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8916259.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8916259.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.9714479.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.9714479.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.9714479.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.9714479.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.9714479.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.9714479.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.9716067.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.9716067.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.9716067.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.9716067.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.9716067.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.9716067.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.12905956.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.12905956.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.12905956.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.12905956.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.12905956.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.12905956.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.12907576.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.12907576.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.12907576.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.12907576.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.12907576.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.12907576.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.13795549.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.13795549.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.13795549.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.13795549.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.13795549.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.13795549.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.13805629.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.13805629.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.13805629.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.13805629.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.13805629.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.13805629.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.14591308.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.14591308.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.14591308.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.14591308.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.14591308.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.14591308.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.14592896.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.14592896.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.14592896.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.14592896.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.14592896.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.14592896.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.14780750.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.14780750.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.14780750.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.14780750.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.14780750.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.14780750.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.14782338.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.14782338.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.14782338.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.14782338.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.14782338.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.14782338.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.15177601.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.15177601.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.15177601.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.15177601.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.15177601.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.15177601.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.15858003.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.15858003.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.15858003.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.15858003.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.15858003.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.15858003.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.16249545.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.16249545.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.16249545.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.16249545.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.16249545.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.16249545.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.16251165.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.16251165.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.16251165.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.16251165.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.16251165.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.16251165.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.16949774.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.16949774.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.16949774.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.16949774.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.16949774.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.16949774.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.17096855.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.17096855.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.17096855.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.17096855.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.17096855.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.17096855.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.17098539.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.17098539.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.17098539.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.17098539.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.17098539.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.17098539.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.17977066.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.17977066.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.17977066.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.17977066.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.17977066.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.17977066.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.18708510.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.18708510.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.18708510.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.18708510.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.18708510.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.18708510.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.19337222.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.19337222.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.19337222.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.19337222.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.19337222.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.19337222.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.19338842.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.19338842.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.19338842.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.19338842.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.19338842.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.19338842.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.19441360.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.19441360.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.19441360.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.19441360.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.19441360.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.19441360.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.20133606.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.20133606.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.20133606.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.20133606.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.20133606.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.20133606.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.23538399.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.23538399.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.23538399.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.23538399.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.23538399.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.23538399.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.23539987.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.23539987.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.23539987.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.23539987.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.23539987.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.23539987.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.23541671.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.23541671.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.23541671.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.23541671.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.23541671.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.23541671.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.23612527.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.23612527.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.23612527.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.23612527.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.23612527.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.23612527.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.23614115.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.23614115.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.23614115.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.23614115.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.23614115.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.23614115.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.23615735.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.23615735.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.23615735.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.23615735.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.23615735.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.23615735.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.24113454.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.24113454.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.24113454.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.24113454.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.24113454.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.24113454.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.24115042.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.24115042.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.24115042.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.24115042.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.24115042.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.24115042.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.24205691.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.24205691.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.24205691.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.24205691.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.24205691.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.24205691.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.25205777.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.25205777.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.25205777.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.25205777.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.25205777.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.25205777.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.25207461.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.25207461.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.25207461.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.25207461.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.25207461.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.25207461.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.25693872.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.25693872.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.25693872.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.25693872.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.25693872.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.25693872.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.26493680.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.26493680.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.26493680.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.26493680.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.26493680.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.26493680.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.28595820.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.28595820.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.28595820.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.28595820.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.28595820.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.28595820.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.29680361.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.29680361.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.29680361.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.29680361.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.29680361.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.29680361.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.29683569.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.29683569.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.29683569.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.29683569.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.29683569.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.29683569.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.29685125.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.29685125.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.29685125.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.29685125.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.29685125.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.29685125.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.30573226.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.30573226.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.30573226.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.30573226.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.30573226.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.30573226.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.31368921.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.31368921.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.31368921.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.31368921.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.31368921.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.31368921.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.31370605.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.31370605.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.31370605.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.31370605.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.31370605.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.31370605.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.31373813.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.31373813.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.31373813.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.31373813.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.31373813.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.31373813.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.31558363.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.31558363.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.31558363.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.31558363.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.31558363.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.31558363.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.32635680.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.32635680.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.32635680.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.32635680.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.32635680.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.32635680.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.33027158.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.33027158.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.33027158.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.33027158.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.33027158.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.33027158.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.33028842.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.33028842.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.33028842.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.33028842.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.33028842.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.33028842.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.33874532.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.33874532.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.33874532.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.33874532.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.33874532.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.33874532.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.33876152.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.33876152.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.33876152.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.33876152.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.33876152.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.33876152.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.35064942.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.35064942.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.35064942.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.35064942.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.35064942.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.35064942.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.35484503.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.35484503.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.35484503.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.35484503.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.35484503.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.35484503.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.36113247.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.36113247.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.36113247.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.36113247.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.36113247.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.36113247.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.36114835.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.36114835.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.36114835.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.36114835.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.36114835.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.36114835.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.36118139.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.36118139.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.36118139.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.36118139.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.36118139.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.36118139.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40316076.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40316076.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40316076.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40316076.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40316076.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40316076.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40317664.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40317664.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40317664.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40317664.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40317664.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40317664.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40319284.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40319284.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40319284.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40319284.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40319284.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40319284.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40390140.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40390140.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40390140.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40390140.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40390140.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40390140.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40391728.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40391728.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40391728.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40391728.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40391728.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40391728.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40393284.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40393284.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40393284.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40393284.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40393284.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40393284.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40886175.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40886175.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40886175.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40886175.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40886175.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40886175.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40889447.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40889447.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40889447.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40889447.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40889447.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40889447.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40891067.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40891067.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40891067.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40891067.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40891067.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40891067.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40983240.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40983240.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40983240.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40983240.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40983240.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.40983240.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.41983486.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.41983486.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.41983486.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.41983486.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.41983486.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.41983486.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.41985074.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.41985074.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.41985074.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.41985074.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.41985074.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.41985074.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.42471453.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.42471453.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.42471453.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.42471453.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.42471453.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.42471453.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.43271261.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.43271261.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.43271261.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.43271261.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.43271261.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.43271261.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.44949055.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.44949055.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.44949055.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.44949055.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.44949055.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.44949055.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.46324915.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.46324915.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.46324915.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.46324915.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.46324915.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.46324915.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.46457974.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.46457974.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.46457974.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.46457974.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.46457974.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.46457974.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.46461150.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.46461150.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.46461150.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.46461150.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.46461150.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.46461150.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.46462738.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.46462738.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.46462738.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.46462738.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.46462738.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.46462738.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.47349219.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.47349219.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.47349219.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.47349219.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.47349219.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.47349219.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.48146598.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.48146598.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.48146598.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.48146598.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.48146598.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.48146598.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.48148218.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.48148218.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.48148218.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.48148218.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.48148218.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.48148218.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.48151362.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.48151362.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.48151362.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.48151362.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.48151362.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.48151362.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.48336040.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.48336040.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.48336040.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.48336040.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.48336040.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.48336040.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.49413261.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.49413261.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.49413261.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.49413261.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.49413261.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.49413261.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.49803247.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.49803247.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.49803247.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.49803247.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.49803247.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.49803247.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.49804835.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.49804835.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.49804835.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.49804835.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.49804835.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.49804835.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.50514562.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.50514562.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.50514562.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.50514562.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.50514562.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.50514562.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.50650557.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.50650557.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.50650557.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.50650557.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.50650557.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.50650557.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.50652145.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.50652145.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.50652145.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.50652145.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.50652145.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.50652145.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.50653701.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.50653701.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.50653701.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.50653701.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.50653701.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.50653701.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.50864446.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.50864446.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.50864446.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.50864446.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.50864446.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.50864446.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.52262180.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.52262180.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.52262180.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.52262180.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.52262180.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.52262180.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.52890924.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.52890924.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.52890924.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.52890924.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.52890924.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.52890924.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.52892512.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.52892512.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.52892512.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.52892512.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.52892512.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.52892512.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.52895688.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.52895688.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.52895688.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.52895688.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.52895688.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.52895688.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.53442901.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.53442901.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.53442901.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.53442901.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.53442901.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.53442901.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.53687180.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.53687180.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.53687180.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.53687180.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.53687180.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.53687180.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.56880003.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.56880003.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.56880003.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.56880003.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.56880003.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.56880003.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57093689.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57093689.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57093689.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57093689.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57093689.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57093689.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57095245.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57095245.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57095245.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57095245.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57095245.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57095245.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57167689.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57167689.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57167689.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57167689.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57167689.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57167689.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57169309.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57169309.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57169309.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57169309.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57169309.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57169309.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57269142.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57269142.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57269142.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57269142.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57269142.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57269142.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57663852.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57663852.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57663852.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57663852.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57663852.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57663852.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57667060.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57667060.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57667060.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57667060.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57667060.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57667060.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57668616.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57668616.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57668616.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57668616.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57668616.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57668616.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57759233.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57759233.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57759233.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57759233.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57759233.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57759233.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57760853.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57760853.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57760853.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57760853.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57760853.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.57760853.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.58757859.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.58757859.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.58757859.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.58757859.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.58757859.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.58757859.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.58759479.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.58759479.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.58759479.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.58759479.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.58759479.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.58759479.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.58761035.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.58761035.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.58761035.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.58761035.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.58761035.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.58761035.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.59249130.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.59249130.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.59249130.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.59249130.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.59249130.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.59249130.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.60048938.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.60048938.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.60048938.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.60048938.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.60048938.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.60048938.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.63237143.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.63237143.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.63237143.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.63237143.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.63237143.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.63237143.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.63238827.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.63238827.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.63238827.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.63238827.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.63238827.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.63238827.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.64125244.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.64125244.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.64125244.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.64125244.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.64125244.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.64125244.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.64126832.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.64126832.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.64126832.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.64126832.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.64126832.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.64126832.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.64922623.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.64922623.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.64922623.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.64922623.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.64922623.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.64922623.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.64924211.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.64924211.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.64924211.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.64924211.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.64924211.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.64924211.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.65113653.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.65113653.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.65113653.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.65113653.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.65113653.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.65113653.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.66237848.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.66237848.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.66237848.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.66237848.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.66237848.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.66237848.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.66582448.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.66582448.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.66582448.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.66582448.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.66582448.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.66582448.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.172193.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.172193.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.172193.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.172193.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.172193.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.172193.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.319242.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.319242.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.319242.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.319242.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.319242.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.319242.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.320862.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.320862.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.320862.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.320862.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.320862.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.320862.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.322450.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.322450.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.322450.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.322450.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.322450.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.322450.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.1930929.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.1930929.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.1930929.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.1930929.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.1930929.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.1930929.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2559673.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2559673.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2559673.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2559673.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2559673.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2559673.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2561229.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2561229.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2561229.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2561229.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2561229.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2561229.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3355929.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3355929.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3355929.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3355929.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3355929.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3355929.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.6762374.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.6762374.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.6762374.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.6762374.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.6762374.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.6762374.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.6763994.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.6763994.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.6763994.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.6763994.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.6763994.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.6763994.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.6836438.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.6836438.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.6836438.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.6836438.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.6836438.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.6836438.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.6838122.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.6838122.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.6838122.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.6838122.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.6838122.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.6838122.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.7335745.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.7335745.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.7335745.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.7335745.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.7335745.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.7335745.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.7337365.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.7337365.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.7337365.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.7337365.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.7337365.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.7337365.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.7429666.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.7429666.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.7429666.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.7429666.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.7429666.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.7429666.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8426608.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8426608.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8426608.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8426608.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8426608.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8426608.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8428164.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8428164.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8428164.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8428164.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8428164.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8428164.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8429784.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8429784.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8429784.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8429784.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8429784.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8429784.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8916259.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8916259.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8916259.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8916259.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8916259.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8916259.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.9714479.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.9714479.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.9714479.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.9714479.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.9714479.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.9714479.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.9716067.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.9716067.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.9716067.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.9716067.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.9716067.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.9716067.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.12905956.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.12905956.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.12905956.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.12905956.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.12905956.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.12905956.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.12907576.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.12907576.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.12907576.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.12907576.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.12907576.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.12907576.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.13795549.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.13795549.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.13795549.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.13795549.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.13795549.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.13795549.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.13805629.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.13805629.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.13805629.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.13805629.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.13805629.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.13805629.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.14591308.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.14591308.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.14591308.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.14591308.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.14591308.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.14591308.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.14592896.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.14592896.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.14592896.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.14592896.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.14592896.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.14592896.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.14780750.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.14780750.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.14780750.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.14780750.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.14780750.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.14780750.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.14782338.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.14782338.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.14782338.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.14782338.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.14782338.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.14782338.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.15177601.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.15177601.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.15177601.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.15177601.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.15177601.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.15177601.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.15858003.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.15858003.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.15858003.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.15858003.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.15858003.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.15858003.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.16249545.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.16249545.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.16249545.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.16249545.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.16249545.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.16249545.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.16251165.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.16251165.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.16251165.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.16251165.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.16251165.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.16251165.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.16949774.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.16949774.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.16949774.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.16949774.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.16949774.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.16949774.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.17096855.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.17096855.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.17096855.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.17096855.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.17096855.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.17096855.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.17098539.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.17098539.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.17098539.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.17098539.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.17098539.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.17098539.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.17977066.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.17977066.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.17977066.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.17977066.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.17977066.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.17977066.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.18708510.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.18708510.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.18708510.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.18708510.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.18708510.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.18708510.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.19337222.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.19337222.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.19337222.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.19337222.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.19337222.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.19337222.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.19338842.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.19338842.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.19338842.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.19338842.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.19338842.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.19338842.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.19441360.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.19441360.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.19441360.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.19441360.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.19441360.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.19441360.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.20133606.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.20133606.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.20133606.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.20133606.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.20133606.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.20133606.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.23538399.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.23538399.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.23538399.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.23538399.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.23538399.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.23538399.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.23539987.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.23539987.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.23539987.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.23539987.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.23539987.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.23539987.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.23541671.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.23541671.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.23541671.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.23541671.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.23541671.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.23541671.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.23612527.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.23612527.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.23612527.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.23612527.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.23612527.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.23612527.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.23614115.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.23614115.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.23614115.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.23614115.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.23614115.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.23614115.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.23615735.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.23615735.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.23615735.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.23615735.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.23615735.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.23615735.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.24113454.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.24113454.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.24113454.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.24113454.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.24113454.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.24113454.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.24115042.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.24115042.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.24115042.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.24115042.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.24115042.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.24115042.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.24205691.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.24205691.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.24205691.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.24205691.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.24205691.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.24205691.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.25205777.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.25205777.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.25205777.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.25205777.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.25205777.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.25205777.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.25207461.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.25207461.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.25207461.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.25207461.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.25207461.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.25207461.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.25693872.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.25693872.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.25693872.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.25693872.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.25693872.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.25693872.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.26493680.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.26493680.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.26493680.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.26493680.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.26493680.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.26493680.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.28595820.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.28595820.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.28595820.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.28595820.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.28595820.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.28595820.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.29680361.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.29680361.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.29680361.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.29680361.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.29680361.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.29680361.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.29683569.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.29683569.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.29683569.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.29683569.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.29683569.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.29683569.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.29685125.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.29685125.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.29685125.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.29685125.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.29685125.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.29685125.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.30573226.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.30573226.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.30573226.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.30573226.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.30573226.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.30573226.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.31368921.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.31368921.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.31368921.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.31368921.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.31368921.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.31368921.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.31370605.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.31370605.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.31370605.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.31370605.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.31370605.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.31370605.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.31373813.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.31373813.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.31373813.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.31373813.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.31373813.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.31373813.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.31558363.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.31558363.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.31558363.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.31558363.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.31558363.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.31558363.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.32635680.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.32635680.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.32635680.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.32635680.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.32635680.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.32635680.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.33027158.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.33027158.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.33027158.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.33027158.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.33027158.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.33027158.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.33028842.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.33028842.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.33028842.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.33028842.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.33028842.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.33028842.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.33874532.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.33874532.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.33874532.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.33874532.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.33874532.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.33874532.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.33876152.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.33876152.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.33876152.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.33876152.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.33876152.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.33876152.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.35064942.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.35064942.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.35064942.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.35064942.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.35064942.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.35064942.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.35484503.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.35484503.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.35484503.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.35484503.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.35484503.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.35484503.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.36113247.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.36113247.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.36113247.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.36113247.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.36113247.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.36113247.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.36114835.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.36114835.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.36114835.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.36114835.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.36114835.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.36114835.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.36118139.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.36118139.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.36118139.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.36118139.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.36118139.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.36118139.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40316076.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40316076.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40316076.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40316076.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40316076.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40316076.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40317664.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40317664.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40317664.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40317664.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40317664.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40317664.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40319284.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40319284.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40319284.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40319284.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40319284.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40319284.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40390140.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40390140.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40390140.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40390140.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40390140.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40390140.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40391728.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40391728.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40391728.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40391728.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40391728.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40391728.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40393284.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40393284.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40393284.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40393284.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40393284.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40393284.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40886175.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40886175.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40886175.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40886175.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40886175.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40886175.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40889447.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40889447.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40889447.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40889447.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40889447.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40889447.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40891067.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40891067.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40891067.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40891067.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40891067.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40891067.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40983240.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40983240.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40983240.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40983240.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40983240.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.40983240.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.41983486.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.41983486.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.41983486.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.41983486.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.41983486.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.41983486.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.41985074.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.41985074.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.41985074.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.41985074.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.41985074.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.41985074.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.42471453.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.42471453.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.42471453.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.42471453.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.42471453.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.42471453.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.43271261.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.43271261.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.43271261.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.43271261.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.43271261.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.43271261.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.44949055.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.44949055.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.44949055.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.44949055.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.44949055.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.44949055.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.46324915.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.46324915.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.46324915.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.46324915.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.46324915.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.46324915.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.46457974.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.46457974.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.46457974.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.46457974.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.46457974.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.46457974.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.46461150.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.46461150.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.46461150.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.46461150.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.46461150.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.46461150.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.46462738.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.46462738.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.46462738.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.46462738.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.46462738.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.46462738.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.47349219.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.47349219.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.47349219.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.47349219.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.47349219.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.47349219.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.48146598.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.48146598.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.48146598.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.48146598.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.48146598.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.48146598.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.48148218.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.48148218.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.48148218.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.48148218.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.48148218.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.48148218.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.48151362.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.48151362.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.48151362.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.48151362.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.48151362.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.48151362.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.48336040.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.48336040.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.48336040.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.48336040.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.48336040.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.48336040.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.49413261.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.49413261.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.49413261.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.49413261.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.49413261.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.49413261.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.49803247.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.49803247.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.49803247.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.49803247.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.49803247.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.49803247.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.49804835.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.49804835.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.49804835.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.49804835.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.49804835.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.49804835.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.50514562.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.50514562.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.50514562.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.50514562.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.50514562.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.50514562.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.50650557.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.50650557.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.50650557.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.50650557.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.50650557.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.50650557.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.50652145.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.50652145.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.50652145.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.50652145.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.50652145.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.50652145.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.50653701.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.50653701.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.50653701.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.50653701.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.50653701.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.50653701.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.50864446.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.50864446.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.50864446.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.50864446.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.50864446.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.50864446.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.52262180.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.52262180.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.52262180.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.52262180.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.52262180.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.52262180.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.52890924.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.52890924.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.52890924.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.52890924.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.52890924.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.52890924.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.52892512.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.52892512.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.52892512.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.52892512.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.52892512.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.52892512.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.52895688.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.52895688.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.52895688.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.52895688.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.52895688.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.52895688.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.53442901.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.53442901.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.53442901.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.53442901.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.53442901.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.53442901.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.53687180.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.53687180.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.53687180.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.53687180.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.53687180.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.53687180.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.56880003.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.56880003.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.56880003.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.56880003.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.56880003.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.56880003.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57093689.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57093689.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57093689.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57093689.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57093689.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57093689.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57095245.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57095245.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57095245.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57095245.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57095245.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57095245.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57167689.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57167689.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57167689.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57167689.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57167689.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57167689.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57169309.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57169309.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57169309.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57169309.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57169309.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57169309.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57269142.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57269142.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57269142.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57269142.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57269142.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57269142.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57663852.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57663852.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57663852.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57663852.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57663852.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57663852.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57667060.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57667060.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57667060.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57667060.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57667060.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57667060.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57668616.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57668616.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57668616.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57668616.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57668616.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57668616.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57759233.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57759233.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57759233.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57759233.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57759233.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57759233.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57760853.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57760853.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57760853.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57760853.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57760853.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.57760853.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.58757859.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.58757859.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.58757859.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.58757859.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.58757859.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.58757859.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.58759479.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.58759479.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.58759479.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.58759479.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.58759479.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.58759479.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.58761035.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.58761035.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.58761035.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.58761035.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.58761035.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.58761035.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.59249130.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.59249130.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.59249130.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.59249130.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.59249130.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.59249130.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.60048938.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.60048938.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.60048938.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.60048938.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.60048938.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.60048938.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.63237143.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.63237143.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.63237143.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.63237143.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.63237143.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.63237143.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.63238827.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.63238827.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.63238827.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.63238827.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.63238827.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.63238827.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.64125244.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.64125244.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.64125244.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.64125244.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.64125244.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.64125244.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.64126832.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.64126832.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.64126832.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.64126832.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.64126832.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.64126832.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.64922623.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.64922623.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.64922623.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.64922623.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.64922623.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.64922623.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.64924211.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.64924211.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.64924211.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.64924211.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.64924211.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.64924211.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.65113653.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.65113653.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.65113653.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.65113653.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.65113653.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.65113653.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.66237848.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.66237848.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.66237848.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.66237848.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.66237848.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.66237848.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.66582448.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.66582448.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.66582448.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.66582448.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.66582448.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.66582448.6|2|3 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.172193.1|2|3135 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.172193.2|2|3465 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.172193.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.172193.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.172193.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.172193.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.319242.1|2|3135 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.319242.2|2|3465 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.319242.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.319242.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.319242.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.319242.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.320862.1|2|1710 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.320862.2|2|1890 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.320862.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.320862.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.320862.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.320862.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.322450.1|2|1805 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.322450.2|2|1995 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.322450.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.322450.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.322450.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.322450.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.1930929.1|2|200 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.1930929.2|2|800 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.1930929.3|2|150 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.1930929.4|2|850 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.1930929.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.1930929.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2559673.1|2|1425 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2559673.2|2|1575 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2559673.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2559673.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2559673.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2559673.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2561229.1|2|1710 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2561229.2|2|1890 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2561229.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2561229.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2561229.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2561229.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3355929.1|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3355929.2|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3355929.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3355929.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3355929.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3355929.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.6762374.1|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.6762374.2|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.6762374.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.6762374.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.6762374.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.6762374.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.6763994.1|2|1140 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.6763994.2|2|1260 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.6763994.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.6763994.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.6763994.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.6763994.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.6836438.1|2|855 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.6836438.2|2|945 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.6836438.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.6836438.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.6836438.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.6836438.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.6838122.1|2|1710 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.6838122.2|2|1890 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.6838122.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.6838122.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.6838122.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.6838122.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.7335745.1|2|3135 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.7335745.2|2|3465 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.7335745.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.7335745.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.7335745.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.7335745.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.7337365.1|2|4750 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.7337365.2|2|5250 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.7337365.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.7337365.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.7337365.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.7337365.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.7429666.1|2|1122 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.7429666.2|2|7943 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.7429666.3|2|447 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.7429666.4|2|12589 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.7429666.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.7429666.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8426608.1|2|2375 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8426608.2|2|2625 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8426608.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8426608.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8426608.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8426608.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8428164.1|2|855 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8428164.2|2|945 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8428164.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8428164.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8428164.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8428164.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8429784.1|2|950 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8429784.2|2|1050 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8429784.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8429784.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8429784.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8429784.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8916259.1|2|950 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8916259.2|2|1050 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8916259.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8916259.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8916259.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8916259.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.9714479.1|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.9714479.2|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.9714479.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.9714479.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.9714479.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.9714479.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.9716067.1|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.9716067.2|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.9716067.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.9716067.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.9716067.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.9716067.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.12905956.1|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.12905956.2|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.12905956.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.12905956.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.12905956.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.12905956.6|2|860 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.12907576.1|2|3201 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.12907576.2|2|3399 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.12907576.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.12907576.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.12907576.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.12907576.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.13795549.1|2|120 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.13795549.2|2|800 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.13795549.3|2|100 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.13795549.4|2|850 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.13795549.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.13795549.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.13805629.1|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.13805629.2|2|13780 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.13805629.3|2|6580 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.13805629.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.13805629.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.13805629.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.14591308.1|2|1104 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.14591308.2|2|1296 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.14591308.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.14591308.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.14591308.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.14591308.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.14592896.1|2|828 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.14592896.2|2|972 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.14592896.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.14592896.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.14592896.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.14592896.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.14780750.1|2|3000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.14780750.2|2|3600 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.14780750.3|2|2900 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.14780750.4|2|3700 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.14780750.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.14780750.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.14782338.1|2|-50 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.14782338.2|2|800 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.14782338.3|2|-100 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.14782338.4|2|850 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.14782338.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.14782338.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.15177601.1|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.15177601.2|2|13780 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.15177601.3|2|6580 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.15177601.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.15177601.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.15177601.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.15858003.1|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.15858003.2|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.15858003.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.15858003.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.15858003.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.15858003.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.16249545.1|2|3036 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.16249545.2|2|3564 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.16249545.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.16249545.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.16249545.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.16249545.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.16251165.1|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.16251165.2|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.16251165.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.16251165.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.16251165.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.16251165.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.16949774.1|2|4750 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.16949774.2|2|5250 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.16949774.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.16949774.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.16949774.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.16949774.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.17096855.1|2|11400 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.17096855.2|2|12600 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.17096855.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.17096855.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.17096855.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.17096855.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.17098539.1|2|1140 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.17098539.2|2|1260 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.17098539.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.17098539.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.17098539.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.17098539.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.17977066.1|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.17977066.2|2|13780 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.17977066.3|2|6580 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.17977066.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.17977066.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.17977066.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.18708510.1|2|251 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.18708510.2|2|9994 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.18708510.3|2|158 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.18708510.4|2|12594 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.18708510.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.18708510.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.19337222.1|2|1425 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.19337222.2|2|1575 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.19337222.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.19337222.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.19337222.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.19337222.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.19338842.1|2|2375 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.19338842.2|2|2625 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.19338842.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.19338842.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.19338842.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.19338842.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.19441360.1|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.19441360.2|2|13780 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.19441360.3|2|6580 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.19441360.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.19441360.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.19441360.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.20133606.1|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.20133606.2|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.20133606.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.20133606.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.20133606.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.20133606.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.23538399.1|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.23538399.2|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.23538399.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.23538399.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.23538399.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.23538399.6|2|860 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.23539987.1|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.23539987.2|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.23539987.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.23539987.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.23539987.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.23539987.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.23541671.1|2|950 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.23541671.2|2|1050 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.23541671.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.23541671.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.23541671.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.23541671.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.23612527.1|2|1140 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.23612527.2|2|1260 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.23612527.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.23612527.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.23612527.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.23612527.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.23614115.1|2|950 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.23614115.2|2|1050 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.23614115.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.23614115.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.23614115.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.23614115.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.23615735.1|2|1140 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.23615735.2|2|1260 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.23615735.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.23615735.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.23615735.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.23615735.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.24113454.1|2|1425 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.24113454.2|2|1575 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.24113454.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.24113454.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.24113454.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.24113454.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.24115042.1|2|712 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.24115042.2|2|788 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.24115042.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.24115042.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.24115042.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.24115042.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.24205691.1|2|126 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.24205691.2|2|5012 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.24205691.3|2|50 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.24205691.4|2|12589 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.24205691.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.24205691.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.25205777.1|2|3201 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.25205777.2|2|3399 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.25205777.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.25205777.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.25205777.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.25205777.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.25207461.1|2|950 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.25207461.2|2|1050 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.25207461.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.25207461.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.25207461.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.25207461.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.25693872.1|2|950 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.25693872.2|2|1050 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.25693872.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.25693872.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.25693872.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.25693872.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.26493680.1|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.26493680.2|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.26493680.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.26493680.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.26493680.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.26493680.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.28595820.1|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.28595820.2|2|13780 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.28595820.3|2|6580 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.28595820.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.28595820.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.28595820.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.29680361.1|2|1425 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.29680361.2|2|1575 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.29680361.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.29680361.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.29680361.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.29680361.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.29683569.1|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.29683569.2|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.29683569.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.29683569.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.29683569.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.29683569.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.29685125.1|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.29685125.2|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.29685125.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.29685125.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.29685125.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.29685125.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.30573226.1|2|251 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.30573226.2|2|7943 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.30573226.3|2|199 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.30573226.4|2|10000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.30573226.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.30573226.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.31368921.1|2|1104 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.31368921.2|2|1296 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.31368921.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.31368921.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.31368921.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.31368921.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.31370605.1|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.31370605.2|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.31370605.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.31370605.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.31370605.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.31370605.6|2|860 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.31373813.1|2|4600 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.31373813.2|2|5400 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.31373813.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.31373813.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.31373813.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.31373813.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.31558363.1|2|120 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.31558363.2|2|800 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.31558363.3|2|100 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.31558363.4|2|850 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.31558363.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.31558363.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.32635680.1|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.32635680.2|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.32635680.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.32635680.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.32635680.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.32635680.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.33027158.1|2|1104 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.33027158.2|2|1296 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.33027158.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.33027158.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.33027158.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.33027158.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.33028842.1|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.33028842.2|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.33028842.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.33028842.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.33028842.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.33028842.6|2|860 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.33874532.1|2|6650 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.33874532.2|2|7350 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.33874532.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.33874532.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.33874532.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.33874532.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.33876152.1|2|950 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.33876152.2|2|1050 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.33876152.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.33876152.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.33876152.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.33876152.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.35064942.1|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.35064942.2|2|13780 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.35064942.3|2|6580 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.35064942.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.35064942.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.35064942.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.35484503.1|2|2514 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.35484503.2|2|12594 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.35484503.3|2|1997 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.35484503.4|2|15866 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.35484503.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.35484503.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.36113247.1|2|1425 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.36113247.2|2|1575 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.36113247.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.36113247.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.36113247.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.36113247.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.36114835.1|2|2375 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.36114835.2|2|2625 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.36114835.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.36114835.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.36114835.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.36114835.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.36118139.1|2|997 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.36118139.2|2|1103 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.36118139.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.36118139.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.36118139.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.36118139.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40316076.1|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40316076.2|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40316076.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40316076.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40316076.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40316076.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40317664.1|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40317664.2|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40317664.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40317664.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40317664.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40317664.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40319284.1|2|1710 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40319284.2|2|1890 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40319284.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40319284.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40319284.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40319284.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40390140.1|2|1140 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40390140.2|2|1260 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40390140.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40390140.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40390140.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40390140.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40391728.1|2|950 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40391728.2|2|1050 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40391728.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40391728.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40391728.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40391728.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40393284.1|2|950 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40393284.2|2|1050 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40393284.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40393284.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40393284.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40393284.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40886175.1|2|6650 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40886175.2|2|7350 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40886175.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40886175.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40886175.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40886175.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40889447.1|2|2375 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40889447.2|2|2625 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40889447.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40889447.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40889447.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40889447.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40891067.1|2|950 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40891067.2|2|1050 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40891067.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40891067.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40891067.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40891067.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40983240.1|2|40 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40983240.2|2|700 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40983240.3|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40983240.4|2|750 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40983240.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.40983240.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.41983486.1|2|1140 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.41983486.2|2|1260 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.41983486.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.41983486.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.41983486.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.41983486.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.41985074.1|2|950 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.41985074.2|2|1050 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.41985074.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.41985074.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.41985074.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.41985074.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.42471453.1|2|950 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.42471453.2|2|1050 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.42471453.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.42471453.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.42471453.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.42471453.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.43271261.1|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.43271261.2|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.43271261.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.43271261.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.43271261.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.43271261.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.44949055.1|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.44949055.2|2|13780 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.44949055.3|2|6580 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.44949055.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.44949055.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.44949055.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.46324915.1|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.46324915.2|2|13780 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.46324915.3|2|6580 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.46324915.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.46324915.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.46324915.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.46457974.1|2|1710 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.46457974.2|2|1890 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.46457974.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.46457974.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.46457974.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.46457974.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.46461150.1|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.46461150.2|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.46461150.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.46461150.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.46461150.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.46461150.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.46462738.1|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.46462738.2|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.46462738.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.46462738.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.46462738.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.46462738.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.47349219.1|2|1000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.47349219.2|2|19952 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.47349219.3|2|794 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.47349219.4|2|25118 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.47349219.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.47349219.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.48146598.1|2|3036 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.48146598.2|2|3564 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.48146598.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.48146598.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.48146598.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.48146598.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.48148218.1|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.48148218.2|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.48148218.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.48148218.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.48148218.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.48148218.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.48151362.1|2|2300 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.48151362.2|2|2700 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.48151362.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.48151362.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.48151362.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.48151362.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.48336040.1|2|251 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.48336040.2|2|7943 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.48336040.3|2|200 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.48336040.4|2|10000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.48336040.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.48336040.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.49413261.1|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.49413261.2|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.49413261.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.49413261.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.49413261.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.49413261.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.49803247.1|2|1104 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.49803247.2|2|1296 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.49803247.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.49803247.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.49803247.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.49803247.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.49804835.1|2|8000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.49804835.2|2|20000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.49804835.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.49804835.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.49804835.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.49804835.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.50514562.1|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.50514562.2|2|13780 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.50514562.3|2|6580 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.50514562.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.50514562.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.50514562.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.50650557.1|2|712 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.50650557.2|2|788 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.50650557.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.50650557.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.50650557.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.50650557.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.50652145.1|2|950 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.50652145.2|2|1050 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.50652145.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.50652145.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.50652145.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.50652145.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.50653701.1|2|1140 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.50653701.2|2|1260 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.50653701.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.50653701.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.50653701.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.50653701.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.50864446.1|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.50864446.2|2|13780 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.50864446.3|2|6580 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.50864446.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.50864446.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.50864446.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.52262180.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.52262180.2|2|700 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.52262180.3|2|-60 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.52262180.4|2|750 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.52262180.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.52262180.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.52890924.1|2|1710 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.52890924.2|2|1890 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.52890924.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.52890924.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.52890924.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.52890924.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.52892512.1|2|3201 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.52892512.2|2|3399 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.52892512.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.52892512.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.52892512.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.52892512.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.52895688.1|2|1140 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.52895688.2|2|1260 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.52895688.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.52895688.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.52895688.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.52895688.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.53442901.1|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.53442901.2|2|13780 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.53442901.3|2|6580 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.53442901.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.53442901.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.53442901.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.53687180.1|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.53687180.2|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.53687180.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.53687180.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.53687180.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.53687180.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.56880003.1|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.56880003.2|2|13780 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.56880003.3|2|6580 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.56880003.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.56880003.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.56880003.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57093689.1|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57093689.2|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57093689.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57093689.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57093689.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57093689.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57095245.1|2|950 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57095245.2|2|1050 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57095245.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57095245.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57095245.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57095245.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57167689.1|2|855 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57167689.2|2|945 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57167689.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57167689.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57167689.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57167689.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57169309.1|2|950 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57169309.2|2|1050 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57169309.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57169309.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57169309.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57169309.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57269142.1|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57269142.2|2|13780 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57269142.3|2|6580 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57269142.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57269142.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57269142.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57663852.1|2|3135 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57663852.2|2|3465 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57663852.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57663852.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57663852.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57663852.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57667060.1|2|3201 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57667060.2|2|3399 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57667060.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57667060.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57667060.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57667060.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57668616.1|2|1710 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57668616.2|2|1890 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57668616.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57668616.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57668616.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57668616.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57759233.1|2|3100 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57759233.2|2|3500 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57759233.3|2|3000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57759233.4|2|3600 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57759233.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57759233.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57760853.1|2|-50 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57760853.2|2|850 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57760853.3|2|-100 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57760853.4|2|900 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57760853.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.57760853.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.58757859.1|2|950 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.58757859.2|2|1050 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.58757859.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.58757859.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.58757859.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.58757859.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.58759479.1|2|855 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.58759479.2|2|945 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.58759479.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.58759479.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.58759479.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.58759479.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.58761035.1|2|950 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.58761035.2|2|1050 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.58761035.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.58761035.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.58761035.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.58761035.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.59249130.1|2|1425 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.59249130.2|2|1575 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.59249130.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.59249130.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.59249130.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.59249130.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.60048938.1|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.60048938.2|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.60048938.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.60048938.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.60048938.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.60048938.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.63237143.1|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.63237143.2|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.63237143.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.63237143.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.63237143.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.63237143.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.63238827.1|2|2375 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.63238827.2|2|2625 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.63238827.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.63238827.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.63238827.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.63238827.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.64125244.1|2|3000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.64125244.2|2|3599 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.64125244.3|2|2900 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.64125244.4|2|3700 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.64125244.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.64125244.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.64126832.1|2|-450 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.64126832.2|2|950 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.64126832.3|2|-500 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.64126832.4|2|1000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.64126832.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.64126832.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.64922623.1|2|1656 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.64922623.2|2|1944 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.64922623.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.64922623.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.64922623.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.64922623.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.64924211.1|2|828 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.64924211.2|2|972 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.64924211.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.64924211.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.64924211.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.64924211.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.65113653.1|2|1000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.65113653.2|2|19953 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.65113653.3|2|794 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.65113653.4|2|25119 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.65113653.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.65113653.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.66237848.1|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.66237848.2|2|13780 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.66237848.3|2|6580 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.66237848.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.66237848.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.66237848.6|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.66582448.1|2|2970 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.66582448.2|2|3630 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.66582448.3|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.66582448.4|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.66582448.5|2|-32768 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.66582448.6|2|-32768 +1.3.6.1.4.1.9.9.109.1.1.1.1.2.2|2|52690955 +1.3.6.1.4.1.9.9.109.1.1.1.1.2.2082|2|18788073 +1.3.6.1.4.1.9.9.109.1.1.1.1.7.2|66|1 +1.3.6.1.4.1.9.9.109.1.1.1.1.7.2082|66|2 +1.3.6.1.4.1.9.9.109.1.1.1.1.8.2|66|3 +1.3.6.1.4.1.9.9.109.1.1.1.1.8.2082|66|3 +1.3.6.1.4.1.9.9.109.1.1.1.1.31.2|66|1 +1.3.6.1.4.1.9.9.109.1.1.1.1.31.2082|66|2 +1.3.6.1.4.1.9.9.117.1.1.2.1.1.14585855|2|1 +1.3.6.1.4.1.9.9.117.1.1.2.1.1.15526104|2|1 +1.3.6.1.4.1.9.9.117.1.1.2.1.1.21657197|2|1 +1.3.6.1.4.1.9.9.117.1.1.2.1.1.30054631|2|1 +1.3.6.1.4.1.9.9.117.1.1.2.1.1.31415605|2|1 +1.3.6.1.4.1.9.9.117.1.1.2.1.1.37336673|2|1 +1.3.6.1.4.1.9.9.117.1.1.2.1.1.49125802|2|1 +1.3.6.1.4.1.9.9.117.1.1.2.1.1.59316821|2|1 +1.3.6.1.4.1.9.9.117.1.1.2.1.1.66227682|2|1 +1.3.6.1.4.1.9.9.117.1.1.2.1.1.66531208|2|1 +1.3.6.1.4.1.9.9.117.1.1.2.1.2.14585855|2|2 +1.3.6.1.4.1.9.9.117.1.1.2.1.2.15526104|2|2 +1.3.6.1.4.1.9.9.117.1.1.2.1.2.21657197|2|2 +1.3.6.1.4.1.9.9.117.1.1.2.1.2.30054631|2|2 +1.3.6.1.4.1.9.9.117.1.1.2.1.2.31415605|2|2 +1.3.6.1.4.1.9.9.117.1.1.2.1.2.37336673|2|2 +1.3.6.1.4.1.9.9.117.1.1.2.1.2.49125802|2|2 +1.3.6.1.4.1.9.9.117.1.1.2.1.2.59316821|2|2 +1.3.6.1.4.1.9.9.117.1.1.2.1.2.66227682|2|2 +1.3.6.1.4.1.9.9.117.1.1.2.1.2.66531208|2|2 +1.3.6.1.4.1.9.9.117.1.1.2.1.3.14585855|2|0 +1.3.6.1.4.1.9.9.117.1.1.2.1.3.15526104|2|0 +1.3.6.1.4.1.9.9.117.1.1.2.1.3.21657197|2|750 +1.3.6.1.4.1.9.9.117.1.1.2.1.3.30054631|2|0 +1.3.6.1.4.1.9.9.117.1.1.2.1.3.31415605|2|0 +1.3.6.1.4.1.9.9.117.1.1.2.1.3.37336673|2|0 +1.3.6.1.4.1.9.9.117.1.1.2.1.3.49125802|2|0 +1.3.6.1.4.1.9.9.117.1.1.2.1.3.59316821|2|0 +1.3.6.1.4.1.9.9.117.1.1.2.1.3.66227682|2|0 +1.3.6.1.4.1.9.9.117.1.1.2.1.3.66531208|2|750 +1.3.6.1.4.1.9.9.176.1.1.2.0|2|14 +1.3.6.1.4.1.9.9.176.1.1.4.0|2|2 +1.3.6.1.4.1.9.9.176.1.2.16.0|2|1 +1.3.6.1.4.1.9.9.187.1.2.5.1.3.1.4.10.246.0.3|2|6 +1.3.6.1.4.1.9.9.187.1.2.5.1.3.1.4.10.246.0.4|2|1 +1.3.6.1.4.1.9.9.187.1.2.5.1.4.1.4.10.246.0.3|2|2 +1.3.6.1.4.1.9.9.187.1.2.5.1.4.1.4.10.246.0.4|2|2 +1.3.6.1.4.1.9.9.187.1.2.5.1.6.1.4.10.246.0.3|4x|0AF60001 +1.3.6.1.4.1.9.9.187.1.2.5.1.6.1.4.10.246.0.4|4x|00000000 +1.3.6.1.4.1.9.9.187.1.2.5.1.11.1.4.10.246.0.3|66|65056 +1.3.6.1.4.1.9.9.187.1.2.5.1.11.1.4.10.246.0.4|66|65056 +1.3.6.1.4.1.9.9.187.1.2.5.1.13.1.4.10.246.0.3|65|45 +1.3.6.1.4.1.9.9.187.1.2.5.1.13.1.4.10.246.0.4|65|0 +1.3.6.1.4.1.9.9.187.1.2.5.1.14.1.4.10.246.0.3|65|90 +1.3.6.1.4.1.9.9.187.1.2.5.1.14.1.4.10.246.0.4|65|0 +1.3.6.1.4.1.9.9.187.1.2.5.1.15.1.4.10.246.0.3|65|559550 +1.3.6.1.4.1.9.9.187.1.2.5.1.15.1.4.10.246.0.4|65|0 +1.3.6.1.4.1.9.9.187.1.2.5.1.16.1.4.10.246.0.3|65|559556 +1.3.6.1.4.1.9.9.187.1.2.5.1.16.1.4.10.246.0.4|65|0 +1.3.6.1.4.1.9.9.187.1.2.5.1.17.1.4.10.246.0.3|4x|0400 +1.3.6.1.4.1.9.9.187.1.2.5.1.17.1.4.10.246.0.4|4x|0000 +1.3.6.1.4.1.9.9.187.1.2.5.1.19.1.4.10.246.0.3|66|5399820 +1.3.6.1.4.1.9.9.187.1.2.5.1.19.1.4.10.246.0.4|66|0 +1.3.6.1.4.1.9.9.187.1.2.5.1.27.1.4.10.246.0.3|66|1028831 +1.3.6.1.4.1.9.9.187.1.2.5.1.27.1.4.10.246.0.4|66|0 +1.3.6.1.4.1.9.9.187.1.2.5.1.28.1.4.10.246.0.3|4|hold time expired +1.3.6.1.4.1.9.9.187.1.2.5.1.28.1.4.10.246.0.4|4| +1.3.6.1.4.1.9.9.187.1.2.7.1.3.1.4.10.246.0.3.1.128|4|VPNv4 Unicast +1.3.6.1.4.1.9.9.187.1.2.7.1.3.1.4.10.246.0.3.2.128|4|VPNv6 Unicast +1.3.6.1.4.1.9.9.187.1.2.7.1.3.1.4.10.246.0.4.1.128|4|VPNv4 Unicast +1.3.6.1.4.1.9.9.187.1.2.7.1.3.1.4.10.246.0.4.2.128|4|VPNv6 Unicast +1.3.6.1.4.1.9.9.187.1.2.8.1.1.1.4.10.246.0.3.1.128|65|5 +1.3.6.1.4.1.9.9.187.1.2.8.1.1.1.4.10.246.0.4.1.128|65|0 +1.3.6.1.4.1.9.9.187.1.2.8.1.2.1.4.10.246.0.3.1.128|66|0 +1.3.6.1.4.1.9.9.187.1.2.8.1.2.1.4.10.246.0.4.1.128|66|0 +1.3.6.1.4.1.9.9.187.1.2.8.1.3.1.4.10.246.0.3.1.128|66|2097152 +1.3.6.1.4.1.9.9.187.1.2.8.1.3.1.4.10.246.0.4.1.128|66|2097152 +1.3.6.1.4.1.9.9.187.1.2.8.1.4.1.4.10.246.0.3.1.128|66|75 +1.3.6.1.4.1.9.9.187.1.2.8.1.4.1.4.10.246.0.4.1.128|66|75 +1.3.6.1.4.1.9.9.187.1.2.8.1.5.1.4.10.246.0.3.1.128|66|75 +1.3.6.1.4.1.9.9.187.1.2.8.1.5.1.4.10.246.0.4.1.128|66|75 +1.3.6.1.4.1.9.9.187.1.2.8.1.6.1.4.10.246.0.3.1.128|66|25 +1.3.6.1.4.1.9.9.187.1.2.8.1.6.1.4.10.246.0.4.1.128|66|0 +1.3.6.1.4.1.9.9.187.1.2.8.1.7.1.4.10.246.0.3.1.128|66|0 +1.3.6.1.4.1.9.9.187.1.2.8.1.7.1.4.10.246.0.4.1.128|66|0 +1.3.6.1.4.1.9.9.187.1.2.8.1.8.1.4.10.246.0.3.1.128|66|7 +1.3.6.1.4.1.9.9.187.1.2.8.1.8.1.4.10.246.0.4.1.128|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.2.18788073.1|2|2 +1.3.6.1.4.1.9.9.221.1.1.1.1.2.18788073.2|2|11 +1.3.6.1.4.1.9.9.221.1.1.1.1.2.18788073.3|2|12 +1.3.6.1.4.1.9.9.221.1.1.1.1.2.52690955.1|2|2 +1.3.6.1.4.1.9.9.221.1.1.1.1.2.52690955.2|2|11 +1.3.6.1.4.1.9.9.221.1.1.1.1.2.52690955.3|2|12 +1.3.6.1.4.1.9.9.221.1.1.1.1.3.18788073.1|4|processor +1.3.6.1.4.1.9.9.221.1.1.1.1.3.18788073.2|4|reserved +1.3.6.1.4.1.9.9.221.1.1.1.1.3.18788073.3|4|image +1.3.6.1.4.1.9.9.221.1.1.1.1.3.52690955.1|4|processor +1.3.6.1.4.1.9.9.221.1.1.1.1.3.52690955.2|4|reserved +1.3.6.1.4.1.9.9.221.1.1.1.1.3.52690955.3|4|image +1.3.6.1.4.1.9.9.221.1.1.1.1.5.18788073.1|2|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.5.18788073.2|2|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.5.18788073.3|2|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.5.52690955.1|2|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.5.52690955.2|2|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.5.52690955.3|2|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.6.18788073.1|2|1 +1.3.6.1.4.1.9.9.221.1.1.1.1.6.18788073.2|2|1 +1.3.6.1.4.1.9.9.221.1.1.1.1.6.18788073.3|2|1 +1.3.6.1.4.1.9.9.221.1.1.1.1.6.52690955.1|2|1 +1.3.6.1.4.1.9.9.221.1.1.1.1.6.52690955.2|2|1 +1.3.6.1.4.1.9.9.221.1.1.1.1.6.52690955.3|2|1 +1.3.6.1.4.1.9.9.221.1.1.1.1.7.18788073.1|66|3457404492 +1.3.6.1.4.1.9.9.221.1.1.1.1.7.18788073.2|66|134217728 +1.3.6.1.4.1.9.9.221.1.1.1.1.7.18788073.3|66|82270892 +1.3.6.1.4.1.9.9.221.1.1.1.1.7.52690955.1|66|3145823432 +1.3.6.1.4.1.9.9.221.1.1.1.1.7.52690955.2|66|134217728 +1.3.6.1.4.1.9.9.221.1.1.1.1.7.52690955.3|66|73069616 +1.3.6.1.4.1.9.9.221.1.1.1.1.8.18788073.1|66|620781568 +1.3.6.1.4.1.9.9.221.1.1.1.1.8.18788073.2|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.8.18788073.3|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.8.52690955.1|66|941563904 +1.3.6.1.4.1.9.9.221.1.1.1.1.8.52690955.2|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.8.52690955.3|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.17.18788073.1|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.17.18788073.2|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.17.18788073.3|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.17.52690955.1|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.17.52690955.2|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.17.52690955.3|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.18.18788073.1|70|3457404492 +1.3.6.1.4.1.9.9.221.1.1.1.1.18.18788073.2|70|134217728 +1.3.6.1.4.1.9.9.221.1.1.1.1.18.18788073.3|70|82270892 +1.3.6.1.4.1.9.9.221.1.1.1.1.18.52690955.1|70|3145827528 +1.3.6.1.4.1.9.9.221.1.1.1.1.18.52690955.2|70|134217728 +1.3.6.1.4.1.9.9.221.1.1.1.1.18.52690955.3|70|73069616 +1.3.6.1.4.1.9.9.221.1.1.1.1.19.18788073.1|66|1 +1.3.6.1.4.1.9.9.221.1.1.1.1.19.18788073.2|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.19.18788073.3|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.19.52690955.1|66|1 +1.3.6.1.4.1.9.9.221.1.1.1.1.19.52690955.2|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.19.52690955.3|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.20.18788073.1|70|4915748864 +1.3.6.1.4.1.9.9.221.1.1.1.1.20.18788073.2|70|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.20.18788073.3|70|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.20.52690955.1|70|5236527104 +1.3.6.1.4.1.9.9.221.1.1.1.1.20.52690955.2|70|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.20.52690955.3|70|0 +1.3.6.1.4.1.9.10.106.1.2.1.2.2684354563|2|5 +1.3.6.1.4.1.9.10.106.1.2.1.2.2684354569|2|11 +1.3.6.1.4.1.9.10.106.1.2.1.4.2684354563|2|1 +1.3.6.1.4.1.9.10.106.1.2.1.4.2684354569|2|1 +1.3.6.1.4.1.9.10.106.1.2.1.10.2684354563|66|111111 +1.3.6.1.4.1.9.10.106.1.2.1.10.2684354569|66|123456 +1.3.6.1.4.1.9.10.106.1.2.1.21.2684354563|4|PW-Ether1 +1.3.6.1.4.1.9.10.106.1.2.1.21.2684354569|4|10.246.0.2,123456 +1.3.6.1.4.1.9.10.106.1.2.1.22.2684354563|4|l3vpn:VC111111 +1.3.6.1.4.1.9.10.106.1.2.1.22.2684354569|4|PBB-EDGE:BD-I-100001 +1.3.6.1.4.1.9.10.107.1.1.1.7.2684354563|4x|0AF600020000 +1.3.6.1.4.1.9.10.107.1.1.1.7.2684354569|4x|0AF600020000 +1.3.6.1.6.3.10.2.1.3.0|2|8393541 diff --git a/tests/snmpsim/iosxr_asr9901.snmprec b/tests/snmpsim/iosxr_asr9901.snmprec new file mode 100644 index 0000000000..5655b4a157 --- /dev/null +++ b/tests/snmpsim/iosxr_asr9901.snmprec @@ -0,0 +1,12648 @@ +1.3.6.1.2.1.1.1.0|4|Cisco IOS XR Software (ASR9K), Version 6.6.3 Copyright (c) 2013-2019 by Cisco Systems, Inc. +1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.9.1.2658 +1.3.6.1.2.1.1.3.0|67|540015748 +1.3.6.1.2.1.1.4.0|4| +1.3.6.1.2.1.1.5.0|4| +1.3.6.1.2.1.1.6.0|4| +1.3.6.1.2.1.2.2.1.2.2|4|Null0 +1.3.6.1.2.1.2.2.1.2.3|4|MgmtEth0/RSP0/CPU0/0 +1.3.6.1.2.1.2.2.1.2.9|4|HundredGigE0/0/0/20 +1.3.6.1.2.1.2.2.1.2.10|4|TenGigE0/0/0/10 +1.3.6.1.2.1.2.2.1.2.11|4|TenGigE0/0/0/11 +1.3.6.1.2.1.2.2.1.2.12|4|TenGigE0/0/0/8 +1.3.6.1.2.1.2.2.1.2.13|4|TenGigE0/0/0/9 +1.3.6.1.2.1.2.2.1.2.14|4|TenGigE0/0/0/12 +1.3.6.1.2.1.2.2.1.2.15|4|TenGigE0/0/0/13 +1.3.6.1.2.1.2.2.1.2.16|4|TenGigE0/0/0/14 +1.3.6.1.2.1.2.2.1.2.17|4|TenGigE0/0/0/15 +1.3.6.1.2.1.2.2.1.2.18|4|TenGigE0/0/0/16 +1.3.6.1.2.1.2.2.1.2.19|4|TenGigE0/0/0/17 +1.3.6.1.2.1.2.2.1.2.20|4|TenGigE0/0/0/18 +1.3.6.1.2.1.2.2.1.2.21|4|TenGigE0/0/0/19 +1.3.6.1.2.1.2.2.1.2.22|4|HundredGigE0/0/0/21 +1.3.6.1.2.1.2.2.1.2.23|4|GigabitEthernet0/0/0/0 +1.3.6.1.2.1.2.2.1.2.24|4|GigabitEthernet0/0/0/1 +1.3.6.1.2.1.2.2.1.2.25|4|GigabitEthernet0/0/0/2 +1.3.6.1.2.1.2.2.1.2.26|4|GigabitEthernet0/0/0/3 +1.3.6.1.2.1.2.2.1.2.27|4|GigabitEthernet0/0/0/4 +1.3.6.1.2.1.2.2.1.2.28|4|GigabitEthernet0/0/0/5 +1.3.6.1.2.1.2.2.1.2.29|4|GigabitEthernet0/0/0/6 +1.3.6.1.2.1.2.2.1.2.30|4|GigabitEthernet0/0/0/7 +1.3.6.1.2.1.2.2.1.2.31|4|TenGigE0/0/0/22 +1.3.6.1.2.1.2.2.1.2.32|4|TenGigE0/0/0/23 +1.3.6.1.2.1.2.2.1.2.33|4|TenGigE0/0/0/24 +1.3.6.1.2.1.2.2.1.2.34|4|TenGigE0/0/0/25 +1.3.6.1.2.1.2.2.1.2.35|4|TenGigE0/0/0/26 +1.3.6.1.2.1.2.2.1.2.36|4|TenGigE0/0/0/27 +1.3.6.1.2.1.2.2.1.2.37|4|TenGigE0/0/0/28 +1.3.6.1.2.1.2.2.1.2.38|4|TenGigE0/0/0/29 +1.3.6.1.2.1.2.2.1.2.39|4|TenGigE0/0/0/30 +1.3.6.1.2.1.2.2.1.2.40|4|TenGigE0/0/0/31 +1.3.6.1.2.1.2.2.1.2.41|4|TenGigE0/0/0/32 +1.3.6.1.2.1.2.2.1.2.42|4|TenGigE0/0/0/33 +1.3.6.1.2.1.2.2.1.2.43|4|GigabitEthernet0/0/0/34 +1.3.6.1.2.1.2.2.1.2.44|4|GigabitEthernet0/0/0/35 +1.3.6.1.2.1.2.2.1.2.45|4|GigabitEthernet0/0/0/36 +1.3.6.1.2.1.2.2.1.2.46|4|GigabitEthernet0/0/0/37 +1.3.6.1.2.1.2.2.1.2.47|4|GigabitEthernet0/0/0/38 +1.3.6.1.2.1.2.2.1.2.48|4|GigabitEthernet0/0/0/39 +1.3.6.1.2.1.2.2.1.2.49|4|GigabitEthernet0/0/0/40 +1.3.6.1.2.1.2.2.1.2.50|4|GigabitEthernet0/0/0/41 +1.3.6.1.2.1.2.2.1.2.52|4|GigabitEthernet0/0/0/2.10 +1.3.6.1.2.1.2.2.1.2.54|4|Loopback0 +1.3.6.1.2.1.2.2.1.2.55|4|Loopback10001 +1.3.6.1.2.1.2.2.1.2.56|4|PW-Ether2 +1.3.6.1.2.1.2.2.1.2.57|4|Bundle-Ether200 +1.3.6.1.2.1.2.2.1.2.58|4|Bundle-Ether200.2000 +1.3.6.1.2.1.2.2.1.3.2|2|1 +1.3.6.1.2.1.2.2.1.3.3|2|6 +1.3.6.1.2.1.2.2.1.3.9|2|6 +1.3.6.1.2.1.2.2.1.3.10|2|6 +1.3.6.1.2.1.2.2.1.3.11|2|6 +1.3.6.1.2.1.2.2.1.3.12|2|6 +1.3.6.1.2.1.2.2.1.3.13|2|6 +1.3.6.1.2.1.2.2.1.3.14|2|6 +1.3.6.1.2.1.2.2.1.3.15|2|6 +1.3.6.1.2.1.2.2.1.3.16|2|6 +1.3.6.1.2.1.2.2.1.3.17|2|6 +1.3.6.1.2.1.2.2.1.3.18|2|6 +1.3.6.1.2.1.2.2.1.3.19|2|6 +1.3.6.1.2.1.2.2.1.3.20|2|6 +1.3.6.1.2.1.2.2.1.3.21|2|6 +1.3.6.1.2.1.2.2.1.3.22|2|6 +1.3.6.1.2.1.2.2.1.3.23|2|6 +1.3.6.1.2.1.2.2.1.3.24|2|6 +1.3.6.1.2.1.2.2.1.3.25|2|6 +1.3.6.1.2.1.2.2.1.3.26|2|6 +1.3.6.1.2.1.2.2.1.3.27|2|6 +1.3.6.1.2.1.2.2.1.3.28|2|6 +1.3.6.1.2.1.2.2.1.3.29|2|6 +1.3.6.1.2.1.2.2.1.3.30|2|6 +1.3.6.1.2.1.2.2.1.3.31|2|6 +1.3.6.1.2.1.2.2.1.3.32|2|6 +1.3.6.1.2.1.2.2.1.3.33|2|6 +1.3.6.1.2.1.2.2.1.3.34|2|6 +1.3.6.1.2.1.2.2.1.3.35|2|6 +1.3.6.1.2.1.2.2.1.3.36|2|6 +1.3.6.1.2.1.2.2.1.3.37|2|6 +1.3.6.1.2.1.2.2.1.3.38|2|6 +1.3.6.1.2.1.2.2.1.3.39|2|6 +1.3.6.1.2.1.2.2.1.3.40|2|6 +1.3.6.1.2.1.2.2.1.3.41|2|6 +1.3.6.1.2.1.2.2.1.3.42|2|6 +1.3.6.1.2.1.2.2.1.3.43|2|6 +1.3.6.1.2.1.2.2.1.3.44|2|6 +1.3.6.1.2.1.2.2.1.3.45|2|6 +1.3.6.1.2.1.2.2.1.3.46|2|6 +1.3.6.1.2.1.2.2.1.3.47|2|6 +1.3.6.1.2.1.2.2.1.3.48|2|6 +1.3.6.1.2.1.2.2.1.3.49|2|6 +1.3.6.1.2.1.2.2.1.3.50|2|6 +1.3.6.1.2.1.2.2.1.3.52|2|135 +1.3.6.1.2.1.2.2.1.3.54|2|24 +1.3.6.1.2.1.2.2.1.3.55|2|24 +1.3.6.1.2.1.2.2.1.3.56|2|246 +1.3.6.1.2.1.2.2.1.3.57|2|161 +1.3.6.1.2.1.2.2.1.3.58|2|135 +1.3.6.1.2.1.2.2.1.4.2|2|1500 +1.3.6.1.2.1.2.2.1.4.3|2|1514 +1.3.6.1.2.1.2.2.1.4.9|2|9216 +1.3.6.1.2.1.2.2.1.4.10|2|9216 +1.3.6.1.2.1.2.2.1.4.11|2|9216 +1.3.6.1.2.1.2.2.1.4.12|2|9216 +1.3.6.1.2.1.2.2.1.4.13|2|9216 +1.3.6.1.2.1.2.2.1.4.14|2|9216 +1.3.6.1.2.1.2.2.1.4.15|2|9216 +1.3.6.1.2.1.2.2.1.4.16|2|9216 +1.3.6.1.2.1.2.2.1.4.17|2|9216 +1.3.6.1.2.1.2.2.1.4.18|2|9216 +1.3.6.1.2.1.2.2.1.4.19|2|9216 +1.3.6.1.2.1.2.2.1.4.20|2|9216 +1.3.6.1.2.1.2.2.1.4.21|2|9216 +1.3.6.1.2.1.2.2.1.4.22|2|9216 +1.3.6.1.2.1.2.2.1.4.23|2|9216 +1.3.6.1.2.1.2.2.1.4.24|2|9216 +1.3.6.1.2.1.2.2.1.4.25|2|9216 +1.3.6.1.2.1.2.2.1.4.26|2|9216 +1.3.6.1.2.1.2.2.1.4.27|2|9216 +1.3.6.1.2.1.2.2.1.4.28|2|9216 +1.3.6.1.2.1.2.2.1.4.29|2|9216 +1.3.6.1.2.1.2.2.1.4.30|2|9216 +1.3.6.1.2.1.2.2.1.4.31|2|9216 +1.3.6.1.2.1.2.2.1.4.32|2|9216 +1.3.6.1.2.1.2.2.1.4.33|2|9216 +1.3.6.1.2.1.2.2.1.4.34|2|9216 +1.3.6.1.2.1.2.2.1.4.35|2|9216 +1.3.6.1.2.1.2.2.1.4.36|2|9216 +1.3.6.1.2.1.2.2.1.4.37|2|9216 +1.3.6.1.2.1.2.2.1.4.38|2|9216 +1.3.6.1.2.1.2.2.1.4.39|2|9216 +1.3.6.1.2.1.2.2.1.4.40|2|9216 +1.3.6.1.2.1.2.2.1.4.41|2|9216 +1.3.6.1.2.1.2.2.1.4.42|2|9220 +1.3.6.1.2.1.2.2.1.4.43|2|9216 +1.3.6.1.2.1.2.2.1.4.44|2|9216 +1.3.6.1.2.1.2.2.1.4.45|2|9216 +1.3.6.1.2.1.2.2.1.4.46|2|9216 +1.3.6.1.2.1.2.2.1.4.47|2|9216 +1.3.6.1.2.1.2.2.1.4.48|2|9216 +1.3.6.1.2.1.2.2.1.4.49|2|9216 +1.3.6.1.2.1.2.2.1.4.50|2|9216 +1.3.6.1.2.1.2.2.1.4.52|2|9220 +1.3.6.1.2.1.2.2.1.4.54|2|1500 +1.3.6.1.2.1.2.2.1.4.55|2|1500 +1.3.6.1.2.1.2.2.1.4.56|2|9216 +1.3.6.1.2.1.2.2.1.4.57|2|9216 +1.3.6.1.2.1.2.2.1.4.58|2|9220 +1.3.6.1.2.1.2.2.1.6.2|4| +1.3.6.1.2.1.2.2.1.6.3|4x|B02680AC7ED0 +1.3.6.1.2.1.2.2.1.6.9|4x|B02680ACE69C +1.3.6.1.2.1.2.2.1.6.10|4x|B02680ACE69D +1.3.6.1.2.1.2.2.1.6.11|4x|B02680ACE69E +1.3.6.1.2.1.2.2.1.6.12|4x|B02680ACE69F +1.3.6.1.2.1.2.2.1.6.13|4x|B02680ACE6A0 +1.3.6.1.2.1.2.2.1.6.14|4x|B02680ACE6A9 +1.3.6.1.2.1.2.2.1.6.15|4x|B02680ACE6AA +1.3.6.1.2.1.2.2.1.6.16|4x|B02680ACE6AB +1.3.6.1.2.1.2.2.1.6.17|4x|B02680ACE6AC +1.3.6.1.2.1.2.2.1.6.18|4x|B02680ACE6AD +1.3.6.1.2.1.2.2.1.6.19|4x|B02680ACE6AE +1.3.6.1.2.1.2.2.1.6.20|4x|B02680ACE6AF +1.3.6.1.2.1.2.2.1.6.21|4x|B02680ACE6B0 +1.3.6.1.2.1.2.2.1.6.22|4x|B02680ACE6B1 +1.3.6.1.2.1.2.2.1.6.23|4x|B02680ACE6A1 +1.3.6.1.2.1.2.2.1.6.24|4x|B02680ACE6A2 +1.3.6.1.2.1.2.2.1.6.25|4x|B02680ACE6A3 +1.3.6.1.2.1.2.2.1.6.26|4x|B02680ACE6A4 +1.3.6.1.2.1.2.2.1.6.27|4x|B02680ACE6A5 +1.3.6.1.2.1.2.2.1.6.28|4x|B02680ACE6A6 +1.3.6.1.2.1.2.2.1.6.29|4x|B02680ACE6A7 +1.3.6.1.2.1.2.2.1.6.30|4x|B02680ACE6A8 +1.3.6.1.2.1.2.2.1.6.31|4x|B02680ACE6B4 +1.3.6.1.2.1.2.2.1.6.32|4x|B02680ACE6B5 +1.3.6.1.2.1.2.2.1.6.33|4x|B02680ACE6B2 +1.3.6.1.2.1.2.2.1.6.34|4x|B02680ACE6B3 +1.3.6.1.2.1.2.2.1.6.35|4x|B02680ACE6BE +1.3.6.1.2.1.2.2.1.6.36|4x|B02680ACE6BF +1.3.6.1.2.1.2.2.1.6.37|4x|B02680ACE6C0 +1.3.6.1.2.1.2.2.1.6.38|4x|B02680ACE6C1 +1.3.6.1.2.1.2.2.1.6.39|4x|B02680ACE6C2 +1.3.6.1.2.1.2.2.1.6.40|4x|B02680ACE6C3 +1.3.6.1.2.1.2.2.1.6.41|4x|B02680ACE6C4 +1.3.6.1.2.1.2.2.1.6.42|4x|B02680ACE6C5 +1.3.6.1.2.1.2.2.1.6.43|4x|B02680ACE6B6 +1.3.6.1.2.1.2.2.1.6.44|4x|B02680ACE6B7 +1.3.6.1.2.1.2.2.1.6.45|4x|B02680ACE6B8 +1.3.6.1.2.1.2.2.1.6.46|4x|B02680ACE6B9 +1.3.6.1.2.1.2.2.1.6.47|4x|B02680ACE6BA +1.3.6.1.2.1.2.2.1.6.48|4x|B02680ACE6BB +1.3.6.1.2.1.2.2.1.6.49|4x|B02680ACE6BC +1.3.6.1.2.1.2.2.1.6.50|4x|B02680ACE6BD +1.3.6.1.2.1.2.2.1.6.52|4x|B02680ACE6A3 +1.3.6.1.2.1.2.2.1.6.54|4| +1.3.6.1.2.1.2.2.1.6.55|4| +1.3.6.1.2.1.2.2.1.6.56|4x|B02680ACB621 +1.3.6.1.2.1.2.2.1.6.57|4x|B02680ACB625 +1.3.6.1.2.1.2.2.1.6.58|4x|B02680ACB625 +1.3.6.1.2.1.2.2.1.7.2|2|1 +1.3.6.1.2.1.2.2.1.7.3|2|1 +1.3.6.1.2.1.2.2.1.7.9|2|1 +1.3.6.1.2.1.2.2.1.7.10|2|2 +1.3.6.1.2.1.2.2.1.7.11|2|2 +1.3.6.1.2.1.2.2.1.7.12|2|1 +1.3.6.1.2.1.2.2.1.7.13|2|2 +1.3.6.1.2.1.2.2.1.7.14|2|2 +1.3.6.1.2.1.2.2.1.7.15|2|2 +1.3.6.1.2.1.2.2.1.7.16|2|2 +1.3.6.1.2.1.2.2.1.7.17|2|2 +1.3.6.1.2.1.2.2.1.7.18|2|2 +1.3.6.1.2.1.2.2.1.7.19|2|2 +1.3.6.1.2.1.2.2.1.7.20|2|2 +1.3.6.1.2.1.2.2.1.7.21|2|2 +1.3.6.1.2.1.2.2.1.7.22|2|2 +1.3.6.1.2.1.2.2.1.7.23|2|2 +1.3.6.1.2.1.2.2.1.7.24|2|2 +1.3.6.1.2.1.2.2.1.7.25|2|1 +1.3.6.1.2.1.2.2.1.7.26|2|2 +1.3.6.1.2.1.2.2.1.7.27|2|2 +1.3.6.1.2.1.2.2.1.7.28|2|2 +1.3.6.1.2.1.2.2.1.7.29|2|2 +1.3.6.1.2.1.2.2.1.7.30|2|2 +1.3.6.1.2.1.2.2.1.7.31|2|1 +1.3.6.1.2.1.2.2.1.7.32|2|2 +1.3.6.1.2.1.2.2.1.7.33|2|2 +1.3.6.1.2.1.2.2.1.7.34|2|2 +1.3.6.1.2.1.2.2.1.7.35|2|2 +1.3.6.1.2.1.2.2.1.7.36|2|2 +1.3.6.1.2.1.2.2.1.7.37|2|2 +1.3.6.1.2.1.2.2.1.7.38|2|2 +1.3.6.1.2.1.2.2.1.7.39|2|2 +1.3.6.1.2.1.2.2.1.7.40|2|2 +1.3.6.1.2.1.2.2.1.7.41|2|2 +1.3.6.1.2.1.2.2.1.7.42|2|2 +1.3.6.1.2.1.2.2.1.7.43|2|2 +1.3.6.1.2.1.2.2.1.7.44|2|2 +1.3.6.1.2.1.2.2.1.7.45|2|2 +1.3.6.1.2.1.2.2.1.7.46|2|2 +1.3.6.1.2.1.2.2.1.7.47|2|2 +1.3.6.1.2.1.2.2.1.7.48|2|2 +1.3.6.1.2.1.2.2.1.7.49|2|2 +1.3.6.1.2.1.2.2.1.7.50|2|2 +1.3.6.1.2.1.2.2.1.7.52|2|1 +1.3.6.1.2.1.2.2.1.7.54|2|1 +1.3.6.1.2.1.2.2.1.7.55|2|1 +1.3.6.1.2.1.2.2.1.7.56|2|1 +1.3.6.1.2.1.2.2.1.7.57|2|1 +1.3.6.1.2.1.2.2.1.7.58|2|1 +1.3.6.1.2.1.2.2.1.8.2|2|1 +1.3.6.1.2.1.2.2.1.8.3|2|1 +1.3.6.1.2.1.2.2.1.8.9|2|1 +1.3.6.1.2.1.2.2.1.8.10|2|2 +1.3.6.1.2.1.2.2.1.8.11|2|2 +1.3.6.1.2.1.2.2.1.8.12|2|1 +1.3.6.1.2.1.2.2.1.8.13|2|2 +1.3.6.1.2.1.2.2.1.8.14|2|2 +1.3.6.1.2.1.2.2.1.8.15|2|2 +1.3.6.1.2.1.2.2.1.8.16|2|2 +1.3.6.1.2.1.2.2.1.8.17|2|2 +1.3.6.1.2.1.2.2.1.8.18|2|2 +1.3.6.1.2.1.2.2.1.8.19|2|2 +1.3.6.1.2.1.2.2.1.8.20|2|2 +1.3.6.1.2.1.2.2.1.8.21|2|2 +1.3.6.1.2.1.2.2.1.8.22|2|2 +1.3.6.1.2.1.2.2.1.8.23|2|2 +1.3.6.1.2.1.2.2.1.8.24|2|2 +1.3.6.1.2.1.2.2.1.8.25|2|1 +1.3.6.1.2.1.2.2.1.8.26|2|2 +1.3.6.1.2.1.2.2.1.8.27|2|2 +1.3.6.1.2.1.2.2.1.8.28|2|2 +1.3.6.1.2.1.2.2.1.8.29|2|2 +1.3.6.1.2.1.2.2.1.8.30|2|2 +1.3.6.1.2.1.2.2.1.8.31|2|1 +1.3.6.1.2.1.2.2.1.8.32|2|2 +1.3.6.1.2.1.2.2.1.8.33|2|2 +1.3.6.1.2.1.2.2.1.8.34|2|2 +1.3.6.1.2.1.2.2.1.8.35|2|2 +1.3.6.1.2.1.2.2.1.8.36|2|2 +1.3.6.1.2.1.2.2.1.8.37|2|2 +1.3.6.1.2.1.2.2.1.8.38|2|2 +1.3.6.1.2.1.2.2.1.8.39|2|2 +1.3.6.1.2.1.2.2.1.8.40|2|2 +1.3.6.1.2.1.2.2.1.8.41|2|2 +1.3.6.1.2.1.2.2.1.8.42|2|2 +1.3.6.1.2.1.2.2.1.8.43|2|2 +1.3.6.1.2.1.2.2.1.8.44|2|2 +1.3.6.1.2.1.2.2.1.8.45|2|2 +1.3.6.1.2.1.2.2.1.8.46|2|2 +1.3.6.1.2.1.2.2.1.8.47|2|2 +1.3.6.1.2.1.2.2.1.8.48|2|2 +1.3.6.1.2.1.2.2.1.8.49|2|2 +1.3.6.1.2.1.2.2.1.8.50|2|2 +1.3.6.1.2.1.2.2.1.8.52|2|1 +1.3.6.1.2.1.2.2.1.8.54|2|1 +1.3.6.1.2.1.2.2.1.8.55|2|1 +1.3.6.1.2.1.2.2.1.8.56|2|1 +1.3.6.1.2.1.2.2.1.8.57|2|2 +1.3.6.1.2.1.2.2.1.8.58|2|2 +1.3.6.1.2.1.2.2.1.9.2|67|0 +1.3.6.1.2.1.2.2.1.9.3|67|1190 +1.3.6.1.2.1.2.2.1.9.9|67|258933309 +1.3.6.1.2.1.2.2.1.9.10|67|0 +1.3.6.1.2.1.2.2.1.9.11|67|0 +1.3.6.1.2.1.2.2.1.9.12|67|24851 +1.3.6.1.2.1.2.2.1.9.13|67|0 +1.3.6.1.2.1.2.2.1.9.14|67|0 +1.3.6.1.2.1.2.2.1.9.15|67|0 +1.3.6.1.2.1.2.2.1.9.16|67|0 +1.3.6.1.2.1.2.2.1.9.17|67|0 +1.3.6.1.2.1.2.2.1.9.18|67|0 +1.3.6.1.2.1.2.2.1.9.19|67|0 +1.3.6.1.2.1.2.2.1.9.20|67|0 +1.3.6.1.2.1.2.2.1.9.21|67|0 +1.3.6.1.2.1.2.2.1.9.22|67|0 +1.3.6.1.2.1.2.2.1.9.23|67|0 +1.3.6.1.2.1.2.2.1.9.24|67|0 +1.3.6.1.2.1.2.2.1.9.25|67|25971 +1.3.6.1.2.1.2.2.1.9.26|67|0 +1.3.6.1.2.1.2.2.1.9.27|67|0 +1.3.6.1.2.1.2.2.1.9.28|67|0 +1.3.6.1.2.1.2.2.1.9.29|67|48886458 +1.3.6.1.2.1.2.2.1.9.30|67|48886555 +1.3.6.1.2.1.2.2.1.9.31|67|257369289 +1.3.6.1.2.1.2.2.1.9.32|67|0 +1.3.6.1.2.1.2.2.1.9.33|67|49652207 +1.3.6.1.2.1.2.2.1.9.34|67|49652208 +1.3.6.1.2.1.2.2.1.9.35|67|49653618 +1.3.6.1.2.1.2.2.1.9.36|67|49653619 +1.3.6.1.2.1.2.2.1.9.37|67|49838253 +1.3.6.1.2.1.2.2.1.9.38|67|49838254 +1.3.6.1.2.1.2.2.1.9.39|67|0 +1.3.6.1.2.1.2.2.1.9.40|67|0 +1.3.6.1.2.1.2.2.1.9.41|67|49485192 +1.3.6.1.2.1.2.2.1.9.42|67|49485193 +1.3.6.1.2.1.2.2.1.9.43|67|0 +1.3.6.1.2.1.2.2.1.9.44|67|0 +1.3.6.1.2.1.2.2.1.9.45|67|0 +1.3.6.1.2.1.2.2.1.9.46|67|0 +1.3.6.1.2.1.2.2.1.9.47|67|0 +1.3.6.1.2.1.2.2.1.9.48|67|0 +1.3.6.1.2.1.2.2.1.9.49|67|0 +1.3.6.1.2.1.2.2.1.9.50|67|0 +1.3.6.1.2.1.2.2.1.9.52|67|25974 +1.3.6.1.2.1.2.2.1.9.54|67|969 +1.3.6.1.2.1.2.2.1.9.55|67|969 +1.3.6.1.2.1.2.2.1.9.56|67|437125924 +1.3.6.1.2.1.2.2.1.9.57|67|0 +1.3.6.1.2.1.2.2.1.9.58|67|0 +1.3.6.1.2.1.2.2.1.13.2|65|0 +1.3.6.1.2.1.2.2.1.13.3|65|0 +1.3.6.1.2.1.2.2.1.13.9|65|4 +1.3.6.1.2.1.2.2.1.13.10|65|0 +1.3.6.1.2.1.2.2.1.13.11|65|0 +1.3.6.1.2.1.2.2.1.13.12|65|5 +1.3.6.1.2.1.2.2.1.13.13|65|0 +1.3.6.1.2.1.2.2.1.13.14|65|0 +1.3.6.1.2.1.2.2.1.13.15|65|0 +1.3.6.1.2.1.2.2.1.13.16|65|0 +1.3.6.1.2.1.2.2.1.13.17|65|0 +1.3.6.1.2.1.2.2.1.13.18|65|0 +1.3.6.1.2.1.2.2.1.13.19|65|0 +1.3.6.1.2.1.2.2.1.13.20|65|0 +1.3.6.1.2.1.2.2.1.13.21|65|0 +1.3.6.1.2.1.2.2.1.13.22|65|0 +1.3.6.1.2.1.2.2.1.13.23|65|0 +1.3.6.1.2.1.2.2.1.13.24|65|0 +1.3.6.1.2.1.2.2.1.13.25|65|0 +1.3.6.1.2.1.2.2.1.13.26|65|0 +1.3.6.1.2.1.2.2.1.13.27|65|0 +1.3.6.1.2.1.2.2.1.13.28|65|0 +1.3.6.1.2.1.2.2.1.13.29|65|0 +1.3.6.1.2.1.2.2.1.13.30|65|0 +1.3.6.1.2.1.2.2.1.13.31|65|4 +1.3.6.1.2.1.2.2.1.13.32|65|0 +1.3.6.1.2.1.2.2.1.13.33|65|0 +1.3.6.1.2.1.2.2.1.13.34|65|0 +1.3.6.1.2.1.2.2.1.13.35|65|0 +1.3.6.1.2.1.2.2.1.13.36|65|0 +1.3.6.1.2.1.2.2.1.13.37|65|0 +1.3.6.1.2.1.2.2.1.13.38|65|0 +1.3.6.1.2.1.2.2.1.13.39|65|0 +1.3.6.1.2.1.2.2.1.13.40|65|0 +1.3.6.1.2.1.2.2.1.13.41|65|0 +1.3.6.1.2.1.2.2.1.13.42|65|0 +1.3.6.1.2.1.2.2.1.13.43|65|0 +1.3.6.1.2.1.2.2.1.13.44|65|0 +1.3.6.1.2.1.2.2.1.13.45|65|0 +1.3.6.1.2.1.2.2.1.13.46|65|0 +1.3.6.1.2.1.2.2.1.13.47|65|0 +1.3.6.1.2.1.2.2.1.13.48|65|0 +1.3.6.1.2.1.2.2.1.13.49|65|0 +1.3.6.1.2.1.2.2.1.13.50|65|0 +1.3.6.1.2.1.2.2.1.13.52|65|0 +1.3.6.1.2.1.2.2.1.13.56|65|0 +1.3.6.1.2.1.2.2.1.13.57|65|0 +1.3.6.1.2.1.2.2.1.13.58|65|0 +1.3.6.1.2.1.2.2.1.14.2|65|0 +1.3.6.1.2.1.2.2.1.14.3|65|0 +1.3.6.1.2.1.2.2.1.14.9|65|0 +1.3.6.1.2.1.2.2.1.14.10|65|0 +1.3.6.1.2.1.2.2.1.14.11|65|0 +1.3.6.1.2.1.2.2.1.14.12|65|0 +1.3.6.1.2.1.2.2.1.14.13|65|0 +1.3.6.1.2.1.2.2.1.14.14|65|0 +1.3.6.1.2.1.2.2.1.14.15|65|0 +1.3.6.1.2.1.2.2.1.14.16|65|0 +1.3.6.1.2.1.2.2.1.14.17|65|0 +1.3.6.1.2.1.2.2.1.14.18|65|0 +1.3.6.1.2.1.2.2.1.14.19|65|0 +1.3.6.1.2.1.2.2.1.14.20|65|0 +1.3.6.1.2.1.2.2.1.14.21|65|0 +1.3.6.1.2.1.2.2.1.14.22|65|0 +1.3.6.1.2.1.2.2.1.14.23|65|0 +1.3.6.1.2.1.2.2.1.14.24|65|0 +1.3.6.1.2.1.2.2.1.14.25|65|0 +1.3.6.1.2.1.2.2.1.14.26|65|0 +1.3.6.1.2.1.2.2.1.14.27|65|0 +1.3.6.1.2.1.2.2.1.14.28|65|0 +1.3.6.1.2.1.2.2.1.14.29|65|0 +1.3.6.1.2.1.2.2.1.14.30|65|0 +1.3.6.1.2.1.2.2.1.14.31|65|0 +1.3.6.1.2.1.2.2.1.14.32|65|0 +1.3.6.1.2.1.2.2.1.14.33|65|0 +1.3.6.1.2.1.2.2.1.14.34|65|0 +1.3.6.1.2.1.2.2.1.14.35|65|0 +1.3.6.1.2.1.2.2.1.14.36|65|0 +1.3.6.1.2.1.2.2.1.14.37|65|12 +1.3.6.1.2.1.2.2.1.14.38|65|0 +1.3.6.1.2.1.2.2.1.14.39|65|0 +1.3.6.1.2.1.2.2.1.14.40|65|0 +1.3.6.1.2.1.2.2.1.14.41|65|0 +1.3.6.1.2.1.2.2.1.14.42|65|0 +1.3.6.1.2.1.2.2.1.14.43|65|0 +1.3.6.1.2.1.2.2.1.14.44|65|0 +1.3.6.1.2.1.2.2.1.14.45|65|0 +1.3.6.1.2.1.2.2.1.14.46|65|0 +1.3.6.1.2.1.2.2.1.14.47|65|0 +1.3.6.1.2.1.2.2.1.14.48|65|0 +1.3.6.1.2.1.2.2.1.14.49|65|0 +1.3.6.1.2.1.2.2.1.14.50|65|0 +1.3.6.1.2.1.2.2.1.14.52|65|0 +1.3.6.1.2.1.2.2.1.14.56|65|0 +1.3.6.1.2.1.2.2.1.14.57|65|0 +1.3.6.1.2.1.2.2.1.14.58|65|0 +1.3.6.1.2.1.2.2.1.19.2|65|0 +1.3.6.1.2.1.2.2.1.19.3|65|0 +1.3.6.1.2.1.2.2.1.19.9|65|0 +1.3.6.1.2.1.2.2.1.19.10|65|0 +1.3.6.1.2.1.2.2.1.19.11|65|0 +1.3.6.1.2.1.2.2.1.19.12|65|2 +1.3.6.1.2.1.2.2.1.19.13|65|0 +1.3.6.1.2.1.2.2.1.19.14|65|0 +1.3.6.1.2.1.2.2.1.19.15|65|0 +1.3.6.1.2.1.2.2.1.19.16|65|0 +1.3.6.1.2.1.2.2.1.19.17|65|0 +1.3.6.1.2.1.2.2.1.19.18|65|0 +1.3.6.1.2.1.2.2.1.19.19|65|0 +1.3.6.1.2.1.2.2.1.19.20|65|0 +1.3.6.1.2.1.2.2.1.19.21|65|0 +1.3.6.1.2.1.2.2.1.19.22|65|17 +1.3.6.1.2.1.2.2.1.19.23|65|0 +1.3.6.1.2.1.2.2.1.19.24|65|0 +1.3.6.1.2.1.2.2.1.19.25|65|0 +1.3.6.1.2.1.2.2.1.19.26|65|0 +1.3.6.1.2.1.2.2.1.19.27|65|0 +1.3.6.1.2.1.2.2.1.19.28|65|0 +1.3.6.1.2.1.2.2.1.19.29|65|0 +1.3.6.1.2.1.2.2.1.19.30|65|0 +1.3.6.1.2.1.2.2.1.19.31|65|0 +1.3.6.1.2.1.2.2.1.19.32|65|0 +1.3.6.1.2.1.2.2.1.19.33|65|0 +1.3.6.1.2.1.2.2.1.19.34|65|0 +1.3.6.1.2.1.2.2.1.19.35|65|0 +1.3.6.1.2.1.2.2.1.19.36|65|0 +1.3.6.1.2.1.2.2.1.19.37|65|0 +1.3.6.1.2.1.2.2.1.19.38|65|0 +1.3.6.1.2.1.2.2.1.19.39|65|0 +1.3.6.1.2.1.2.2.1.19.40|65|0 +1.3.6.1.2.1.2.2.1.19.41|65|0 +1.3.6.1.2.1.2.2.1.19.42|65|0 +1.3.6.1.2.1.2.2.1.19.43|65|0 +1.3.6.1.2.1.2.2.1.19.44|65|0 +1.3.6.1.2.1.2.2.1.19.45|65|0 +1.3.6.1.2.1.2.2.1.19.46|65|0 +1.3.6.1.2.1.2.2.1.19.47|65|0 +1.3.6.1.2.1.2.2.1.19.48|65|0 +1.3.6.1.2.1.2.2.1.19.49|65|0 +1.3.6.1.2.1.2.2.1.19.50|65|0 +1.3.6.1.2.1.2.2.1.19.52|65|0 +1.3.6.1.2.1.2.2.1.19.56|65|0 +1.3.6.1.2.1.2.2.1.19.57|65|0 +1.3.6.1.2.1.2.2.1.19.58|65|0 +1.3.6.1.2.1.2.2.1.20.2|65|0 +1.3.6.1.2.1.2.2.1.20.3|65|0 +1.3.6.1.2.1.2.2.1.20.9|65|0 +1.3.6.1.2.1.2.2.1.20.10|65|0 +1.3.6.1.2.1.2.2.1.20.11|65|0 +1.3.6.1.2.1.2.2.1.20.12|65|0 +1.3.6.1.2.1.2.2.1.20.13|65|0 +1.3.6.1.2.1.2.2.1.20.14|65|0 +1.3.6.1.2.1.2.2.1.20.15|65|0 +1.3.6.1.2.1.2.2.1.20.16|65|0 +1.3.6.1.2.1.2.2.1.20.17|65|0 +1.3.6.1.2.1.2.2.1.20.18|65|0 +1.3.6.1.2.1.2.2.1.20.19|65|0 +1.3.6.1.2.1.2.2.1.20.20|65|0 +1.3.6.1.2.1.2.2.1.20.21|65|0 +1.3.6.1.2.1.2.2.1.20.22|65|0 +1.3.6.1.2.1.2.2.1.20.23|65|0 +1.3.6.1.2.1.2.2.1.20.24|65|0 +1.3.6.1.2.1.2.2.1.20.25|65|0 +1.3.6.1.2.1.2.2.1.20.26|65|0 +1.3.6.1.2.1.2.2.1.20.27|65|0 +1.3.6.1.2.1.2.2.1.20.28|65|0 +1.3.6.1.2.1.2.2.1.20.29|65|0 +1.3.6.1.2.1.2.2.1.20.30|65|0 +1.3.6.1.2.1.2.2.1.20.31|65|0 +1.3.6.1.2.1.2.2.1.20.32|65|0 +1.3.6.1.2.1.2.2.1.20.33|65|0 +1.3.6.1.2.1.2.2.1.20.34|65|0 +1.3.6.1.2.1.2.2.1.20.35|65|0 +1.3.6.1.2.1.2.2.1.20.36|65|0 +1.3.6.1.2.1.2.2.1.20.37|65|0 +1.3.6.1.2.1.2.2.1.20.38|65|0 +1.3.6.1.2.1.2.2.1.20.39|65|0 +1.3.6.1.2.1.2.2.1.20.40|65|0 +1.3.6.1.2.1.2.2.1.20.41|65|0 +1.3.6.1.2.1.2.2.1.20.42|65|0 +1.3.6.1.2.1.2.2.1.20.43|65|0 +1.3.6.1.2.1.2.2.1.20.44|65|0 +1.3.6.1.2.1.2.2.1.20.45|65|0 +1.3.6.1.2.1.2.2.1.20.46|65|0 +1.3.6.1.2.1.2.2.1.20.47|65|0 +1.3.6.1.2.1.2.2.1.20.48|65|0 +1.3.6.1.2.1.2.2.1.20.49|65|0 +1.3.6.1.2.1.2.2.1.20.50|65|0 +1.3.6.1.2.1.2.2.1.20.52|65|0 +1.3.6.1.2.1.2.2.1.20.56|65|0 +1.3.6.1.2.1.2.2.1.20.57|65|0 +1.3.6.1.2.1.2.2.1.20.58|65|0 +1.3.6.1.2.1.4.22.1.2.3.10.245.254.1|4x|F07F06B8F428 +1.3.6.1.2.1.4.22.1.2.3.10.245.254.2|4x|9C417C85B750 +1.3.6.1.2.1.4.22.1.2.3.10.245.254.9|4x|D8803978F6D4 +1.3.6.1.2.1.4.22.1.2.3.10.245.254.10|4x|2C44FD680FBE +1.3.6.1.2.1.4.22.1.2.3.10.245.254.11|4x|3CD92B256B29 +1.3.6.1.2.1.4.22.1.2.3.10.245.254.21|4x|009E1E5D390E +1.3.6.1.2.1.4.22.1.2.3.10.245.254.32|4x|CC46D64A0438 +1.3.6.1.2.1.4.22.1.2.3.10.245.254.33|4x|B02680AC7ED0 +1.3.6.1.2.1.4.22.1.2.3.10.245.254.35|4x|6C310EA201DA +1.3.6.1.2.1.4.22.1.2.3.10.245.254.100|4x|90B11C089725 +1.3.6.1.2.1.4.22.1.2.3.10.245.254.228|4x|984BE1EA4208 +1.3.6.1.2.1.4.22.1.2.9.10.246.1.13|4x|00BC604D80CC +1.3.6.1.2.1.4.22.1.2.9.10.246.1.14|4x|B02680ACE69C +1.3.6.1.2.1.4.22.1.2.12.10.246.1.17|4x|70E4220EAA96 +1.3.6.1.2.1.4.22.1.2.12.10.246.1.18|4x|B02680ACE69F +1.3.6.1.2.1.4.22.1.2.31.10.246.1.41|4x|B02680ACE6B4 +1.3.6.1.2.1.4.22.1.2.31.10.246.1.42|4x|3C510E2D145C +1.3.6.1.2.1.4.22.1.2.52.10.0.2.0|4x|B02680ACE6A3 +1.3.6.1.2.1.4.22.1.2.52.10.0.2.1|4x|706D1582EC80 +1.3.6.1.2.1.4.22.1.2.56.10.0.2.2|4x|B02680ACB621 +1.3.6.1.2.1.4.22.1.2.56.10.0.2.3|4x|706D1582EC81 +1.3.6.1.2.1.4.35.1.4.52.2.16.36.6.43.0.255.255.0.2.0.1.0.0.0.0.0.2|4x|706D1582EC80 +1.3.6.1.2.1.4.35.1.4.52.2.16.254.128.0.0.0.0.0.0.114.109.21.255.254.130.236.128|4x|706D1582EC80 +1.3.6.1.2.1.10.7.2.1.1.3|2|3 +1.3.6.1.2.1.10.7.2.1.1.9|2|9 +1.3.6.1.2.1.10.7.2.1.1.10|2|10 +1.3.6.1.2.1.10.7.2.1.1.11|2|11 +1.3.6.1.2.1.10.7.2.1.1.12|2|12 +1.3.6.1.2.1.10.7.2.1.1.13|2|13 +1.3.6.1.2.1.10.7.2.1.1.14|2|14 +1.3.6.1.2.1.10.7.2.1.1.15|2|15 +1.3.6.1.2.1.10.7.2.1.1.16|2|16 +1.3.6.1.2.1.10.7.2.1.1.17|2|17 +1.3.6.1.2.1.10.7.2.1.1.18|2|18 +1.3.6.1.2.1.10.7.2.1.1.19|2|19 +1.3.6.1.2.1.10.7.2.1.1.20|2|20 +1.3.6.1.2.1.10.7.2.1.1.21|2|21 +1.3.6.1.2.1.10.7.2.1.1.22|2|22 +1.3.6.1.2.1.10.7.2.1.1.23|2|23 +1.3.6.1.2.1.10.7.2.1.1.24|2|24 +1.3.6.1.2.1.10.7.2.1.1.25|2|25 +1.3.6.1.2.1.10.7.2.1.1.26|2|26 +1.3.6.1.2.1.10.7.2.1.1.27|2|27 +1.3.6.1.2.1.10.7.2.1.1.28|2|28 +1.3.6.1.2.1.10.7.2.1.1.29|2|29 +1.3.6.1.2.1.10.7.2.1.1.30|2|30 +1.3.6.1.2.1.10.7.2.1.1.31|2|31 +1.3.6.1.2.1.10.7.2.1.1.32|2|32 +1.3.6.1.2.1.10.7.2.1.1.33|2|33 +1.3.6.1.2.1.10.7.2.1.1.34|2|34 +1.3.6.1.2.1.10.7.2.1.1.35|2|35 +1.3.6.1.2.1.10.7.2.1.1.36|2|36 +1.3.6.1.2.1.10.7.2.1.1.37|2|37 +1.3.6.1.2.1.10.7.2.1.1.38|2|38 +1.3.6.1.2.1.10.7.2.1.1.39|2|39 +1.3.6.1.2.1.10.7.2.1.1.40|2|40 +1.3.6.1.2.1.10.7.2.1.1.41|2|41 +1.3.6.1.2.1.10.7.2.1.1.42|2|42 +1.3.6.1.2.1.10.7.2.1.1.43|2|43 +1.3.6.1.2.1.10.7.2.1.1.44|2|44 +1.3.6.1.2.1.10.7.2.1.1.45|2|45 +1.3.6.1.2.1.10.7.2.1.1.46|2|46 +1.3.6.1.2.1.10.7.2.1.1.47|2|47 +1.3.6.1.2.1.10.7.2.1.1.48|2|48 +1.3.6.1.2.1.10.7.2.1.1.49|2|49 +1.3.6.1.2.1.10.7.2.1.1.50|2|50 +1.3.6.1.2.1.10.7.2.1.19.3|2|1 +1.3.6.1.2.1.10.7.2.1.19.9|2|3 +1.3.6.1.2.1.10.7.2.1.19.10|2|3 +1.3.6.1.2.1.10.7.2.1.19.11|2|3 +1.3.6.1.2.1.10.7.2.1.19.12|2|3 +1.3.6.1.2.1.10.7.2.1.19.13|2|3 +1.3.6.1.2.1.10.7.2.1.19.14|2|3 +1.3.6.1.2.1.10.7.2.1.19.15|2|3 +1.3.6.1.2.1.10.7.2.1.19.16|2|3 +1.3.6.1.2.1.10.7.2.1.19.17|2|3 +1.3.6.1.2.1.10.7.2.1.19.18|2|3 +1.3.6.1.2.1.10.7.2.1.19.19|2|3 +1.3.6.1.2.1.10.7.2.1.19.20|2|3 +1.3.6.1.2.1.10.7.2.1.19.21|2|3 +1.3.6.1.2.1.10.7.2.1.19.22|2|3 +1.3.6.1.2.1.10.7.2.1.19.23|2|3 +1.3.6.1.2.1.10.7.2.1.19.24|2|3 +1.3.6.1.2.1.10.7.2.1.19.25|2|3 +1.3.6.1.2.1.10.7.2.1.19.26|2|3 +1.3.6.1.2.1.10.7.2.1.19.27|2|3 +1.3.6.1.2.1.10.7.2.1.19.28|2|3 +1.3.6.1.2.1.10.7.2.1.19.29|2|3 +1.3.6.1.2.1.10.7.2.1.19.30|2|3 +1.3.6.1.2.1.10.7.2.1.19.31|2|3 +1.3.6.1.2.1.10.7.2.1.19.32|2|3 +1.3.6.1.2.1.10.7.2.1.19.33|2|3 +1.3.6.1.2.1.10.7.2.1.19.34|2|3 +1.3.6.1.2.1.10.7.2.1.19.35|2|3 +1.3.6.1.2.1.10.7.2.1.19.36|2|3 +1.3.6.1.2.1.10.7.2.1.19.37|2|3 +1.3.6.1.2.1.10.7.2.1.19.38|2|3 +1.3.6.1.2.1.10.7.2.1.19.39|2|3 +1.3.6.1.2.1.10.7.2.1.19.40|2|3 +1.3.6.1.2.1.10.7.2.1.19.41|2|3 +1.3.6.1.2.1.10.7.2.1.19.42|2|3 +1.3.6.1.2.1.10.7.2.1.19.43|2|3 +1.3.6.1.2.1.10.7.2.1.19.44|2|3 +1.3.6.1.2.1.10.7.2.1.19.45|2|3 +1.3.6.1.2.1.10.7.2.1.19.46|2|3 +1.3.6.1.2.1.10.7.2.1.19.47|2|3 +1.3.6.1.2.1.10.7.2.1.19.48|2|3 +1.3.6.1.2.1.10.7.2.1.19.49|2|3 +1.3.6.1.2.1.10.7.2.1.19.50|2|3 +1.3.6.1.2.1.10.166.11.1.2.1.1.2.4.109.103.109.116.3|2|2 +1.3.6.1.2.1.10.166.11.1.2.1.1.2.9.84.86.80.78.49.48.48.48.49.52|2|2 +1.3.6.1.2.1.10.166.11.1.2.1.1.2.9.84.86.80.78.49.48.48.48.49.55|2|2 +1.3.6.1.2.1.10.166.11.1.2.1.1.2.9.84.86.80.78.49.48.48.48.49.56|2|2 +1.3.6.1.2.1.10.166.11.1.2.2.1.3.4.109.103.109.116|4| +1.3.6.1.2.1.10.166.11.1.2.2.1.3.9.84.86.80.78.49.48.48.48.49|4|Test VRF +1.3.6.1.2.1.10.166.11.1.2.2.1.4.4.109.103.109.116|4| +1.3.6.1.2.1.10.166.11.1.2.2.1.4.9.84.86.80.78.49.48.48.48.49|4|10.246.0.3:10001 +1.3.6.1.2.1.15.2.0|2|65056 +1.3.6.1.2.1.31.1.1.1.1.2|4|Null0 +1.3.6.1.2.1.31.1.1.1.1.3|4|MgmtEth0/RSP0/CPU0/0 +1.3.6.1.2.1.31.1.1.1.1.9|4|HundredGigE0/0/0/20 +1.3.6.1.2.1.31.1.1.1.1.10|4|TenGigE0/0/0/10 +1.3.6.1.2.1.31.1.1.1.1.11|4|TenGigE0/0/0/11 +1.3.6.1.2.1.31.1.1.1.1.12|4|TenGigE0/0/0/8 +1.3.6.1.2.1.31.1.1.1.1.13|4|TenGigE0/0/0/9 +1.3.6.1.2.1.31.1.1.1.1.14|4|TenGigE0/0/0/12 +1.3.6.1.2.1.31.1.1.1.1.15|4|TenGigE0/0/0/13 +1.3.6.1.2.1.31.1.1.1.1.16|4|TenGigE0/0/0/14 +1.3.6.1.2.1.31.1.1.1.1.17|4|TenGigE0/0/0/15 +1.3.6.1.2.1.31.1.1.1.1.18|4|TenGigE0/0/0/16 +1.3.6.1.2.1.31.1.1.1.1.19|4|TenGigE0/0/0/17 +1.3.6.1.2.1.31.1.1.1.1.20|4|TenGigE0/0/0/18 +1.3.6.1.2.1.31.1.1.1.1.21|4|TenGigE0/0/0/19 +1.3.6.1.2.1.31.1.1.1.1.22|4|HundredGigE0/0/0/21 +1.3.6.1.2.1.31.1.1.1.1.23|4|GigabitEthernet0/0/0/0 +1.3.6.1.2.1.31.1.1.1.1.24|4|GigabitEthernet0/0/0/1 +1.3.6.1.2.1.31.1.1.1.1.25|4|GigabitEthernet0/0/0/2 +1.3.6.1.2.1.31.1.1.1.1.26|4|GigabitEthernet0/0/0/3 +1.3.6.1.2.1.31.1.1.1.1.27|4|GigabitEthernet0/0/0/4 +1.3.6.1.2.1.31.1.1.1.1.28|4|GigabitEthernet0/0/0/5 +1.3.6.1.2.1.31.1.1.1.1.29|4|GigabitEthernet0/0/0/6 +1.3.6.1.2.1.31.1.1.1.1.30|4|GigabitEthernet0/0/0/7 +1.3.6.1.2.1.31.1.1.1.1.31|4|TenGigE0/0/0/22 +1.3.6.1.2.1.31.1.1.1.1.32|4|TenGigE0/0/0/23 +1.3.6.1.2.1.31.1.1.1.1.33|4|TenGigE0/0/0/24 +1.3.6.1.2.1.31.1.1.1.1.34|4|TenGigE0/0/0/25 +1.3.6.1.2.1.31.1.1.1.1.35|4|TenGigE0/0/0/26 +1.3.6.1.2.1.31.1.1.1.1.36|4|TenGigE0/0/0/27 +1.3.6.1.2.1.31.1.1.1.1.37|4|TenGigE0/0/0/28 +1.3.6.1.2.1.31.1.1.1.1.38|4|TenGigE0/0/0/29 +1.3.6.1.2.1.31.1.1.1.1.39|4|TenGigE0/0/0/30 +1.3.6.1.2.1.31.1.1.1.1.40|4|TenGigE0/0/0/31 +1.3.6.1.2.1.31.1.1.1.1.41|4|TenGigE0/0/0/32 +1.3.6.1.2.1.31.1.1.1.1.42|4|TenGigE0/0/0/33 +1.3.6.1.2.1.31.1.1.1.1.43|4|GigabitEthernet0/0/0/34 +1.3.6.1.2.1.31.1.1.1.1.44|4|GigabitEthernet0/0/0/35 +1.3.6.1.2.1.31.1.1.1.1.45|4|GigabitEthernet0/0/0/36 +1.3.6.1.2.1.31.1.1.1.1.46|4|GigabitEthernet0/0/0/37 +1.3.6.1.2.1.31.1.1.1.1.47|4|GigabitEthernet0/0/0/38 +1.3.6.1.2.1.31.1.1.1.1.48|4|GigabitEthernet0/0/0/39 +1.3.6.1.2.1.31.1.1.1.1.49|4|GigabitEthernet0/0/0/40 +1.3.6.1.2.1.31.1.1.1.1.50|4|GigabitEthernet0/0/0/41 +1.3.6.1.2.1.31.1.1.1.1.52|4|GigabitEthernet0/0/0/2.10 +1.3.6.1.2.1.31.1.1.1.1.54|4|Loopback0 +1.3.6.1.2.1.31.1.1.1.1.55|4|Loopback10001 +1.3.6.1.2.1.31.1.1.1.1.56|4|PW-Ether2 +1.3.6.1.2.1.31.1.1.1.1.57|4|Bundle-Ether200 +1.3.6.1.2.1.31.1.1.1.1.58|4|Bundle-Ether200.2000 +1.3.6.1.2.1.31.1.1.1.2.2|65|0 +1.3.6.1.2.1.31.1.1.1.2.3|65|0 +1.3.6.1.2.1.31.1.1.1.2.9|65|1784981 +1.3.6.1.2.1.31.1.1.1.2.10|65|0 +1.3.6.1.2.1.31.1.1.1.2.11|65|0 +1.3.6.1.2.1.31.1.1.1.2.12|65|2604687 +1.3.6.1.2.1.31.1.1.1.2.13|65|0 +1.3.6.1.2.1.31.1.1.1.2.14|65|0 +1.3.6.1.2.1.31.1.1.1.2.15|65|0 +1.3.6.1.2.1.31.1.1.1.2.16|65|0 +1.3.6.1.2.1.31.1.1.1.2.17|65|0 +1.3.6.1.2.1.31.1.1.1.2.18|65|0 +1.3.6.1.2.1.31.1.1.1.2.19|65|0 +1.3.6.1.2.1.31.1.1.1.2.20|65|0 +1.3.6.1.2.1.31.1.1.1.2.21|65|0 +1.3.6.1.2.1.31.1.1.1.2.22|65|0 +1.3.6.1.2.1.31.1.1.1.2.23|65|0 +1.3.6.1.2.1.31.1.1.1.2.24|65|0 +1.3.6.1.2.1.31.1.1.1.2.25|65|274354 +1.3.6.1.2.1.31.1.1.1.2.26|65|0 +1.3.6.1.2.1.31.1.1.1.2.27|65|0 +1.3.6.1.2.1.31.1.1.1.2.28|65|0 +1.3.6.1.2.1.31.1.1.1.2.29|65|0 +1.3.6.1.2.1.31.1.1.1.2.30|65|0 +1.3.6.1.2.1.31.1.1.1.2.31|65|1784983 +1.3.6.1.2.1.31.1.1.1.2.32|65|0 +1.3.6.1.2.1.31.1.1.1.2.33|65|0 +1.3.6.1.2.1.31.1.1.1.2.34|65|0 +1.3.6.1.2.1.31.1.1.1.2.35|65|0 +1.3.6.1.2.1.31.1.1.1.2.36|65|0 +1.3.6.1.2.1.31.1.1.1.2.37|65|0 +1.3.6.1.2.1.31.1.1.1.2.38|65|0 +1.3.6.1.2.1.31.1.1.1.2.39|65|0 +1.3.6.1.2.1.31.1.1.1.2.40|65|0 +1.3.6.1.2.1.31.1.1.1.2.41|65|1310 +1.3.6.1.2.1.31.1.1.1.2.42|65|0 +1.3.6.1.2.1.31.1.1.1.2.43|65|0 +1.3.6.1.2.1.31.1.1.1.2.44|65|0 +1.3.6.1.2.1.31.1.1.1.2.45|65|0 +1.3.6.1.2.1.31.1.1.1.2.46|65|0 +1.3.6.1.2.1.31.1.1.1.2.47|65|0 +1.3.6.1.2.1.31.1.1.1.2.48|65|0 +1.3.6.1.2.1.31.1.1.1.2.49|65|0 +1.3.6.1.2.1.31.1.1.1.2.50|65|0 +1.3.6.1.2.1.31.1.1.1.2.52|65|274354 +1.3.6.1.2.1.31.1.1.1.2.56|65|272848 +1.3.6.1.2.1.31.1.1.1.2.57|65|0 +1.3.6.1.2.1.31.1.1.1.3.2|65|0 +1.3.6.1.2.1.31.1.1.1.3.3|65|78036 +1.3.6.1.2.1.31.1.1.1.3.9|65|6 +1.3.6.1.2.1.31.1.1.1.3.10|65|0 +1.3.6.1.2.1.31.1.1.1.3.11|65|0 +1.3.6.1.2.1.31.1.1.1.3.12|65|2 +1.3.6.1.2.1.31.1.1.1.3.13|65|0 +1.3.6.1.2.1.31.1.1.1.3.14|65|0 +1.3.6.1.2.1.31.1.1.1.3.15|65|0 +1.3.6.1.2.1.31.1.1.1.3.16|65|0 +1.3.6.1.2.1.31.1.1.1.3.17|65|0 +1.3.6.1.2.1.31.1.1.1.3.18|65|0 +1.3.6.1.2.1.31.1.1.1.3.19|65|0 +1.3.6.1.2.1.31.1.1.1.3.20|65|0 +1.3.6.1.2.1.31.1.1.1.3.21|65|0 +1.3.6.1.2.1.31.1.1.1.3.22|65|0 +1.3.6.1.2.1.31.1.1.1.3.23|65|0 +1.3.6.1.2.1.31.1.1.1.3.24|65|0 +1.3.6.1.2.1.31.1.1.1.3.25|65|2 +1.3.6.1.2.1.31.1.1.1.3.26|65|0 +1.3.6.1.2.1.31.1.1.1.3.27|65|0 +1.3.6.1.2.1.31.1.1.1.3.28|65|0 +1.3.6.1.2.1.31.1.1.1.3.29|65|0 +1.3.6.1.2.1.31.1.1.1.3.30|65|0 +1.3.6.1.2.1.31.1.1.1.3.31|65|4 +1.3.6.1.2.1.31.1.1.1.3.32|65|0 +1.3.6.1.2.1.31.1.1.1.3.33|65|0 +1.3.6.1.2.1.31.1.1.1.3.34|65|0 +1.3.6.1.2.1.31.1.1.1.3.35|65|0 +1.3.6.1.2.1.31.1.1.1.3.36|65|0 +1.3.6.1.2.1.31.1.1.1.3.37|65|0 +1.3.6.1.2.1.31.1.1.1.3.38|65|0 +1.3.6.1.2.1.31.1.1.1.3.39|65|0 +1.3.6.1.2.1.31.1.1.1.3.40|65|0 +1.3.6.1.2.1.31.1.1.1.3.41|65|0 +1.3.6.1.2.1.31.1.1.1.3.42|65|0 +1.3.6.1.2.1.31.1.1.1.3.43|65|0 +1.3.6.1.2.1.31.1.1.1.3.44|65|0 +1.3.6.1.2.1.31.1.1.1.3.45|65|0 +1.3.6.1.2.1.31.1.1.1.3.46|65|0 +1.3.6.1.2.1.31.1.1.1.3.47|65|0 +1.3.6.1.2.1.31.1.1.1.3.48|65|0 +1.3.6.1.2.1.31.1.1.1.3.49|65|0 +1.3.6.1.2.1.31.1.1.1.3.50|65|0 +1.3.6.1.2.1.31.1.1.1.3.52|65|2 +1.3.6.1.2.1.31.1.1.1.3.56|65|5 +1.3.6.1.2.1.31.1.1.1.3.57|65|0 +1.3.6.1.2.1.31.1.1.1.4.2|65|0 +1.3.6.1.2.1.31.1.1.1.4.3|65|0 +1.3.6.1.2.1.31.1.1.1.4.9|65|2068111 +1.3.6.1.2.1.31.1.1.1.4.10|65|0 +1.3.6.1.2.1.31.1.1.1.4.11|65|0 +1.3.6.1.2.1.31.1.1.1.4.12|65|2604985 +1.3.6.1.2.1.31.1.1.1.4.13|65|0 +1.3.6.1.2.1.31.1.1.1.4.14|65|0 +1.3.6.1.2.1.31.1.1.1.4.15|65|0 +1.3.6.1.2.1.31.1.1.1.4.16|65|0 +1.3.6.1.2.1.31.1.1.1.4.17|65|0 +1.3.6.1.2.1.31.1.1.1.4.18|65|0 +1.3.6.1.2.1.31.1.1.1.4.19|65|0 +1.3.6.1.2.1.31.1.1.1.4.20|65|0 +1.3.6.1.2.1.31.1.1.1.4.21|65|0 +1.3.6.1.2.1.31.1.1.1.4.22|65|0 +1.3.6.1.2.1.31.1.1.1.4.23|65|0 +1.3.6.1.2.1.31.1.1.1.4.24|65|0 +1.3.6.1.2.1.31.1.1.1.4.25|65|449400 +1.3.6.1.2.1.31.1.1.1.4.26|65|0 +1.3.6.1.2.1.31.1.1.1.4.27|65|0 +1.3.6.1.2.1.31.1.1.1.4.28|65|0 +1.3.6.1.2.1.31.1.1.1.4.29|65|0 +1.3.6.1.2.1.31.1.1.1.4.30|65|0 +1.3.6.1.2.1.31.1.1.1.4.31|65|2068236 +1.3.6.1.2.1.31.1.1.1.4.32|65|0 +1.3.6.1.2.1.31.1.1.1.4.33|65|0 +1.3.6.1.2.1.31.1.1.1.4.34|65|0 +1.3.6.1.2.1.31.1.1.1.4.35|65|0 +1.3.6.1.2.1.31.1.1.1.4.36|65|0 +1.3.6.1.2.1.31.1.1.1.4.37|65|0 +1.3.6.1.2.1.31.1.1.1.4.38|65|0 +1.3.6.1.2.1.31.1.1.1.4.39|65|0 +1.3.6.1.2.1.31.1.1.1.4.40|65|0 +1.3.6.1.2.1.31.1.1.1.4.41|65|0 +1.3.6.1.2.1.31.1.1.1.4.42|65|1310 +1.3.6.1.2.1.31.1.1.1.4.43|65|0 +1.3.6.1.2.1.31.1.1.1.4.44|65|0 +1.3.6.1.2.1.31.1.1.1.4.45|65|0 +1.3.6.1.2.1.31.1.1.1.4.46|65|0 +1.3.6.1.2.1.31.1.1.1.4.47|65|0 +1.3.6.1.2.1.31.1.1.1.4.48|65|0 +1.3.6.1.2.1.31.1.1.1.4.49|65|0 +1.3.6.1.2.1.31.1.1.1.4.50|65|0 +1.3.6.1.2.1.31.1.1.1.4.52|65|449400 +1.3.6.1.2.1.31.1.1.1.4.56|65|449331 +1.3.6.1.2.1.31.1.1.1.4.57|65|1310 +1.3.6.1.2.1.31.1.1.1.5.2|65|0 +1.3.6.1.2.1.31.1.1.1.5.3|65|0 +1.3.6.1.2.1.31.1.1.1.5.9|65|5 +1.3.6.1.2.1.31.1.1.1.5.10|65|0 +1.3.6.1.2.1.31.1.1.1.5.11|65|0 +1.3.6.1.2.1.31.1.1.1.5.12|65|1 +1.3.6.1.2.1.31.1.1.1.5.13|65|0 +1.3.6.1.2.1.31.1.1.1.5.14|65|0 +1.3.6.1.2.1.31.1.1.1.5.15|65|0 +1.3.6.1.2.1.31.1.1.1.5.16|65|0 +1.3.6.1.2.1.31.1.1.1.5.17|65|0 +1.3.6.1.2.1.31.1.1.1.5.18|65|0 +1.3.6.1.2.1.31.1.1.1.5.19|65|0 +1.3.6.1.2.1.31.1.1.1.5.20|65|0 +1.3.6.1.2.1.31.1.1.1.5.21|65|0 +1.3.6.1.2.1.31.1.1.1.5.22|65|0 +1.3.6.1.2.1.31.1.1.1.5.23|65|0 +1.3.6.1.2.1.31.1.1.1.5.24|65|0 +1.3.6.1.2.1.31.1.1.1.5.25|65|1 +1.3.6.1.2.1.31.1.1.1.5.26|65|0 +1.3.6.1.2.1.31.1.1.1.5.27|65|0 +1.3.6.1.2.1.31.1.1.1.5.28|65|0 +1.3.6.1.2.1.31.1.1.1.5.29|65|0 +1.3.6.1.2.1.31.1.1.1.5.30|65|0 +1.3.6.1.2.1.31.1.1.1.5.31|65|5 +1.3.6.1.2.1.31.1.1.1.5.32|65|0 +1.3.6.1.2.1.31.1.1.1.5.33|65|0 +1.3.6.1.2.1.31.1.1.1.5.34|65|0 +1.3.6.1.2.1.31.1.1.1.5.35|65|0 +1.3.6.1.2.1.31.1.1.1.5.36|65|0 +1.3.6.1.2.1.31.1.1.1.5.37|65|0 +1.3.6.1.2.1.31.1.1.1.5.38|65|0 +1.3.6.1.2.1.31.1.1.1.5.39|65|0 +1.3.6.1.2.1.31.1.1.1.5.40|65|0 +1.3.6.1.2.1.31.1.1.1.5.41|65|0 +1.3.6.1.2.1.31.1.1.1.5.42|65|0 +1.3.6.1.2.1.31.1.1.1.5.43|65|0 +1.3.6.1.2.1.31.1.1.1.5.44|65|0 +1.3.6.1.2.1.31.1.1.1.5.45|65|0 +1.3.6.1.2.1.31.1.1.1.5.46|65|0 +1.3.6.1.2.1.31.1.1.1.5.47|65|0 +1.3.6.1.2.1.31.1.1.1.5.48|65|0 +1.3.6.1.2.1.31.1.1.1.5.49|65|0 +1.3.6.1.2.1.31.1.1.1.5.50|65|0 +1.3.6.1.2.1.31.1.1.1.5.52|65|1 +1.3.6.1.2.1.31.1.1.1.5.56|65|0 +1.3.6.1.2.1.31.1.1.1.5.57|65|0 +1.3.6.1.2.1.31.1.1.1.6.2|70|0 +1.3.6.1.2.1.31.1.1.1.6.3|70|189098470 +1.3.6.1.2.1.31.1.1.1.6.9|70|4287915887 +1.3.6.1.2.1.31.1.1.1.6.10|70|0 +1.3.6.1.2.1.31.1.1.1.6.11|70|0 +1.3.6.1.2.1.31.1.1.1.6.12|70|2722182088 +1.3.6.1.2.1.31.1.1.1.6.13|70|0 +1.3.6.1.2.1.31.1.1.1.6.14|70|0 +1.3.6.1.2.1.31.1.1.1.6.15|70|0 +1.3.6.1.2.1.31.1.1.1.6.16|70|0 +1.3.6.1.2.1.31.1.1.1.6.17|70|0 +1.3.6.1.2.1.31.1.1.1.6.18|70|0 +1.3.6.1.2.1.31.1.1.1.6.19|70|0 +1.3.6.1.2.1.31.1.1.1.6.20|70|0 +1.3.6.1.2.1.31.1.1.1.6.21|70|0 +1.3.6.1.2.1.31.1.1.1.6.22|70|0 +1.3.6.1.2.1.31.1.1.1.6.23|70|0 +1.3.6.1.2.1.31.1.1.1.6.24|70|0 +1.3.6.1.2.1.31.1.1.1.6.25|70|202527835 +1.3.6.1.2.1.31.1.1.1.6.26|70|0 +1.3.6.1.2.1.31.1.1.1.6.27|70|0 +1.3.6.1.2.1.31.1.1.1.6.28|70|0 +1.3.6.1.2.1.31.1.1.1.6.29|70|0 +1.3.6.1.2.1.31.1.1.1.6.30|70|0 +1.3.6.1.2.1.31.1.1.1.6.31|70|1423799512 +1.3.6.1.2.1.31.1.1.1.6.32|70|0 +1.3.6.1.2.1.31.1.1.1.6.33|70|0 +1.3.6.1.2.1.31.1.1.1.6.34|70|0 +1.3.6.1.2.1.31.1.1.1.6.35|70|0 +1.3.6.1.2.1.31.1.1.1.6.36|70|0 +1.3.6.1.2.1.31.1.1.1.6.37|70|96 +1.3.6.1.2.1.31.1.1.1.6.38|70|0 +1.3.6.1.2.1.31.1.1.1.6.39|70|0 +1.3.6.1.2.1.31.1.1.1.6.40|70|0 +1.3.6.1.2.1.31.1.1.1.6.41|70|167680 +1.3.6.1.2.1.31.1.1.1.6.42|70|0 +1.3.6.1.2.1.31.1.1.1.6.43|70|0 +1.3.6.1.2.1.31.1.1.1.6.44|70|0 +1.3.6.1.2.1.31.1.1.1.6.45|70|0 +1.3.6.1.2.1.31.1.1.1.6.46|70|0 +1.3.6.1.2.1.31.1.1.1.6.47|70|0 +1.3.6.1.2.1.31.1.1.1.6.48|70|0 +1.3.6.1.2.1.31.1.1.1.6.49|70|0 +1.3.6.1.2.1.31.1.1.1.6.50|70|0 +1.3.6.1.2.1.31.1.1.1.6.52|70|202527378 +1.3.6.1.2.1.31.1.1.1.6.56|70|175745940 +1.3.6.1.2.1.31.1.1.1.6.57|70|0 +1.3.6.1.2.1.31.1.1.1.6.58|70|0 +1.3.6.1.2.1.31.1.1.1.7.2|70|0 +1.3.6.1.2.1.31.1.1.1.7.3|70|1847040 +1.3.6.1.2.1.31.1.1.1.7.9|70|26509534 +1.3.6.1.2.1.31.1.1.1.7.10|70|0 +1.3.6.1.2.1.31.1.1.1.7.11|70|0 +1.3.6.1.2.1.31.1.1.1.7.12|70|38818513 +1.3.6.1.2.1.31.1.1.1.7.13|70|0 +1.3.6.1.2.1.31.1.1.1.7.14|70|0 +1.3.6.1.2.1.31.1.1.1.7.15|70|0 +1.3.6.1.2.1.31.1.1.1.7.16|70|0 +1.3.6.1.2.1.31.1.1.1.7.17|70|0 +1.3.6.1.2.1.31.1.1.1.7.18|70|0 +1.3.6.1.2.1.31.1.1.1.7.19|70|0 +1.3.6.1.2.1.31.1.1.1.7.20|70|0 +1.3.6.1.2.1.31.1.1.1.7.21|70|0 +1.3.6.1.2.1.31.1.1.1.7.22|70|0 +1.3.6.1.2.1.31.1.1.1.7.23|70|0 +1.3.6.1.2.1.31.1.1.1.7.24|70|0 +1.3.6.1.2.1.31.1.1.1.7.25|70|1816822 +1.3.6.1.2.1.31.1.1.1.7.26|70|0 +1.3.6.1.2.1.31.1.1.1.7.27|70|0 +1.3.6.1.2.1.31.1.1.1.7.28|70|0 +1.3.6.1.2.1.31.1.1.1.7.29|70|0 +1.3.6.1.2.1.31.1.1.1.7.30|70|0 +1.3.6.1.2.1.31.1.1.1.7.31|70|17983908 +1.3.6.1.2.1.31.1.1.1.7.32|70|0 +1.3.6.1.2.1.31.1.1.1.7.33|70|0 +1.3.6.1.2.1.31.1.1.1.7.34|70|0 +1.3.6.1.2.1.31.1.1.1.7.35|70|0 +1.3.6.1.2.1.31.1.1.1.7.36|70|0 +1.3.6.1.2.1.31.1.1.1.7.37|70|0 +1.3.6.1.2.1.31.1.1.1.7.38|70|0 +1.3.6.1.2.1.31.1.1.1.7.39|70|0 +1.3.6.1.2.1.31.1.1.1.7.40|70|0 +1.3.6.1.2.1.31.1.1.1.7.41|70|0 +1.3.6.1.2.1.31.1.1.1.7.42|70|0 +1.3.6.1.2.1.31.1.1.1.7.43|70|0 +1.3.6.1.2.1.31.1.1.1.7.44|70|0 +1.3.6.1.2.1.31.1.1.1.7.45|70|0 +1.3.6.1.2.1.31.1.1.1.7.46|70|0 +1.3.6.1.2.1.31.1.1.1.7.47|70|0 +1.3.6.1.2.1.31.1.1.1.7.48|70|0 +1.3.6.1.2.1.31.1.1.1.7.49|70|0 +1.3.6.1.2.1.31.1.1.1.7.50|70|0 +1.3.6.1.2.1.31.1.1.1.7.52|70|1816817 +1.3.6.1.2.1.31.1.1.1.7.56|70|1589985 +1.3.6.1.2.1.31.1.1.1.7.57|70|0 +1.3.6.1.2.1.31.1.1.1.7.58|70|0 +1.3.6.1.2.1.31.1.1.1.8.2|70|0 +1.3.6.1.2.1.31.1.1.1.8.3|70|0 +1.3.6.1.2.1.31.1.1.1.8.9|70|1784981 +1.3.6.1.2.1.31.1.1.1.8.10|70|0 +1.3.6.1.2.1.31.1.1.1.8.11|70|0 +1.3.6.1.2.1.31.1.1.1.8.12|70|2604687 +1.3.6.1.2.1.31.1.1.1.8.13|70|0 +1.3.6.1.2.1.31.1.1.1.8.14|70|0 +1.3.6.1.2.1.31.1.1.1.8.15|70|0 +1.3.6.1.2.1.31.1.1.1.8.16|70|0 +1.3.6.1.2.1.31.1.1.1.8.17|70|0 +1.3.6.1.2.1.31.1.1.1.8.18|70|0 +1.3.6.1.2.1.31.1.1.1.8.19|70|0 +1.3.6.1.2.1.31.1.1.1.8.20|70|0 +1.3.6.1.2.1.31.1.1.1.8.21|70|0 +1.3.6.1.2.1.31.1.1.1.8.22|70|0 +1.3.6.1.2.1.31.1.1.1.8.23|70|0 +1.3.6.1.2.1.31.1.1.1.8.24|70|0 +1.3.6.1.2.1.31.1.1.1.8.25|70|274354 +1.3.6.1.2.1.31.1.1.1.8.26|70|0 +1.3.6.1.2.1.31.1.1.1.8.27|70|0 +1.3.6.1.2.1.31.1.1.1.8.28|70|0 +1.3.6.1.2.1.31.1.1.1.8.29|70|0 +1.3.6.1.2.1.31.1.1.1.8.30|70|0 +1.3.6.1.2.1.31.1.1.1.8.31|70|1784983 +1.3.6.1.2.1.31.1.1.1.8.32|70|0 +1.3.6.1.2.1.31.1.1.1.8.33|70|0 +1.3.6.1.2.1.31.1.1.1.8.34|70|0 +1.3.6.1.2.1.31.1.1.1.8.35|70|0 +1.3.6.1.2.1.31.1.1.1.8.36|70|0 +1.3.6.1.2.1.31.1.1.1.8.37|70|0 +1.3.6.1.2.1.31.1.1.1.8.38|70|0 +1.3.6.1.2.1.31.1.1.1.8.39|70|0 +1.3.6.1.2.1.31.1.1.1.8.40|70|0 +1.3.6.1.2.1.31.1.1.1.8.41|70|1310 +1.3.6.1.2.1.31.1.1.1.8.42|70|0 +1.3.6.1.2.1.31.1.1.1.8.43|70|0 +1.3.6.1.2.1.31.1.1.1.8.44|70|0 +1.3.6.1.2.1.31.1.1.1.8.45|70|0 +1.3.6.1.2.1.31.1.1.1.8.46|70|0 +1.3.6.1.2.1.31.1.1.1.8.47|70|0 +1.3.6.1.2.1.31.1.1.1.8.48|70|0 +1.3.6.1.2.1.31.1.1.1.8.49|70|0 +1.3.6.1.2.1.31.1.1.1.8.50|70|0 +1.3.6.1.2.1.31.1.1.1.8.52|70|274354 +1.3.6.1.2.1.31.1.1.1.8.56|70|272848 +1.3.6.1.2.1.31.1.1.1.8.57|70|0 +1.3.6.1.2.1.31.1.1.1.9.2|70|0 +1.3.6.1.2.1.31.1.1.1.9.3|70|78036 +1.3.6.1.2.1.31.1.1.1.9.9|70|6 +1.3.6.1.2.1.31.1.1.1.9.10|70|0 +1.3.6.1.2.1.31.1.1.1.9.11|70|0 +1.3.6.1.2.1.31.1.1.1.9.12|70|2 +1.3.6.1.2.1.31.1.1.1.9.13|70|0 +1.3.6.1.2.1.31.1.1.1.9.14|70|0 +1.3.6.1.2.1.31.1.1.1.9.15|70|0 +1.3.6.1.2.1.31.1.1.1.9.16|70|0 +1.3.6.1.2.1.31.1.1.1.9.17|70|0 +1.3.6.1.2.1.31.1.1.1.9.18|70|0 +1.3.6.1.2.1.31.1.1.1.9.19|70|0 +1.3.6.1.2.1.31.1.1.1.9.20|70|0 +1.3.6.1.2.1.31.1.1.1.9.21|70|0 +1.3.6.1.2.1.31.1.1.1.9.22|70|0 +1.3.6.1.2.1.31.1.1.1.9.23|70|0 +1.3.6.1.2.1.31.1.1.1.9.24|70|0 +1.3.6.1.2.1.31.1.1.1.9.25|70|2 +1.3.6.1.2.1.31.1.1.1.9.26|70|0 +1.3.6.1.2.1.31.1.1.1.9.27|70|0 +1.3.6.1.2.1.31.1.1.1.9.28|70|0 +1.3.6.1.2.1.31.1.1.1.9.29|70|0 +1.3.6.1.2.1.31.1.1.1.9.30|70|0 +1.3.6.1.2.1.31.1.1.1.9.31|70|4 +1.3.6.1.2.1.31.1.1.1.9.32|70|0 +1.3.6.1.2.1.31.1.1.1.9.33|70|0 +1.3.6.1.2.1.31.1.1.1.9.34|70|0 +1.3.6.1.2.1.31.1.1.1.9.35|70|0 +1.3.6.1.2.1.31.1.1.1.9.36|70|0 +1.3.6.1.2.1.31.1.1.1.9.37|70|0 +1.3.6.1.2.1.31.1.1.1.9.38|70|0 +1.3.6.1.2.1.31.1.1.1.9.39|70|0 +1.3.6.1.2.1.31.1.1.1.9.40|70|0 +1.3.6.1.2.1.31.1.1.1.9.41|70|0 +1.3.6.1.2.1.31.1.1.1.9.42|70|0 +1.3.6.1.2.1.31.1.1.1.9.43|70|0 +1.3.6.1.2.1.31.1.1.1.9.44|70|0 +1.3.6.1.2.1.31.1.1.1.9.45|70|0 +1.3.6.1.2.1.31.1.1.1.9.46|70|0 +1.3.6.1.2.1.31.1.1.1.9.47|70|0 +1.3.6.1.2.1.31.1.1.1.9.48|70|0 +1.3.6.1.2.1.31.1.1.1.9.49|70|0 +1.3.6.1.2.1.31.1.1.1.9.50|70|0 +1.3.6.1.2.1.31.1.1.1.9.52|70|2 +1.3.6.1.2.1.31.1.1.1.9.56|70|5 +1.3.6.1.2.1.31.1.1.1.9.57|70|0 +1.3.6.1.2.1.31.1.1.1.10.2|70|0 +1.3.6.1.2.1.31.1.1.1.10.3|70|533427990 +1.3.6.1.2.1.31.1.1.1.10.9|70|4508761686 +1.3.6.1.2.1.31.1.1.1.10.10|70|0 +1.3.6.1.2.1.31.1.1.1.10.11|70|0 +1.3.6.1.2.1.31.1.1.1.10.12|70|2722546090 +1.3.6.1.2.1.31.1.1.1.10.13|70|0 +1.3.6.1.2.1.31.1.1.1.10.14|70|0 +1.3.6.1.2.1.31.1.1.1.10.15|70|0 +1.3.6.1.2.1.31.1.1.1.10.16|70|0 +1.3.6.1.2.1.31.1.1.1.10.17|70|0 +1.3.6.1.2.1.31.1.1.1.10.18|70|0 +1.3.6.1.2.1.31.1.1.1.10.19|70|0 +1.3.6.1.2.1.31.1.1.1.10.20|70|0 +1.3.6.1.2.1.31.1.1.1.10.21|70|0 +1.3.6.1.2.1.31.1.1.1.10.22|70|0 +1.3.6.1.2.1.31.1.1.1.10.23|70|0 +1.3.6.1.2.1.31.1.1.1.10.24|70|0 +1.3.6.1.2.1.31.1.1.1.10.25|70|247115063 +1.3.6.1.2.1.31.1.1.1.10.26|70|0 +1.3.6.1.2.1.31.1.1.1.10.27|70|0 +1.3.6.1.2.1.31.1.1.1.10.28|70|0 +1.3.6.1.2.1.31.1.1.1.10.29|70|0 +1.3.6.1.2.1.31.1.1.1.10.30|70|0 +1.3.6.1.2.1.31.1.1.1.10.31|70|1558897290 +1.3.6.1.2.1.31.1.1.1.10.32|70|0 +1.3.6.1.2.1.31.1.1.1.10.33|70|0 +1.3.6.1.2.1.31.1.1.1.10.34|70|0 +1.3.6.1.2.1.31.1.1.1.10.35|70|0 +1.3.6.1.2.1.31.1.1.1.10.36|70|0 +1.3.6.1.2.1.31.1.1.1.10.37|70|0 +1.3.6.1.2.1.31.1.1.1.10.38|70|0 +1.3.6.1.2.1.31.1.1.1.10.39|70|0 +1.3.6.1.2.1.31.1.1.1.10.40|70|0 +1.3.6.1.2.1.31.1.1.1.10.41|70|0 +1.3.6.1.2.1.31.1.1.1.10.42|70|167680 +1.3.6.1.2.1.31.1.1.1.10.43|70|0 +1.3.6.1.2.1.31.1.1.1.10.44|70|0 +1.3.6.1.2.1.31.1.1.1.10.45|70|0 +1.3.6.1.2.1.31.1.1.1.10.46|70|0 +1.3.6.1.2.1.31.1.1.1.10.47|70|0 +1.3.6.1.2.1.31.1.1.1.10.48|70|0 +1.3.6.1.2.1.31.1.1.1.10.49|70|0 +1.3.6.1.2.1.31.1.1.1.10.50|70|0 +1.3.6.1.2.1.31.1.1.1.10.52|70|23254980 +1.3.6.1.2.1.31.1.1.1.10.56|70|200286730 +1.3.6.1.2.1.31.1.1.1.10.57|70|167680 +1.3.6.1.2.1.31.1.1.1.10.58|70|0 +1.3.6.1.2.1.31.1.1.1.11.2|70|0 +1.3.6.1.2.1.31.1.1.1.11.3|70|1801999 +1.3.6.1.2.1.31.1.1.1.11.9|70|28377369 +1.3.6.1.2.1.31.1.1.1.11.10|70|0 +1.3.6.1.2.1.31.1.1.1.11.11|70|0 +1.3.6.1.2.1.31.1.1.1.11.12|70|38821412 +1.3.6.1.2.1.31.1.1.1.11.13|70|0 +1.3.6.1.2.1.31.1.1.1.11.14|70|0 +1.3.6.1.2.1.31.1.1.1.11.15|70|0 +1.3.6.1.2.1.31.1.1.1.11.16|70|0 +1.3.6.1.2.1.31.1.1.1.11.17|70|0 +1.3.6.1.2.1.31.1.1.1.11.18|70|0 +1.3.6.1.2.1.31.1.1.1.11.19|70|0 +1.3.6.1.2.1.31.1.1.1.11.20|70|0 +1.3.6.1.2.1.31.1.1.1.11.21|70|0 +1.3.6.1.2.1.31.1.1.1.11.22|70|0 +1.3.6.1.2.1.31.1.1.1.11.23|70|0 +1.3.6.1.2.1.31.1.1.1.11.24|70|0 +1.3.6.1.2.1.31.1.1.1.11.25|70|1753698 +1.3.6.1.2.1.31.1.1.1.11.26|70|0 +1.3.6.1.2.1.31.1.1.1.11.27|70|0 +1.3.6.1.2.1.31.1.1.1.11.28|70|0 +1.3.6.1.2.1.31.1.1.1.11.29|70|0 +1.3.6.1.2.1.31.1.1.1.11.30|70|0 +1.3.6.1.2.1.31.1.1.1.11.31|70|19645946 +1.3.6.1.2.1.31.1.1.1.11.32|70|0 +1.3.6.1.2.1.31.1.1.1.11.33|70|0 +1.3.6.1.2.1.31.1.1.1.11.34|70|0 +1.3.6.1.2.1.31.1.1.1.11.35|70|0 +1.3.6.1.2.1.31.1.1.1.11.36|70|0 +1.3.6.1.2.1.31.1.1.1.11.37|70|0 +1.3.6.1.2.1.31.1.1.1.11.38|70|0 +1.3.6.1.2.1.31.1.1.1.11.39|70|0 +1.3.6.1.2.1.31.1.1.1.11.40|70|0 +1.3.6.1.2.1.31.1.1.1.11.41|70|0 +1.3.6.1.2.1.31.1.1.1.11.42|70|0 +1.3.6.1.2.1.31.1.1.1.11.43|70|0 +1.3.6.1.2.1.31.1.1.1.11.44|70|0 +1.3.6.1.2.1.31.1.1.1.11.45|70|0 +1.3.6.1.2.1.31.1.1.1.11.46|70|0 +1.3.6.1.2.1.31.1.1.1.11.47|70|0 +1.3.6.1.2.1.31.1.1.1.11.48|70|0 +1.3.6.1.2.1.31.1.1.1.11.49|70|0 +1.3.6.1.2.1.31.1.1.1.11.50|70|0 +1.3.6.1.2.1.31.1.1.1.11.52|70|0 +1.3.6.1.2.1.31.1.1.1.11.56|70|1480019 +1.3.6.1.2.1.31.1.1.1.11.57|70|0 +1.3.6.1.2.1.31.1.1.1.11.58|70|0 +1.3.6.1.2.1.31.1.1.1.12.2|70|0 +1.3.6.1.2.1.31.1.1.1.12.3|70|0 +1.3.6.1.2.1.31.1.1.1.12.9|70|2068111 +1.3.6.1.2.1.31.1.1.1.12.10|70|0 +1.3.6.1.2.1.31.1.1.1.12.11|70|0 +1.3.6.1.2.1.31.1.1.1.12.12|70|2604985 +1.3.6.1.2.1.31.1.1.1.12.13|70|0 +1.3.6.1.2.1.31.1.1.1.12.14|70|0 +1.3.6.1.2.1.31.1.1.1.12.15|70|0 +1.3.6.1.2.1.31.1.1.1.12.16|70|0 +1.3.6.1.2.1.31.1.1.1.12.17|70|0 +1.3.6.1.2.1.31.1.1.1.12.18|70|0 +1.3.6.1.2.1.31.1.1.1.12.19|70|0 +1.3.6.1.2.1.31.1.1.1.12.20|70|0 +1.3.6.1.2.1.31.1.1.1.12.21|70|0 +1.3.6.1.2.1.31.1.1.1.12.22|70|0 +1.3.6.1.2.1.31.1.1.1.12.23|70|0 +1.3.6.1.2.1.31.1.1.1.12.24|70|0 +1.3.6.1.2.1.31.1.1.1.12.25|70|449400 +1.3.6.1.2.1.31.1.1.1.12.26|70|0 +1.3.6.1.2.1.31.1.1.1.12.27|70|0 +1.3.6.1.2.1.31.1.1.1.12.28|70|0 +1.3.6.1.2.1.31.1.1.1.12.29|70|0 +1.3.6.1.2.1.31.1.1.1.12.30|70|0 +1.3.6.1.2.1.31.1.1.1.12.31|70|2068236 +1.3.6.1.2.1.31.1.1.1.12.32|70|0 +1.3.6.1.2.1.31.1.1.1.12.33|70|0 +1.3.6.1.2.1.31.1.1.1.12.34|70|0 +1.3.6.1.2.1.31.1.1.1.12.35|70|0 +1.3.6.1.2.1.31.1.1.1.12.36|70|0 +1.3.6.1.2.1.31.1.1.1.12.37|70|0 +1.3.6.1.2.1.31.1.1.1.12.38|70|0 +1.3.6.1.2.1.31.1.1.1.12.39|70|0 +1.3.6.1.2.1.31.1.1.1.12.40|70|0 +1.3.6.1.2.1.31.1.1.1.12.41|70|0 +1.3.6.1.2.1.31.1.1.1.12.42|70|1310 +1.3.6.1.2.1.31.1.1.1.12.43|70|0 +1.3.6.1.2.1.31.1.1.1.12.44|70|0 +1.3.6.1.2.1.31.1.1.1.12.45|70|0 +1.3.6.1.2.1.31.1.1.1.12.46|70|0 +1.3.6.1.2.1.31.1.1.1.12.47|70|0 +1.3.6.1.2.1.31.1.1.1.12.48|70|0 +1.3.6.1.2.1.31.1.1.1.12.49|70|0 +1.3.6.1.2.1.31.1.1.1.12.50|70|0 +1.3.6.1.2.1.31.1.1.1.12.52|70|449400 +1.3.6.1.2.1.31.1.1.1.12.56|70|449331 +1.3.6.1.2.1.31.1.1.1.12.57|70|1310 +1.3.6.1.2.1.31.1.1.1.13.2|70|0 +1.3.6.1.2.1.31.1.1.1.13.3|70|0 +1.3.6.1.2.1.31.1.1.1.13.9|70|5 +1.3.6.1.2.1.31.1.1.1.13.10|70|0 +1.3.6.1.2.1.31.1.1.1.13.11|70|0 +1.3.6.1.2.1.31.1.1.1.13.12|70|1 +1.3.6.1.2.1.31.1.1.1.13.13|70|0 +1.3.6.1.2.1.31.1.1.1.13.14|70|0 +1.3.6.1.2.1.31.1.1.1.13.15|70|0 +1.3.6.1.2.1.31.1.1.1.13.16|70|0 +1.3.6.1.2.1.31.1.1.1.13.17|70|0 +1.3.6.1.2.1.31.1.1.1.13.18|70|0 +1.3.6.1.2.1.31.1.1.1.13.19|70|0 +1.3.6.1.2.1.31.1.1.1.13.20|70|0 +1.3.6.1.2.1.31.1.1.1.13.21|70|0 +1.3.6.1.2.1.31.1.1.1.13.22|70|0 +1.3.6.1.2.1.31.1.1.1.13.23|70|0 +1.3.6.1.2.1.31.1.1.1.13.24|70|0 +1.3.6.1.2.1.31.1.1.1.13.25|70|1 +1.3.6.1.2.1.31.1.1.1.13.26|70|0 +1.3.6.1.2.1.31.1.1.1.13.27|70|0 +1.3.6.1.2.1.31.1.1.1.13.28|70|0 +1.3.6.1.2.1.31.1.1.1.13.29|70|0 +1.3.6.1.2.1.31.1.1.1.13.30|70|0 +1.3.6.1.2.1.31.1.1.1.13.31|70|5 +1.3.6.1.2.1.31.1.1.1.13.32|70|0 +1.3.6.1.2.1.31.1.1.1.13.33|70|0 +1.3.6.1.2.1.31.1.1.1.13.34|70|0 +1.3.6.1.2.1.31.1.1.1.13.35|70|0 +1.3.6.1.2.1.31.1.1.1.13.36|70|0 +1.3.6.1.2.1.31.1.1.1.13.37|70|0 +1.3.6.1.2.1.31.1.1.1.13.38|70|0 +1.3.6.1.2.1.31.1.1.1.13.39|70|0 +1.3.6.1.2.1.31.1.1.1.13.40|70|0 +1.3.6.1.2.1.31.1.1.1.13.41|70|0 +1.3.6.1.2.1.31.1.1.1.13.42|70|0 +1.3.6.1.2.1.31.1.1.1.13.43|70|0 +1.3.6.1.2.1.31.1.1.1.13.44|70|0 +1.3.6.1.2.1.31.1.1.1.13.45|70|0 +1.3.6.1.2.1.31.1.1.1.13.46|70|0 +1.3.6.1.2.1.31.1.1.1.13.47|70|0 +1.3.6.1.2.1.31.1.1.1.13.48|70|0 +1.3.6.1.2.1.31.1.1.1.13.49|70|0 +1.3.6.1.2.1.31.1.1.1.13.50|70|0 +1.3.6.1.2.1.31.1.1.1.13.52|70|1 +1.3.6.1.2.1.31.1.1.1.13.56|70|0 +1.3.6.1.2.1.31.1.1.1.13.57|70|0 +1.3.6.1.2.1.31.1.1.1.14.2|2|1 +1.3.6.1.2.1.31.1.1.1.14.3|2|1 +1.3.6.1.2.1.31.1.1.1.14.9|2|1 +1.3.6.1.2.1.31.1.1.1.14.10|2|1 +1.3.6.1.2.1.31.1.1.1.14.11|2|1 +1.3.6.1.2.1.31.1.1.1.14.12|2|1 +1.3.6.1.2.1.31.1.1.1.14.13|2|1 +1.3.6.1.2.1.31.1.1.1.14.14|2|1 +1.3.6.1.2.1.31.1.1.1.14.15|2|1 +1.3.6.1.2.1.31.1.1.1.14.16|2|1 +1.3.6.1.2.1.31.1.1.1.14.17|2|1 +1.3.6.1.2.1.31.1.1.1.14.18|2|1 +1.3.6.1.2.1.31.1.1.1.14.19|2|1 +1.3.6.1.2.1.31.1.1.1.14.20|2|1 +1.3.6.1.2.1.31.1.1.1.14.21|2|1 +1.3.6.1.2.1.31.1.1.1.14.22|2|1 +1.3.6.1.2.1.31.1.1.1.14.23|2|1 +1.3.6.1.2.1.31.1.1.1.14.24|2|1 +1.3.6.1.2.1.31.1.1.1.14.25|2|1 +1.3.6.1.2.1.31.1.1.1.14.26|2|1 +1.3.6.1.2.1.31.1.1.1.14.27|2|1 +1.3.6.1.2.1.31.1.1.1.14.28|2|1 +1.3.6.1.2.1.31.1.1.1.14.29|2|1 +1.3.6.1.2.1.31.1.1.1.14.30|2|1 +1.3.6.1.2.1.31.1.1.1.14.31|2|1 +1.3.6.1.2.1.31.1.1.1.14.32|2|1 +1.3.6.1.2.1.31.1.1.1.14.33|2|1 +1.3.6.1.2.1.31.1.1.1.14.34|2|1 +1.3.6.1.2.1.31.1.1.1.14.35|2|1 +1.3.6.1.2.1.31.1.1.1.14.36|2|1 +1.3.6.1.2.1.31.1.1.1.14.37|2|1 +1.3.6.1.2.1.31.1.1.1.14.38|2|1 +1.3.6.1.2.1.31.1.1.1.14.39|2|1 +1.3.6.1.2.1.31.1.1.1.14.40|2|1 +1.3.6.1.2.1.31.1.1.1.14.41|2|1 +1.3.6.1.2.1.31.1.1.1.14.42|2|1 +1.3.6.1.2.1.31.1.1.1.14.43|2|1 +1.3.6.1.2.1.31.1.1.1.14.44|2|1 +1.3.6.1.2.1.31.1.1.1.14.45|2|1 +1.3.6.1.2.1.31.1.1.1.14.46|2|1 +1.3.6.1.2.1.31.1.1.1.14.47|2|1 +1.3.6.1.2.1.31.1.1.1.14.48|2|1 +1.3.6.1.2.1.31.1.1.1.14.49|2|1 +1.3.6.1.2.1.31.1.1.1.14.50|2|1 +1.3.6.1.2.1.31.1.1.1.14.52|2|2 +1.3.6.1.2.1.31.1.1.1.14.54|2|1 +1.3.6.1.2.1.31.1.1.1.14.55|2|1 +1.3.6.1.2.1.31.1.1.1.14.56|2|1 +1.3.6.1.2.1.31.1.1.1.14.57|2|1 +1.3.6.1.2.1.31.1.1.1.14.58|2|2 +1.3.6.1.2.1.31.1.1.1.15.2|66|0 +1.3.6.1.2.1.31.1.1.1.15.3|66|1000 +1.3.6.1.2.1.31.1.1.1.15.9|66|100000 +1.3.6.1.2.1.31.1.1.1.15.10|66|10000 +1.3.6.1.2.1.31.1.1.1.15.11|66|10000 +1.3.6.1.2.1.31.1.1.1.15.12|66|10000 +1.3.6.1.2.1.31.1.1.1.15.13|66|10000 +1.3.6.1.2.1.31.1.1.1.15.14|66|10000 +1.3.6.1.2.1.31.1.1.1.15.15|66|10000 +1.3.6.1.2.1.31.1.1.1.15.16|66|10000 +1.3.6.1.2.1.31.1.1.1.15.17|66|10000 +1.3.6.1.2.1.31.1.1.1.15.18|66|10000 +1.3.6.1.2.1.31.1.1.1.15.19|66|10000 +1.3.6.1.2.1.31.1.1.1.15.20|66|10000 +1.3.6.1.2.1.31.1.1.1.15.21|66|10000 +1.3.6.1.2.1.31.1.1.1.15.22|66|100000 +1.3.6.1.2.1.31.1.1.1.15.23|66|1000 +1.3.6.1.2.1.31.1.1.1.15.24|66|1000 +1.3.6.1.2.1.31.1.1.1.15.25|66|1000 +1.3.6.1.2.1.31.1.1.1.15.26|66|1000 +1.3.6.1.2.1.31.1.1.1.15.27|66|1000 +1.3.6.1.2.1.31.1.1.1.15.28|66|1000 +1.3.6.1.2.1.31.1.1.1.15.29|66|1000 +1.3.6.1.2.1.31.1.1.1.15.30|66|1000 +1.3.6.1.2.1.31.1.1.1.15.31|66|10000 +1.3.6.1.2.1.31.1.1.1.15.32|66|10000 +1.3.6.1.2.1.31.1.1.1.15.33|66|10000 +1.3.6.1.2.1.31.1.1.1.15.34|66|10000 +1.3.6.1.2.1.31.1.1.1.15.35|66|10000 +1.3.6.1.2.1.31.1.1.1.15.36|66|10000 +1.3.6.1.2.1.31.1.1.1.15.37|66|10000 +1.3.6.1.2.1.31.1.1.1.15.38|66|10000 +1.3.6.1.2.1.31.1.1.1.15.39|66|10000 +1.3.6.1.2.1.31.1.1.1.15.40|66|10000 +1.3.6.1.2.1.31.1.1.1.15.41|66|10000 +1.3.6.1.2.1.31.1.1.1.15.42|66|10000 +1.3.6.1.2.1.31.1.1.1.15.43|66|1000 +1.3.6.1.2.1.31.1.1.1.15.44|66|1000 +1.3.6.1.2.1.31.1.1.1.15.45|66|1000 +1.3.6.1.2.1.31.1.1.1.15.46|66|1000 +1.3.6.1.2.1.31.1.1.1.15.47|66|1000 +1.3.6.1.2.1.31.1.1.1.15.48|66|1000 +1.3.6.1.2.1.31.1.1.1.15.49|66|1000 +1.3.6.1.2.1.31.1.1.1.15.50|66|1000 +1.3.6.1.2.1.31.1.1.1.15.52|66|1000 +1.3.6.1.2.1.31.1.1.1.15.54|66|0 +1.3.6.1.2.1.31.1.1.1.15.55|66|0 +1.3.6.1.2.1.31.1.1.1.15.56|66|10 +1.3.6.1.2.1.31.1.1.1.15.57|66|0 +1.3.6.1.2.1.31.1.1.1.15.58|66|0 +1.3.6.1.2.1.31.1.1.1.16.2|2|2 +1.3.6.1.2.1.31.1.1.1.16.3|2|2 +1.3.6.1.2.1.31.1.1.1.16.9|2|2 +1.3.6.1.2.1.31.1.1.1.16.10|2|2 +1.3.6.1.2.1.31.1.1.1.16.11|2|2 +1.3.6.1.2.1.31.1.1.1.16.12|2|2 +1.3.6.1.2.1.31.1.1.1.16.13|2|2 +1.3.6.1.2.1.31.1.1.1.16.14|2|2 +1.3.6.1.2.1.31.1.1.1.16.15|2|2 +1.3.6.1.2.1.31.1.1.1.16.16|2|2 +1.3.6.1.2.1.31.1.1.1.16.17|2|2 +1.3.6.1.2.1.31.1.1.1.16.18|2|2 +1.3.6.1.2.1.31.1.1.1.16.19|2|2 +1.3.6.1.2.1.31.1.1.1.16.20|2|2 +1.3.6.1.2.1.31.1.1.1.16.21|2|2 +1.3.6.1.2.1.31.1.1.1.16.22|2|2 +1.3.6.1.2.1.31.1.1.1.16.23|2|2 +1.3.6.1.2.1.31.1.1.1.16.24|2|2 +1.3.6.1.2.1.31.1.1.1.16.25|2|2 +1.3.6.1.2.1.31.1.1.1.16.26|2|2 +1.3.6.1.2.1.31.1.1.1.16.27|2|2 +1.3.6.1.2.1.31.1.1.1.16.28|2|2 +1.3.6.1.2.1.31.1.1.1.16.29|2|2 +1.3.6.1.2.1.31.1.1.1.16.30|2|2 +1.3.6.1.2.1.31.1.1.1.16.31|2|2 +1.3.6.1.2.1.31.1.1.1.16.32|2|2 +1.3.6.1.2.1.31.1.1.1.16.33|2|2 +1.3.6.1.2.1.31.1.1.1.16.34|2|2 +1.3.6.1.2.1.31.1.1.1.16.35|2|2 +1.3.6.1.2.1.31.1.1.1.16.36|2|2 +1.3.6.1.2.1.31.1.1.1.16.37|2|2 +1.3.6.1.2.1.31.1.1.1.16.38|2|2 +1.3.6.1.2.1.31.1.1.1.16.39|2|2 +1.3.6.1.2.1.31.1.1.1.16.40|2|2 +1.3.6.1.2.1.31.1.1.1.16.41|2|2 +1.3.6.1.2.1.31.1.1.1.16.42|2|2 +1.3.6.1.2.1.31.1.1.1.16.43|2|2 +1.3.6.1.2.1.31.1.1.1.16.44|2|2 +1.3.6.1.2.1.31.1.1.1.16.45|2|2 +1.3.6.1.2.1.31.1.1.1.16.46|2|2 +1.3.6.1.2.1.31.1.1.1.16.47|2|2 +1.3.6.1.2.1.31.1.1.1.16.48|2|2 +1.3.6.1.2.1.31.1.1.1.16.49|2|2 +1.3.6.1.2.1.31.1.1.1.16.50|2|2 +1.3.6.1.2.1.31.1.1.1.16.52|2|2 +1.3.6.1.2.1.31.1.1.1.16.54|2|2 +1.3.6.1.2.1.31.1.1.1.16.55|2|2 +1.3.6.1.2.1.31.1.1.1.16.56|2|2 +1.3.6.1.2.1.31.1.1.1.16.57|2|2 +1.3.6.1.2.1.31.1.1.1.16.58|2|2 +1.3.6.1.2.1.31.1.1.1.17.2|2|2 +1.3.6.1.2.1.31.1.1.1.17.3|2|1 +1.3.6.1.2.1.31.1.1.1.17.9|2|1 +1.3.6.1.2.1.31.1.1.1.17.10|2|1 +1.3.6.1.2.1.31.1.1.1.17.11|2|1 +1.3.6.1.2.1.31.1.1.1.17.12|2|1 +1.3.6.1.2.1.31.1.1.1.17.13|2|1 +1.3.6.1.2.1.31.1.1.1.17.14|2|1 +1.3.6.1.2.1.31.1.1.1.17.15|2|1 +1.3.6.1.2.1.31.1.1.1.17.16|2|1 +1.3.6.1.2.1.31.1.1.1.17.17|2|1 +1.3.6.1.2.1.31.1.1.1.17.18|2|1 +1.3.6.1.2.1.31.1.1.1.17.19|2|1 +1.3.6.1.2.1.31.1.1.1.17.20|2|1 +1.3.6.1.2.1.31.1.1.1.17.21|2|1 +1.3.6.1.2.1.31.1.1.1.17.22|2|1 +1.3.6.1.2.1.31.1.1.1.17.23|2|1 +1.3.6.1.2.1.31.1.1.1.17.24|2|1 +1.3.6.1.2.1.31.1.1.1.17.25|2|1 +1.3.6.1.2.1.31.1.1.1.17.26|2|1 +1.3.6.1.2.1.31.1.1.1.17.27|2|1 +1.3.6.1.2.1.31.1.1.1.17.28|2|1 +1.3.6.1.2.1.31.1.1.1.17.29|2|1 +1.3.6.1.2.1.31.1.1.1.17.30|2|1 +1.3.6.1.2.1.31.1.1.1.17.31|2|1 +1.3.6.1.2.1.31.1.1.1.17.32|2|1 +1.3.6.1.2.1.31.1.1.1.17.33|2|1 +1.3.6.1.2.1.31.1.1.1.17.34|2|1 +1.3.6.1.2.1.31.1.1.1.17.35|2|1 +1.3.6.1.2.1.31.1.1.1.17.36|2|1 +1.3.6.1.2.1.31.1.1.1.17.37|2|1 +1.3.6.1.2.1.31.1.1.1.17.38|2|1 +1.3.6.1.2.1.31.1.1.1.17.39|2|1 +1.3.6.1.2.1.31.1.1.1.17.40|2|1 +1.3.6.1.2.1.31.1.1.1.17.41|2|1 +1.3.6.1.2.1.31.1.1.1.17.42|2|1 +1.3.6.1.2.1.31.1.1.1.17.43|2|1 +1.3.6.1.2.1.31.1.1.1.17.44|2|1 +1.3.6.1.2.1.31.1.1.1.17.45|2|1 +1.3.6.1.2.1.31.1.1.1.17.46|2|1 +1.3.6.1.2.1.31.1.1.1.17.47|2|1 +1.3.6.1.2.1.31.1.1.1.17.48|2|1 +1.3.6.1.2.1.31.1.1.1.17.49|2|1 +1.3.6.1.2.1.31.1.1.1.17.50|2|1 +1.3.6.1.2.1.31.1.1.1.17.52|2|2 +1.3.6.1.2.1.31.1.1.1.17.54|2|2 +1.3.6.1.2.1.31.1.1.1.17.55|2|2 +1.3.6.1.2.1.31.1.1.1.17.56|2|2 +1.3.6.1.2.1.31.1.1.1.17.57|2|2 +1.3.6.1.2.1.31.1.1.1.17.58|2|2 +1.3.6.1.2.1.31.1.1.1.18.2|4| +1.3.6.1.2.1.31.1.1.1.18.3|4| +1.3.6.1.2.1.31.1.1.1.18.9|4|LAB01-P01 Hu0/0/1/3 +1.3.6.1.2.1.31.1.1.1.18.10|4| +1.3.6.1.2.1.31.1.1.1.18.11|4| +1.3.6.1.2.1.31.1.1.1.18.12|4|LAB01-PE01 Te0/0/2/2 +1.3.6.1.2.1.31.1.1.1.18.13|4| +1.3.6.1.2.1.31.1.1.1.18.14|4| +1.3.6.1.2.1.31.1.1.1.18.15|4| +1.3.6.1.2.1.31.1.1.1.18.16|4| +1.3.6.1.2.1.31.1.1.1.18.17|4| +1.3.6.1.2.1.31.1.1.1.18.18|4| +1.3.6.1.2.1.31.1.1.1.18.19|4| +1.3.6.1.2.1.31.1.1.1.18.20|4| +1.3.6.1.2.1.31.1.1.1.18.21|4| +1.3.6.1.2.1.31.1.1.1.18.22|4| +1.3.6.1.2.1.31.1.1.1.18.23|4| +1.3.6.1.2.1.31.1.1.1.18.24|4| +1.3.6.1.2.1.31.1.1.1.18.25|4|C1111-CPE02 Gi0/0/0 +1.3.6.1.2.1.31.1.1.1.18.26|4| +1.3.6.1.2.1.31.1.1.1.18.27|4| +1.3.6.1.2.1.31.1.1.1.18.28|4| +1.3.6.1.2.1.31.1.1.1.18.29|4| +1.3.6.1.2.1.31.1.1.1.18.30|4| +1.3.6.1.2.1.31.1.1.1.18.31|4|LAB01-PE05 Te0/0/0/23 +1.3.6.1.2.1.31.1.1.1.18.32|4| +1.3.6.1.2.1.31.1.1.1.18.33|4| +1.3.6.1.2.1.31.1.1.1.18.34|4| +1.3.6.1.2.1.31.1.1.1.18.35|4| +1.3.6.1.2.1.31.1.1.1.18.36|4| +1.3.6.1.2.1.31.1.1.1.18.37|4| +1.3.6.1.2.1.31.1.1.1.18.38|4| +1.3.6.1.2.1.31.1.1.1.18.39|4| +1.3.6.1.2.1.31.1.1.1.18.40|4| +1.3.6.1.2.1.31.1.1.1.18.41|4| +1.3.6.1.2.1.31.1.1.1.18.42|4| +1.3.6.1.2.1.31.1.1.1.18.43|4| +1.3.6.1.2.1.31.1.1.1.18.44|4| +1.3.6.1.2.1.31.1.1.1.18.45|4| +1.3.6.1.2.1.31.1.1.1.18.46|4| +1.3.6.1.2.1.31.1.1.1.18.47|4| +1.3.6.1.2.1.31.1.1.1.18.48|4| +1.3.6.1.2.1.31.1.1.1.18.49|4| +1.3.6.1.2.1.31.1.1.1.18.50|4| +1.3.6.1.2.1.31.1.1.1.18.52|4|C1111-CPE02 Gi0/0/0.10 +1.3.6.1.2.1.31.1.1.1.18.54|4| +1.3.6.1.2.1.31.1.1.1.18.55|4| +1.3.6.1.2.1.31.1.1.1.18.56|4|C892FSP-CPE02 Gi9.10 +1.3.6.1.2.1.31.1.1.1.18.57|4| +1.3.6.1.2.1.31.1.1.1.18.58|4| +1.3.6.1.2.1.31.1.1.1.19.2|67|0 +1.3.6.1.2.1.31.1.1.1.19.3|67|0 +1.3.6.1.2.1.31.1.1.1.19.9|67|0 +1.3.6.1.2.1.31.1.1.1.19.10|67|0 +1.3.6.1.2.1.31.1.1.1.19.11|67|0 +1.3.6.1.2.1.31.1.1.1.19.12|67|0 +1.3.6.1.2.1.31.1.1.1.19.13|67|0 +1.3.6.1.2.1.31.1.1.1.19.14|67|0 +1.3.6.1.2.1.31.1.1.1.19.15|67|0 +1.3.6.1.2.1.31.1.1.1.19.16|67|0 +1.3.6.1.2.1.31.1.1.1.19.17|67|0 +1.3.6.1.2.1.31.1.1.1.19.18|67|0 +1.3.6.1.2.1.31.1.1.1.19.19|67|0 +1.3.6.1.2.1.31.1.1.1.19.20|67|0 +1.3.6.1.2.1.31.1.1.1.19.21|67|0 +1.3.6.1.2.1.31.1.1.1.19.22|67|0 +1.3.6.1.2.1.31.1.1.1.19.23|67|24400 +1.3.6.1.2.1.31.1.1.1.19.24|67|24400 +1.3.6.1.2.1.31.1.1.1.19.25|67|24400 +1.3.6.1.2.1.31.1.1.1.19.26|67|24500 +1.3.6.1.2.1.31.1.1.1.19.27|67|24500 +1.3.6.1.2.1.31.1.1.1.19.28|67|24500 +1.3.6.1.2.1.31.1.1.1.19.29|67|24500 +1.3.6.1.2.1.31.1.1.1.19.30|67|24500 +1.3.6.1.2.1.31.1.1.1.19.31|67|24500 +1.3.6.1.2.1.31.1.1.1.19.32|67|24500 +1.3.6.1.2.1.31.1.1.1.19.33|67|24500 +1.3.6.1.2.1.31.1.1.1.19.34|67|24500 +1.3.6.1.2.1.31.1.1.1.19.35|67|24800 +1.3.6.1.2.1.31.1.1.1.19.36|67|24800 +1.3.6.1.2.1.31.1.1.1.19.37|67|24800 +1.3.6.1.2.1.31.1.1.1.19.38|67|24800 +1.3.6.1.2.1.31.1.1.1.19.39|67|24900 +1.3.6.1.2.1.31.1.1.1.19.40|67|24900 +1.3.6.1.2.1.31.1.1.1.19.41|67|24900 +1.3.6.1.2.1.31.1.1.1.19.42|67|24900 +1.3.6.1.2.1.31.1.1.1.19.43|67|25800 +1.3.6.1.2.1.31.1.1.1.19.44|67|25800 +1.3.6.1.2.1.31.1.1.1.19.45|67|25800 +1.3.6.1.2.1.31.1.1.1.19.46|67|25800 +1.3.6.1.2.1.31.1.1.1.19.47|67|25800 +1.3.6.1.2.1.31.1.1.1.19.48|67|25800 +1.3.6.1.2.1.31.1.1.1.19.49|67|25800 +1.3.6.1.2.1.31.1.1.1.19.50|67|25800 +1.3.6.1.2.1.31.1.1.1.19.52|67|24700 +1.3.6.1.2.1.31.1.1.1.19.56|67|1100 +1.3.6.1.2.1.31.1.1.1.19.57|67|1100 +1.3.6.1.2.1.31.1.1.1.19.58|67|1100 +1.3.6.1.2.1.47.1.1.1.1.2.1|4|ASR 9901 Route processor +1.3.6.1.2.1.47.1.1.1.1.2.2|4|FPD Module +1.3.6.1.2.1.47.1.1.1.1.2.3|4|CPU Module +1.3.6.1.2.1.47.1.1.1.1.2.4|4|PCI Module +1.3.6.1.2.1.47.1.1.1.1.2.7|4|ASR 9901 Route processor +1.3.6.1.2.1.47.1.1.1.1.2.11|4|FPD Module +1.3.6.1.2.1.47.1.1.1.1.2.12|4|FPD Module +1.3.6.1.2.1.47.1.1.1.1.2.13|4|FPD Module +1.3.6.1.2.1.47.1.1.1.1.2.18|4|Ethernet Switch Module +1.3.6.1.2.1.47.1.1.1.1.2.26|4|FPD Module +1.3.6.1.2.1.47.1.1.1.1.2.30|4|Motherboard Module +1.3.6.1.2.1.47.1.1.1.1.2.95|4|Processor Module +1.3.6.1.2.1.47.1.1.1.1.2.96|4|Virtual Processor Module for Admin VM +1.3.6.1.2.1.47.1.1.1.1.2.97|4|Virtual Processor Module for RP-XR VM +1.3.6.1.2.1.47.1.1.1.1.2.103|4|Control Ethernet Port 2 +1.3.6.1.2.1.47.1.1.1.1.2.104|4|Control Ethernet Port 3 +1.3.6.1.2.1.47.1.1.1.1.2.105|4|Control Ethernet Port 4 +1.3.6.1.2.1.47.1.1.1.1.2.106|4|Control Ethernet Port 5 +1.3.6.1.2.1.47.1.1.1.1.2.108|4|Control Ethernet Port 7 +1.3.6.1.2.1.47.1.1.1.1.2.109|4|Control Ethernet Port 8 +1.3.6.1.2.1.47.1.1.1.1.2.111|4|Control Ethernet Port 10 +1.3.6.1.2.1.47.1.1.1.1.2.112|4|Control Ethernet Port 11 +1.3.6.1.2.1.47.1.1.1.1.2.113|4|Control Ethernet Port 12 +1.3.6.1.2.1.47.1.1.1.1.2.134|4|Control Ethernet Port 13 +1.3.6.1.2.1.47.1.1.1.1.2.167|4|FPD Module +1.3.6.1.2.1.47.1.1.1.1.2.168|4|FPD Module +1.3.6.1.2.1.47.1.1.1.1.2.169|4|FPD Module +1.3.6.1.2.1.47.1.1.1.1.2.178|4|Temperature Sensor +1.3.6.1.2.1.47.1.1.1.1.2.179|4|Temperature Sensor +1.3.6.1.2.1.47.1.1.1.1.2.182|4|Temperature Sensor +1.3.6.1.2.1.47.1.1.1.1.2.237|4|RSP Management Ethernet Port 0 +1.3.6.1.2.1.47.1.1.1.1.2.255|4|RSP Management Ethernet Port 1 +1.3.6.1.2.1.47.1.1.1.1.2.290|4|Temperature Sensor +1.3.6.1.2.1.47.1.1.1.1.2.293|4|Temperature Sensor +1.3.6.1.2.1.47.1.1.1.1.2.296|4|Temperature Sensor +1.3.6.1.2.1.47.1.1.1.1.2.297|4|Temperature Sensor +1.3.6.1.2.1.47.1.1.1.1.2.298|4|Temperature Sensor +1.3.6.1.2.1.47.1.1.1.1.2.302|4|Temperature Sensor +1.3.6.1.2.1.47.1.1.1.1.2.303|4|Temperature Sensor +1.3.6.1.2.1.47.1.1.1.1.2.304|4|Temperature Sensor +1.3.6.1.2.1.47.1.1.1.1.2.305|4|Temperature Sensor +1.3.6.1.2.1.47.1.1.1.1.2.306|4|Temperature Sensor +1.3.6.1.2.1.47.1.1.1.1.2.440|4|Console Port +1.3.6.1.2.1.47.1.1.1.1.2.441|4|Console Port +1.3.6.1.2.1.47.1.1.1.1.2.442|4|Console Port +1.3.6.1.2.1.47.1.1.1.1.2.550|4|USB Module +1.3.6.1.2.1.47.1.1.1.1.2.551|4|USB Container +1.3.6.1.2.1.47.1.1.1.1.2.570|4|Storage Module - SPI +1.3.6.1.2.1.47.1.1.1.1.2.600|4|Alarm Port +1.3.6.1.2.1.47.1.1.1.1.2.625|4|Storage Module - 128GB SSD +1.3.6.1.2.1.47.1.1.1.1.2.628|4|Storage Module - 128GB SSD +1.3.6.1.2.1.47.1.1.1.1.2.2401|4|Board Current Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2601|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2602|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2603|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2604|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2605|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2606|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2607|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2608|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2609|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2610|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2611|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2612|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2613|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2614|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2615|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2616|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2617|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2618|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2619|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2620|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2621|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2622|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2623|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2624|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2625|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2626|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2627|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2628|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2629|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2630|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2631|4|Board Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.8193|4|ASR 9901 Line card +1.3.6.1.2.1.47.1.1.1.1.2.8194|4|FPD Module +1.3.6.1.2.1.47.1.1.1.1.2.8195|4|CPU Module +1.3.6.1.2.1.47.1.1.1.1.2.8196|4|PCI Module +1.3.6.1.2.1.47.1.1.1.1.2.8198|4|ASR 9901 Line card +1.3.6.1.2.1.47.1.1.1.1.2.8199|4| +1.3.6.1.2.1.47.1.1.1.1.2.8203|4|FPD Module +1.3.6.1.2.1.47.1.1.1.1.2.8204|4|FPD Module +1.3.6.1.2.1.47.1.1.1.1.2.8206|4|FPD Module +1.3.6.1.2.1.47.1.1.1.1.2.8222|4|Motherboard Module +1.3.6.1.2.1.47.1.1.1.1.2.8223|4|Daughterboard Module +1.3.6.1.2.1.47.1.1.1.1.2.8227|4|ASIC Module +1.3.6.1.2.1.47.1.1.1.1.2.8287|4|Processor Module +1.3.6.1.2.1.47.1.1.1.1.2.8288|4|Virtual Processor Module for Admin VM +1.3.6.1.2.1.47.1.1.1.1.2.8289|4|Virtual Processor Module for LC-XR VM +1.3.6.1.2.1.47.1.1.1.1.2.8357|4|FPD Module +1.3.6.1.2.1.47.1.1.1.1.2.8359|4|FPD Module +1.3.6.1.2.1.47.1.1.1.1.2.8360|4|FPD Module +1.3.6.1.2.1.47.1.1.1.1.2.8492|4|Temperature Sensor +1.3.6.1.2.1.47.1.1.1.1.2.8493|4|Temperature Sensor +1.3.6.1.2.1.47.1.1.1.1.2.8494|4|Temperature Sensor +1.3.6.1.2.1.47.1.1.1.1.2.8495|4|Temperature Sensor +1.3.6.1.2.1.47.1.1.1.1.2.8496|4|Temperature Sensor +1.3.6.1.2.1.47.1.1.1.1.2.8497|4|Temperature Sensor +1.3.6.1.2.1.47.1.1.1.1.2.8498|4|Temperature Sensor +1.3.6.1.2.1.47.1.1.1.1.2.8499|4|Temperature Sensor +1.3.6.1.2.1.47.1.1.1.1.2.8522|4|PSE ASIC Module +1.3.6.1.2.1.47.1.1.1.1.2.8592|4|Temperature Sensor +1.3.6.1.2.1.47.1.1.1.1.2.8593|4|Temperature Sensor +1.3.6.1.2.1.47.1.1.1.1.2.8594|4|Temperature Sensor +1.3.6.1.2.1.47.1.1.1.1.2.8595|4|Temperature Sensor +1.3.6.1.2.1.47.1.1.1.1.2.8596|4|Temperature Sensor +1.3.6.1.2.1.47.1.1.1.1.2.8597|4|Temperature Sensor +1.3.6.1.2.1.47.1.1.1.1.2.8599|4|Temperature Sensor +1.3.6.1.2.1.47.1.1.1.1.2.8600|4|Temperature Sensor +1.3.6.1.2.1.47.1.1.1.1.2.8601|4|Temperature Sensor +1.3.6.1.2.1.47.1.1.1.1.2.8602|4|Temperature Sensor +1.3.6.1.2.1.47.1.1.1.1.2.8603|4|Temperature Sensor +1.3.6.1.2.1.47.1.1.1.1.2.8604|4|Temperature Sensor +1.3.6.1.2.1.47.1.1.1.1.2.8762|4|Storage Module - SPI +1.3.6.1.2.1.47.1.1.1.1.2.8793|4|PSE ASIC Port Module +1.3.6.1.2.1.47.1.1.1.1.2.8794|4|PSE ASIC Port Module +1.3.6.1.2.1.47.1.1.1.1.2.8795|4|PSE ASIC Port Module +1.3.6.1.2.1.47.1.1.1.1.2.8796|4|PSE ASIC Port Module +1.3.6.1.2.1.47.1.1.1.1.2.8797|4|PSE ASIC Port Module +1.3.6.1.2.1.47.1.1.1.1.2.8798|4|PSE ASIC Port Module +1.3.6.1.2.1.47.1.1.1.1.2.8799|4|PSE ASIC Port Module +1.3.6.1.2.1.47.1.1.1.1.2.8800|4|PSE ASIC Port Module +1.3.6.1.2.1.47.1.1.1.1.2.8801|4|PSE ASIC Port Module +1.3.6.1.2.1.47.1.1.1.1.2.8802|4|PSE ASIC Port Module +1.3.6.1.2.1.47.1.1.1.1.2.8803|4|PSE ASIC Port Module +1.3.6.1.2.1.47.1.1.1.1.2.8804|4|PSE ASIC Port Module +1.3.6.1.2.1.47.1.1.1.1.2.8805|4|PSE ASIC Port Module +1.3.6.1.2.1.47.1.1.1.1.2.8806|4|PSE ASIC Port Module +1.3.6.1.2.1.47.1.1.1.1.2.8807|4|PSE ASIC Port Module +1.3.6.1.2.1.47.1.1.1.1.2.8808|4|PSE ASIC Port Module +1.3.6.1.2.1.47.1.1.1.1.2.8809|4|PSE ASIC Port Module +1.3.6.1.2.1.47.1.1.1.1.2.8810|4|PSE ASIC Port Module +1.3.6.1.2.1.47.1.1.1.1.2.8811|4|PSE ASIC Port Module +1.3.6.1.2.1.47.1.1.1.1.2.8812|4|PSE ASIC Port Module +1.3.6.1.2.1.47.1.1.1.1.2.8813|4|PSE ASIC Port Module +1.3.6.1.2.1.47.1.1.1.1.2.8814|4|PSE ASIC Port Module +1.3.6.1.2.1.47.1.1.1.1.2.8815|4|PSE ASIC Port Module +1.3.6.1.2.1.47.1.1.1.1.2.8816|4|PSE ASIC Port Module +1.3.6.1.2.1.47.1.1.1.1.2.8817|4|PSE ASIC Port Module +1.3.6.1.2.1.47.1.1.1.1.2.8818|4|PSE ASIC Port Module +1.3.6.1.2.1.47.1.1.1.1.2.8819|4|PSE ASIC Port Module +1.3.6.1.2.1.47.1.1.1.1.2.8820|4|PSE ASIC Port Module +1.3.6.1.2.1.47.1.1.1.1.2.8821|4|PSE ASIC Port Module +1.3.6.1.2.1.47.1.1.1.1.2.8822|4|PSE ASIC Port Module +1.3.6.1.2.1.47.1.1.1.1.2.8823|4|PSE ASIC Port Module +1.3.6.1.2.1.47.1.1.1.1.2.8824|4|PSE ASIC Port Module +1.3.6.1.2.1.47.1.1.1.1.2.8825|4|PSE ASIC Port Module +1.3.6.1.2.1.47.1.1.1.1.2.8826|4|PSE ASIC Port Module +1.3.6.1.2.1.47.1.1.1.1.2.8827|4|PSE ASIC Port Module +1.3.6.1.2.1.47.1.1.1.1.2.8828|4|PSE ASIC Port Module +1.3.6.1.2.1.47.1.1.1.1.2.8829|4|PSE ASIC Port Module +1.3.6.1.2.1.47.1.1.1.1.2.8830|4|PSE ASIC Port Module +1.3.6.1.2.1.47.1.1.1.1.2.8831|4|PSE ASIC Port Module +1.3.6.1.2.1.47.1.1.1.1.2.8832|4|PSE ASIC Port Module +1.3.6.1.2.1.47.1.1.1.1.2.8833|4|PSE ASIC Port Module +1.3.6.1.2.1.47.1.1.1.1.2.8834|4|PSE ASIC Port Module +1.3.6.1.2.1.47.1.1.1.1.2.8851|4|10GE Port +1.3.6.1.2.1.47.1.1.1.1.2.8852|4|10GE Port +1.3.6.1.2.1.47.1.1.1.1.2.8853|4|10GE Port +1.3.6.1.2.1.47.1.1.1.1.2.8854|4|10GE Port +1.3.6.1.2.1.47.1.1.1.1.2.8855|4|10GE Port +1.3.6.1.2.1.47.1.1.1.1.2.8856|4|10GE Port +1.3.6.1.2.1.47.1.1.1.1.2.8857|4|10GE Port +1.3.6.1.2.1.47.1.1.1.1.2.8858|4|10GE Port +1.3.6.1.2.1.47.1.1.1.1.2.8859|4|10GE Port +1.3.6.1.2.1.47.1.1.1.1.2.8860|4|10GE Port +1.3.6.1.2.1.47.1.1.1.1.2.8861|4|10GE Port +1.3.6.1.2.1.47.1.1.1.1.2.8862|4|10GE Port +1.3.6.1.2.1.47.1.1.1.1.2.8863|4|100GE Breakout Port +1.3.6.1.2.1.47.1.1.1.1.2.8864|4|100GE Breakout Port +1.3.6.1.2.1.47.1.1.1.1.2.8865|4|10GE Port +1.3.6.1.2.1.47.1.1.1.1.2.8866|4|10GE Port +1.3.6.1.2.1.47.1.1.1.1.2.8867|4|10GE Port +1.3.6.1.2.1.47.1.1.1.1.2.8868|4|10GE Port +1.3.6.1.2.1.47.1.1.1.1.2.8869|4|10GE Port +1.3.6.1.2.1.47.1.1.1.1.2.8870|4|10GE Port +1.3.6.1.2.1.47.1.1.1.1.2.8871|4|10GE Port +1.3.6.1.2.1.47.1.1.1.1.2.8872|4|10GE Port +1.3.6.1.2.1.47.1.1.1.1.2.8873|4|10GE Port +1.3.6.1.2.1.47.1.1.1.1.2.8874|4|10GE Port +1.3.6.1.2.1.47.1.1.1.1.2.8875|4|10GE Port +1.3.6.1.2.1.47.1.1.1.1.2.8876|4|10GE Port +1.3.6.1.2.1.47.1.1.1.1.2.8927|4|1GE Port +1.3.6.1.2.1.47.1.1.1.1.2.8928|4|1GE Port +1.3.6.1.2.1.47.1.1.1.1.2.8929|4|1GE Port +1.3.6.1.2.1.47.1.1.1.1.2.8930|4|1GE Port +1.3.6.1.2.1.47.1.1.1.1.2.8931|4|1GE Port +1.3.6.1.2.1.47.1.1.1.1.2.8932|4|1GE Port +1.3.6.1.2.1.47.1.1.1.1.2.8933|4|1GE Port +1.3.6.1.2.1.47.1.1.1.1.2.8934|4|1GE Port +1.3.6.1.2.1.47.1.1.1.1.2.8943|4|1GE Port +1.3.6.1.2.1.47.1.1.1.1.2.8944|4|1GE Port +1.3.6.1.2.1.47.1.1.1.1.2.8945|4|1GE Port +1.3.6.1.2.1.47.1.1.1.1.2.8946|4|1GE Port +1.3.6.1.2.1.47.1.1.1.1.2.8947|4|1GE Port +1.3.6.1.2.1.47.1.1.1.1.2.8948|4|1GE Port +1.3.6.1.2.1.47.1.1.1.1.2.8949|4|1GE Port +1.3.6.1.2.1.47.1.1.1.1.2.8950|4|1GE Port +1.3.6.1.2.1.47.1.1.1.1.2.8993|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.8994|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.8995|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.8996|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.8997|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.8998|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.8999|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9000|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9001|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9002|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9003|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9004|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9005|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9006|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9007|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9008|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9009|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9010|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9011|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9012|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9013|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9014|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9015|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9016|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9017|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9018|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9019|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9020|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9021|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9022|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9023|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9024|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9025|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9026|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9027|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9028|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9029|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9030|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9031|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9032|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9033|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9034|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9061|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9062|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9063|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9064|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9065|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9066|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9067|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9068|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9069|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9070|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9071|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9072|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9075|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9076|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9077|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9078|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9079|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9080|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9081|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9082|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9083|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9084|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9085|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.9086|4|Pluggable Optical Module Container +1.3.6.1.2.1.47.1.1.1.1.2.10593|4|Board Current Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10793|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10794|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10795|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10796|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10797|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10798|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10799|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10800|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10801|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10802|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10803|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10804|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10805|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10806|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10807|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10808|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10809|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10810|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10811|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10812|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10813|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10814|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10815|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10816|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10817|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10818|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10819|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10820|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10821|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10822|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10823|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10824|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10825|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10826|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10827|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10828|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10829|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10830|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10831|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10832|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10833|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10834|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10835|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10836|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10837|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10838|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10839|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10840|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10841|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10842|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10843|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10844|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10845|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10846|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10847|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10848|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10849|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10850|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10851|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10852|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10853|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10854|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10855|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10856|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10857|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.10858|4|Board Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.40961|4|ASR 9901 Fan Tray +1.3.6.1.2.1.47.1.1.1.1.2.40967|4|ASR 9901 Fan Tray +1.3.6.1.2.1.47.1.1.1.1.2.41810|4|Fan Module +1.3.6.1.2.1.47.1.1.1.1.2.41910|4|Fan Speed Sensor +1.3.6.1.2.1.47.1.1.1.1.2.45057|4|ASR 9901 Fan Tray +1.3.6.1.2.1.47.1.1.1.1.2.45063|4|ASR 9901 Fan Tray +1.3.6.1.2.1.47.1.1.1.1.2.45906|4|Fan Module +1.3.6.1.2.1.47.1.1.1.1.2.46006|4|Fan Speed Sensor +1.3.6.1.2.1.47.1.1.1.1.2.49153|4|ASR 9901 Fan Tray +1.3.6.1.2.1.47.1.1.1.1.2.49159|4|ASR 9901 Fan Tray +1.3.6.1.2.1.47.1.1.1.1.2.50002|4|Fan Module +1.3.6.1.2.1.47.1.1.1.1.2.50102|4|Fan Speed Sensor +1.3.6.1.2.1.47.1.1.1.1.2.118785|4|Simulated Power Tray IDPROM +1.3.6.1.2.1.47.1.1.1.1.2.118790|4|Simulated Power Tray IDPROM +1.3.6.1.2.1.47.1.1.1.1.2.118894|4|ASR9K Power Supply AC slot +1.3.6.1.2.1.47.1.1.1.1.2.118895|4|ASR9K Power Supply AC slot +1.3.6.1.2.1.47.1.1.1.1.2.2375681|4|1600W AC Power Module +1.3.6.1.2.1.47.1.1.1.1.2.2375682|4|FPD Module +1.3.6.1.2.1.47.1.1.1.1.2.2375687|4|1600W AC Power Module +1.3.6.1.2.1.47.1.1.1.1.2.2375930|4|Current Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2375931|4|Current Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2375940|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2375941|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2375950|4|Power Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2375951|4|Power Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2375970|4|Temperature Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2375971|4|Temperature Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2375972|4|Temperature Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2376530|4|Fan Module +1.3.6.1.2.1.47.1.1.1.1.2.2376531|4|Fan Module +1.3.6.1.2.1.47.1.1.1.1.2.2376630|4|Fan Speed Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2376631|4|Fan Speed Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2379777|4|1600W AC Power Module +1.3.6.1.2.1.47.1.1.1.1.2.2379778|4|FPD Module +1.3.6.1.2.1.47.1.1.1.1.2.2379783|4|1600W AC Power Module +1.3.6.1.2.1.47.1.1.1.1.2.2380026|4|Current Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2380027|4|Current Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2380036|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2380037|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2380046|4|Power Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2380047|4|Power Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2380066|4|Temperature Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2380067|4|Temperature Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2380068|4|Temperature Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2380626|4|Fan Module +1.3.6.1.2.1.47.1.1.1.1.2.2380627|4|Fan Module +1.3.6.1.2.1.47.1.1.1.1.2.2380726|4|Fan Speed Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2380727|4|Fan Speed Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2990081|4|1000BASE-LX/LH SFP transceiver module, MMF/SMF, 1310nm, DOM +1.3.6.1.2.1.47.1.1.1.1.2.2990087|4|1000BASE-LX/LH SFP transceiver module, MMF/SMF, 1310nm, DOM +1.3.6.1.2.1.47.1.1.1.1.2.2990320|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2990330|4|Current Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2990350|4|Power Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2990362|4|Power Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2990470|4|Temperature Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2994177|4|1000BASE-T SFP (NEBS 3), UTP, 100m +1.3.6.1.2.1.47.1.1.1.1.2.2994183|4|1000BASE-T SFP (NEBS 3), UTP, 100m +1.3.6.1.2.1.47.1.1.1.1.2.2994416|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2994426|4|Current Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2994446|4|Power Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2994458|4|Power Sensor +1.3.6.1.2.1.47.1.1.1.1.2.2994566|4|Temperature Sensor +1.3.6.1.2.1.47.1.1.1.1.2.3014657|4|10GBASE-LR SFP+ Module for SMF +1.3.6.1.2.1.47.1.1.1.1.2.3014663|4|10GBASE-LR SFP+ Module for SMF +1.3.6.1.2.1.47.1.1.1.1.2.3014896|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.3014906|4|Current Sensor +1.3.6.1.2.1.47.1.1.1.1.2.3014926|4|Power Sensor +1.3.6.1.2.1.47.1.1.1.1.2.3014938|4|Power Sensor +1.3.6.1.2.1.47.1.1.1.1.2.3015046|4|Temperature Sensor +1.3.6.1.2.1.47.1.1.1.1.2.3072001|4|10GBASE-LR SFP+ Module for SMF +1.3.6.1.2.1.47.1.1.1.1.2.3072007|4|10GBASE-LR SFP+ Module for SMF +1.3.6.1.2.1.47.1.1.1.1.2.3072240|4|Voltage Sensor +1.3.6.1.2.1.47.1.1.1.1.2.3072250|4|Current Sensor +1.3.6.1.2.1.47.1.1.1.1.2.3072270|4|Power Sensor +1.3.6.1.2.1.47.1.1.1.1.2.3072282|4|Power Sensor +1.3.6.1.2.1.47.1.1.1.1.2.3072390|4|Temperature Sensor +1.3.6.1.2.1.47.1.1.1.1.2.8384513|4|ASR 9901 Chassis +1.3.6.1.2.1.47.1.1.1.1.2.8384518|4|ASR 9901 Chassis +1.3.6.1.2.1.47.1.1.1.1.2.8384527|4|ASR9K Chassis Line Card Backplane +1.3.6.1.2.1.47.1.1.1.1.2.8384552|4|ASR9K Line Card Slot +1.3.6.1.2.1.47.1.1.1.1.2.8384597|4|ASR9K Fan Tray Slot +1.3.6.1.2.1.47.1.1.1.1.2.8384598|4|ASR9K Fan Tray Slot +1.3.6.1.2.1.47.1.1.1.1.2.8384599|4|ASR9K Fan Tray Slot +1.3.6.1.2.1.47.1.1.1.1.2.8384602|4|ASR9K Route Processor Slot +1.3.6.1.2.1.47.1.1.1.1.2.8384612|4|ASR9K Power Tray Slot +1.3.6.1.2.1.47.1.1.1.1.3.1|6|1.3.6.1.4.1.9.12.3.1.9.74.103 +1.3.6.1.2.1.47.1.1.1.1.3.2|6|1.3.6.1.4.1.9.12.3.1.9.2.422 +1.3.6.1.2.1.47.1.1.1.1.3.3|6|1.3.6.1.4.1.9.12.3.1.9 +1.3.6.1.2.1.47.1.1.1.1.3.4|6|1.3.6.1.4.1.9.12.3.1.9.2.424 +1.3.6.1.2.1.47.1.1.1.1.3.7|6|1.3.6.1.4.1.9.12.3.1.9.2.602 +1.3.6.1.2.1.47.1.1.1.1.3.11|6|1.3.6.1.4.1.9.12.3.1.9.2.422 +1.3.6.1.2.1.47.1.1.1.1.3.12|6|1.3.6.1.4.1.9.12.3.1.9.2.422 +1.3.6.1.2.1.47.1.1.1.1.3.13|6|1.3.6.1.4.1.9.12.3.1.9.2.422 +1.3.6.1.2.1.47.1.1.1.1.3.18|6|1.3.6.1.4.1.9.12.3.1.9.2.426 +1.3.6.1.2.1.47.1.1.1.1.3.26|6|1.3.6.1.4.1.9.12.3.1.9.2.422 +1.3.6.1.2.1.47.1.1.1.1.3.30|6|1.3.6.1.4.1.9.12.3.1.9 +1.3.6.1.2.1.47.1.1.1.1.3.95|6|1.3.6.1.4.1.9.12.3.1.9.5.281 +1.3.6.1.2.1.47.1.1.1.1.3.96|6|1.3.6.1.4.1.9.12.3.1.9.5.281 +1.3.6.1.2.1.47.1.1.1.1.3.97|6|1.3.6.1.4.1.9.12.3.1.9.5.281 +1.3.6.1.2.1.47.1.1.1.1.3.103|6|1.3.6.1.4.1.9.12.3.1.10.132 +1.3.6.1.2.1.47.1.1.1.1.3.104|6|1.3.6.1.4.1.9.12.3.1.10.132 +1.3.6.1.2.1.47.1.1.1.1.3.105|6|1.3.6.1.4.1.9.12.3.1.10.132 +1.3.6.1.2.1.47.1.1.1.1.3.106|6|1.3.6.1.4.1.9.12.3.1.10.132 +1.3.6.1.2.1.47.1.1.1.1.3.108|6|1.3.6.1.4.1.9.12.3.1.10.132 +1.3.6.1.2.1.47.1.1.1.1.3.109|6|1.3.6.1.4.1.9.12.3.1.10.132 +1.3.6.1.2.1.47.1.1.1.1.3.111|6|1.3.6.1.4.1.9.12.3.1.10.132 +1.3.6.1.2.1.47.1.1.1.1.3.112|6|1.3.6.1.4.1.9.12.3.1.10.132 +1.3.6.1.2.1.47.1.1.1.1.3.113|6|1.3.6.1.4.1.9.12.3.1.10.132 +1.3.6.1.2.1.47.1.1.1.1.3.134|6|1.3.6.1.4.1.9.12.3.1.10.132 +1.3.6.1.2.1.47.1.1.1.1.3.167|6|1.3.6.1.4.1.9.12.3.1.9.2.422 +1.3.6.1.2.1.47.1.1.1.1.3.168|6|1.3.6.1.4.1.9.12.3.1.9.2.439 +1.3.6.1.2.1.47.1.1.1.1.3.169|6|1.3.6.1.4.1.9.12.3.1.9.2.439 +1.3.6.1.2.1.47.1.1.1.1.3.178|6|1.3.6.1.4.1.9.12.3.1.8.36 +1.3.6.1.2.1.47.1.1.1.1.3.179|6|1.3.6.1.4.1.9.12.3.1.8.36 +1.3.6.1.2.1.47.1.1.1.1.3.182|6|1.3.6.1.4.1.9.12.3.1.8.54 +1.3.6.1.2.1.47.1.1.1.1.3.237|6|1.3.6.1.4.1.9.12.3.1.10.132 +1.3.6.1.2.1.47.1.1.1.1.3.255|6|1.3.6.1.4.1.9.12.3.1.10.132 +1.3.6.1.2.1.47.1.1.1.1.3.290|6|1.3.6.1.4.1.9.12.3.1.8.36 +1.3.6.1.2.1.47.1.1.1.1.3.293|6|1.3.6.1.4.1.9.12.3.1.8.36 +1.3.6.1.2.1.47.1.1.1.1.3.296|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.297|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.298|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.302|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.303|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.304|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.305|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.306|6|1.3.6.1.4.1.9.12.3.1.8.36 +1.3.6.1.2.1.47.1.1.1.1.3.440|6|1.3.6.1.4.1.9.12.3.1.10.333 +1.3.6.1.2.1.47.1.1.1.1.3.441|6|1.3.6.1.4.1.9.12.3.1.10.333 +1.3.6.1.2.1.47.1.1.1.1.3.442|6|1.3.6.1.4.1.9.12.3.1.10.333 +1.3.6.1.2.1.47.1.1.1.1.3.550|6|1.3.6.1.4.1.9.12.3.1.10.296 +1.3.6.1.2.1.47.1.1.1.1.3.551|6|1.3.6.1.4.1.9.12.3.1.9.2.171 +1.3.6.1.2.1.47.1.1.1.1.3.570|6|1.3.6.1.4.1.9.12.3.1.9.2.127 +1.3.6.1.2.1.47.1.1.1.1.3.600|6|1.3.6.1.4.1.9.12.3.1.10.334 +1.3.6.1.2.1.47.1.1.1.1.3.625|6|1.3.6.1.4.1.9.12.3.1.9.2.232 +1.3.6.1.2.1.47.1.1.1.1.3.628|6|1.3.6.1.4.1.9.12.3.1.9.2.232 +1.3.6.1.2.1.47.1.1.1.1.3.2401|6|1.3.6.1.4.1.9.12.3.1.8.48 +1.3.6.1.2.1.47.1.1.1.1.3.2601|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.2602|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.2603|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.2604|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.2605|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.2606|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.2607|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.2608|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.2609|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.2610|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.2611|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.2612|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.2613|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.2614|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.2615|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.2616|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.2617|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.2618|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.2619|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.2620|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.2621|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.2622|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.2623|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.2624|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.2625|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.2626|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.2627|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.2628|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.2629|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.2630|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.2631|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.8193|6|1.3.6.1.4.1.9.12.3.1.9.74.104 +1.3.6.1.2.1.47.1.1.1.1.3.8194|6|1.3.6.1.4.1.9.12.3.1.9.2.422 +1.3.6.1.2.1.47.1.1.1.1.3.8195|6|1.3.6.1.4.1.9.12.3.1.9 +1.3.6.1.2.1.47.1.1.1.1.3.8196|6|1.3.6.1.4.1.9.12.3.1.9.2.424 +1.3.6.1.2.1.47.1.1.1.1.3.8198|6|1.3.6.1.4.1.9.12.3.1.9.2.602 +1.3.6.1.2.1.47.1.1.1.1.3.8199|6|1.3.6.1.4.1.9.12.3.1.9.2.602 +1.3.6.1.2.1.47.1.1.1.1.3.8203|6|1.3.6.1.4.1.9.12.3.1.9.2.422 +1.3.6.1.2.1.47.1.1.1.1.3.8204|6|1.3.6.1.4.1.9.12.3.1.9.2.422 +1.3.6.1.2.1.47.1.1.1.1.3.8206|6|1.3.6.1.4.1.9.12.3.1.9.2.422 +1.3.6.1.2.1.47.1.1.1.1.3.8222|6|1.3.6.1.4.1.9.12.3.1.9 +1.3.6.1.2.1.47.1.1.1.1.3.8223|6|1.3.6.1.4.1.9.12.3.1.9 +1.3.6.1.2.1.47.1.1.1.1.3.8227|6|1.3.6.1.4.1.9.12.3.1.9 +1.3.6.1.2.1.47.1.1.1.1.3.8287|6|1.3.6.1.4.1.9.12.3.1.9.5.281 +1.3.6.1.2.1.47.1.1.1.1.3.8288|6|1.3.6.1.4.1.9.12.3.1.9.5.281 +1.3.6.1.2.1.47.1.1.1.1.3.8289|6|1.3.6.1.4.1.9.12.3.1.9.5.281 +1.3.6.1.2.1.47.1.1.1.1.3.8357|6|1.3.6.1.4.1.9.12.3.1.9.2.422 +1.3.6.1.2.1.47.1.1.1.1.3.8359|6|1.3.6.1.4.1.9.12.3.1.9.2.422 +1.3.6.1.2.1.47.1.1.1.1.3.8360|6|1.3.6.1.4.1.9.12.3.1.9.2.439 +1.3.6.1.2.1.47.1.1.1.1.3.8492|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.8493|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.8494|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.8495|6|1.3.6.1.4.1.9.12.3.1.8.36 +1.3.6.1.2.1.47.1.1.1.1.3.8496|6|1.3.6.1.4.1.9.12.3.1.8.36 +1.3.6.1.2.1.47.1.1.1.1.3.8497|6|1.3.6.1.4.1.9.12.3.1.8.36 +1.3.6.1.2.1.47.1.1.1.1.3.8498|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.8499|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.8522|6|1.3.6.1.4.1.9.12.3.1.9.2.414 +1.3.6.1.2.1.47.1.1.1.1.3.8592|6|1.3.6.1.4.1.9.12.3.1.8.36 +1.3.6.1.2.1.47.1.1.1.1.3.8593|6|1.3.6.1.4.1.9.12.3.1.8.36 +1.3.6.1.2.1.47.1.1.1.1.3.8594|6|1.3.6.1.4.1.9.12.3.1.8.36 +1.3.6.1.2.1.47.1.1.1.1.3.8595|6|1.3.6.1.4.1.9.12.3.1.8.36 +1.3.6.1.2.1.47.1.1.1.1.3.8596|6|1.3.6.1.4.1.9.12.3.1.8.36 +1.3.6.1.2.1.47.1.1.1.1.3.8597|6|1.3.6.1.4.1.9.12.3.1.8.36 +1.3.6.1.2.1.47.1.1.1.1.3.8599|6|1.3.6.1.4.1.9.12.3.1.8.36 +1.3.6.1.2.1.47.1.1.1.1.3.8600|6|1.3.6.1.4.1.9.12.3.1.8.36 +1.3.6.1.2.1.47.1.1.1.1.3.8601|6|1.3.6.1.4.1.9.12.3.1.8.36 +1.3.6.1.2.1.47.1.1.1.1.3.8602|6|1.3.6.1.4.1.9.12.3.1.8.36 +1.3.6.1.2.1.47.1.1.1.1.3.8603|6|1.3.6.1.4.1.9.12.3.1.8.36 +1.3.6.1.2.1.47.1.1.1.1.3.8604|6|1.3.6.1.4.1.9.12.3.1.8.54 +1.3.6.1.2.1.47.1.1.1.1.3.8762|6|1.3.6.1.4.1.9.12.3.1.9.2.127 +1.3.6.1.2.1.47.1.1.1.1.3.8793|6|1.3.6.1.4.1.9.12.3.1.9.2.445 +1.3.6.1.2.1.47.1.1.1.1.3.8794|6|1.3.6.1.4.1.9.12.3.1.9.2.445 +1.3.6.1.2.1.47.1.1.1.1.3.8795|6|1.3.6.1.4.1.9.12.3.1.9.2.445 +1.3.6.1.2.1.47.1.1.1.1.3.8796|6|1.3.6.1.4.1.9.12.3.1.9.2.445 +1.3.6.1.2.1.47.1.1.1.1.3.8797|6|1.3.6.1.4.1.9.12.3.1.9.2.445 +1.3.6.1.2.1.47.1.1.1.1.3.8798|6|1.3.6.1.4.1.9.12.3.1.9.2.445 +1.3.6.1.2.1.47.1.1.1.1.3.8799|6|1.3.6.1.4.1.9.12.3.1.9.2.445 +1.3.6.1.2.1.47.1.1.1.1.3.8800|6|1.3.6.1.4.1.9.12.3.1.9.2.445 +1.3.6.1.2.1.47.1.1.1.1.3.8801|6|1.3.6.1.4.1.9.12.3.1.9.2.445 +1.3.6.1.2.1.47.1.1.1.1.3.8802|6|1.3.6.1.4.1.9.12.3.1.9.2.445 +1.3.6.1.2.1.47.1.1.1.1.3.8803|6|1.3.6.1.4.1.9.12.3.1.9.2.445 +1.3.6.1.2.1.47.1.1.1.1.3.8804|6|1.3.6.1.4.1.9.12.3.1.9.2.445 +1.3.6.1.2.1.47.1.1.1.1.3.8805|6|1.3.6.1.4.1.9.12.3.1.9.2.445 +1.3.6.1.2.1.47.1.1.1.1.3.8806|6|1.3.6.1.4.1.9.12.3.1.9.2.445 +1.3.6.1.2.1.47.1.1.1.1.3.8807|6|1.3.6.1.4.1.9.12.3.1.9.2.445 +1.3.6.1.2.1.47.1.1.1.1.3.8808|6|1.3.6.1.4.1.9.12.3.1.9.2.445 +1.3.6.1.2.1.47.1.1.1.1.3.8809|6|1.3.6.1.4.1.9.12.3.1.9.2.445 +1.3.6.1.2.1.47.1.1.1.1.3.8810|6|1.3.6.1.4.1.9.12.3.1.9.2.445 +1.3.6.1.2.1.47.1.1.1.1.3.8811|6|1.3.6.1.4.1.9.12.3.1.9.2.445 +1.3.6.1.2.1.47.1.1.1.1.3.8812|6|1.3.6.1.4.1.9.12.3.1.9.2.445 +1.3.6.1.2.1.47.1.1.1.1.3.8813|6|1.3.6.1.4.1.9.12.3.1.9.2.445 +1.3.6.1.2.1.47.1.1.1.1.3.8814|6|1.3.6.1.4.1.9.12.3.1.9.2.445 +1.3.6.1.2.1.47.1.1.1.1.3.8815|6|1.3.6.1.4.1.9.12.3.1.9.2.445 +1.3.6.1.2.1.47.1.1.1.1.3.8816|6|1.3.6.1.4.1.9.12.3.1.9.2.445 +1.3.6.1.2.1.47.1.1.1.1.3.8817|6|1.3.6.1.4.1.9.12.3.1.9.2.445 +1.3.6.1.2.1.47.1.1.1.1.3.8818|6|1.3.6.1.4.1.9.12.3.1.9.2.445 +1.3.6.1.2.1.47.1.1.1.1.3.8819|6|1.3.6.1.4.1.9.12.3.1.9.2.445 +1.3.6.1.2.1.47.1.1.1.1.3.8820|6|1.3.6.1.4.1.9.12.3.1.9.2.445 +1.3.6.1.2.1.47.1.1.1.1.3.8821|6|1.3.6.1.4.1.9.12.3.1.9.2.445 +1.3.6.1.2.1.47.1.1.1.1.3.8822|6|1.3.6.1.4.1.9.12.3.1.9.2.445 +1.3.6.1.2.1.47.1.1.1.1.3.8823|6|1.3.6.1.4.1.9.12.3.1.9.2.445 +1.3.6.1.2.1.47.1.1.1.1.3.8824|6|1.3.6.1.4.1.9.12.3.1.9.2.445 +1.3.6.1.2.1.47.1.1.1.1.3.8825|6|1.3.6.1.4.1.9.12.3.1.9.2.445 +1.3.6.1.2.1.47.1.1.1.1.3.8826|6|1.3.6.1.4.1.9.12.3.1.9.2.445 +1.3.6.1.2.1.47.1.1.1.1.3.8827|6|1.3.6.1.4.1.9.12.3.1.9.2.445 +1.3.6.1.2.1.47.1.1.1.1.3.8828|6|1.3.6.1.4.1.9.12.3.1.9.2.445 +1.3.6.1.2.1.47.1.1.1.1.3.8829|6|1.3.6.1.4.1.9.12.3.1.9.2.445 +1.3.6.1.2.1.47.1.1.1.1.3.8830|6|1.3.6.1.4.1.9.12.3.1.9.2.445 +1.3.6.1.2.1.47.1.1.1.1.3.8831|6|1.3.6.1.4.1.9.12.3.1.9.2.445 +1.3.6.1.2.1.47.1.1.1.1.3.8832|6|1.3.6.1.4.1.9.12.3.1.9.2.445 +1.3.6.1.2.1.47.1.1.1.1.3.8833|6|1.3.6.1.4.1.9.12.3.1.9.2.445 +1.3.6.1.2.1.47.1.1.1.1.3.8834|6|1.3.6.1.4.1.9.12.3.1.9.2.445 +1.3.6.1.2.1.47.1.1.1.1.3.8851|6|1.3.6.1.4.1.9.12.3.1.10.304 +1.3.6.1.2.1.47.1.1.1.1.3.8852|6|1.3.6.1.4.1.9.12.3.1.10.304 +1.3.6.1.2.1.47.1.1.1.1.3.8853|6|1.3.6.1.4.1.9.12.3.1.10.304 +1.3.6.1.2.1.47.1.1.1.1.3.8854|6|1.3.6.1.4.1.9.12.3.1.10.304 +1.3.6.1.2.1.47.1.1.1.1.3.8855|6|1.3.6.1.4.1.9.12.3.1.10.304 +1.3.6.1.2.1.47.1.1.1.1.3.8856|6|1.3.6.1.4.1.9.12.3.1.10.304 +1.3.6.1.2.1.47.1.1.1.1.3.8857|6|1.3.6.1.4.1.9.12.3.1.10.304 +1.3.6.1.2.1.47.1.1.1.1.3.8858|6|1.3.6.1.4.1.9.12.3.1.10.304 +1.3.6.1.2.1.47.1.1.1.1.3.8859|6|1.3.6.1.4.1.9.12.3.1.10.304 +1.3.6.1.2.1.47.1.1.1.1.3.8860|6|1.3.6.1.4.1.9.12.3.1.10.304 +1.3.6.1.2.1.47.1.1.1.1.3.8861|6|1.3.6.1.4.1.9.12.3.1.10.304 +1.3.6.1.2.1.47.1.1.1.1.3.8862|6|1.3.6.1.4.1.9.12.3.1.10.304 +1.3.6.1.2.1.47.1.1.1.1.3.8863|6|1.3.6.1.4.1.9.12.3.1.10.337 +1.3.6.1.2.1.47.1.1.1.1.3.8864|6|1.3.6.1.4.1.9.12.3.1.10.337 +1.3.6.1.2.1.47.1.1.1.1.3.8865|6|1.3.6.1.4.1.9.12.3.1.10.304 +1.3.6.1.2.1.47.1.1.1.1.3.8866|6|1.3.6.1.4.1.9.12.3.1.10.304 +1.3.6.1.2.1.47.1.1.1.1.3.8867|6|1.3.6.1.4.1.9.12.3.1.10.304 +1.3.6.1.2.1.47.1.1.1.1.3.8868|6|1.3.6.1.4.1.9.12.3.1.10.304 +1.3.6.1.2.1.47.1.1.1.1.3.8869|6|1.3.6.1.4.1.9.12.3.1.10.304 +1.3.6.1.2.1.47.1.1.1.1.3.8870|6|1.3.6.1.4.1.9.12.3.1.10.304 +1.3.6.1.2.1.47.1.1.1.1.3.8871|6|1.3.6.1.4.1.9.12.3.1.10.304 +1.3.6.1.2.1.47.1.1.1.1.3.8872|6|1.3.6.1.4.1.9.12.3.1.10.304 +1.3.6.1.2.1.47.1.1.1.1.3.8873|6|1.3.6.1.4.1.9.12.3.1.10.304 +1.3.6.1.2.1.47.1.1.1.1.3.8874|6|1.3.6.1.4.1.9.12.3.1.10.304 +1.3.6.1.2.1.47.1.1.1.1.3.8875|6|1.3.6.1.4.1.9.12.3.1.10.304 +1.3.6.1.2.1.47.1.1.1.1.3.8876|6|1.3.6.1.4.1.9.12.3.1.10.304 +1.3.6.1.2.1.47.1.1.1.1.3.8927|6|1.3.6.1.4.1.9.12.3.1.10.151 +1.3.6.1.2.1.47.1.1.1.1.3.8928|6|1.3.6.1.4.1.9.12.3.1.10.151 +1.3.6.1.2.1.47.1.1.1.1.3.8929|6|1.3.6.1.4.1.9.12.3.1.10.151 +1.3.6.1.2.1.47.1.1.1.1.3.8930|6|1.3.6.1.4.1.9.12.3.1.10.151 +1.3.6.1.2.1.47.1.1.1.1.3.8931|6|1.3.6.1.4.1.9.12.3.1.10.151 +1.3.6.1.2.1.47.1.1.1.1.3.8932|6|1.3.6.1.4.1.9.12.3.1.10.151 +1.3.6.1.2.1.47.1.1.1.1.3.8933|6|1.3.6.1.4.1.9.12.3.1.10.151 +1.3.6.1.2.1.47.1.1.1.1.3.8934|6|1.3.6.1.4.1.9.12.3.1.10.151 +1.3.6.1.2.1.47.1.1.1.1.3.8943|6|1.3.6.1.4.1.9.12.3.1.10.151 +1.3.6.1.2.1.47.1.1.1.1.3.8944|6|1.3.6.1.4.1.9.12.3.1.10.151 +1.3.6.1.2.1.47.1.1.1.1.3.8945|6|1.3.6.1.4.1.9.12.3.1.10.151 +1.3.6.1.2.1.47.1.1.1.1.3.8946|6|1.3.6.1.4.1.9.12.3.1.10.151 +1.3.6.1.2.1.47.1.1.1.1.3.8947|6|1.3.6.1.4.1.9.12.3.1.10.151 +1.3.6.1.2.1.47.1.1.1.1.3.8948|6|1.3.6.1.4.1.9.12.3.1.10.151 +1.3.6.1.2.1.47.1.1.1.1.3.8949|6|1.3.6.1.4.1.9.12.3.1.10.151 +1.3.6.1.2.1.47.1.1.1.1.3.8950|6|1.3.6.1.4.1.9.12.3.1.10.151 +1.3.6.1.2.1.47.1.1.1.1.3.8993|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.8994|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.8995|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.8996|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.8997|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.8998|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.8999|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9000|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9001|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9002|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9003|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9004|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9005|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9006|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9007|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9008|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9009|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9010|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9011|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9012|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9013|6|1.3.6.1.4.1.9.12.3.1.5.288 +1.3.6.1.2.1.47.1.1.1.1.3.9014|6|1.3.6.1.4.1.9.12.3.1.5.288 +1.3.6.1.2.1.47.1.1.1.1.3.9015|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9016|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9017|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9018|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9019|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9020|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9021|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9022|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9023|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9024|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9025|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9026|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9027|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9028|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9029|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9030|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9031|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9032|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9033|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9034|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9061|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9062|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9063|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9064|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9065|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9066|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9067|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9068|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9069|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9070|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9071|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9072|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9075|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9076|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9077|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9078|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9079|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9080|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9081|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9082|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9083|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9084|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9085|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.9086|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.10593|6|1.3.6.1.4.1.9.12.3.1.8.136 +1.3.6.1.2.1.47.1.1.1.1.3.10793|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10794|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10795|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10796|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10797|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10798|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10799|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10800|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10801|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10802|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10803|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10804|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10805|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10806|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10807|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10808|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10809|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10810|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10811|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10812|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10813|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10814|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10815|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10816|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10817|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10818|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10819|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10820|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10821|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10822|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10823|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10824|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10825|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10826|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10827|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10828|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10829|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10830|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10831|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10832|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10833|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10834|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10835|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10836|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10837|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10838|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10839|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10840|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10841|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10842|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10843|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10844|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10845|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10846|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10847|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10848|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10849|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10850|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10851|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10852|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10853|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10854|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10855|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10856|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10857|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.10858|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.2.1.47.1.1.1.1.3.40961|6|1.3.6.1.4.1.9.12.3.1.7.318 +1.3.6.1.2.1.47.1.1.1.1.3.40967|6|1.3.6.1.4.1.9.12.3.1.9.2.602 +1.3.6.1.2.1.47.1.1.1.1.3.41810|6|1.3.6.1.4.1.9.12.3.1.7.114 +1.3.6.1.2.1.47.1.1.1.1.3.41910|6|1.3.6.1.4.1.9.12.3.1.8.64 +1.3.6.1.2.1.47.1.1.1.1.3.45057|6|1.3.6.1.4.1.9.12.3.1.7.318 +1.3.6.1.2.1.47.1.1.1.1.3.45063|6|1.3.6.1.4.1.9.12.3.1.9.2.602 +1.3.6.1.2.1.47.1.1.1.1.3.45906|6|1.3.6.1.4.1.9.12.3.1.7.114 +1.3.6.1.2.1.47.1.1.1.1.3.46006|6|1.3.6.1.4.1.9.12.3.1.8.64 +1.3.6.1.2.1.47.1.1.1.1.3.49153|6|1.3.6.1.4.1.9.12.3.1.7.318 +1.3.6.1.2.1.47.1.1.1.1.3.49159|6|1.3.6.1.4.1.9.12.3.1.9.2.602 +1.3.6.1.2.1.47.1.1.1.1.3.50002|6|1.3.6.1.4.1.9.12.3.1.7.114 +1.3.6.1.2.1.47.1.1.1.1.3.50102|6|1.3.6.1.4.1.9.12.3.1.8.64 +1.3.6.1.2.1.47.1.1.1.1.3.118785|6|1.3.6.1.4.1.9.12.3.1.6.494 +1.3.6.1.2.1.47.1.1.1.1.3.118790|6|1.3.6.1.4.1.9.12.3.1.9.2.602 +1.3.6.1.2.1.47.1.1.1.1.3.118894|6|1.3.6.1.4.1.9.12.3.1.5.190 +1.3.6.1.2.1.47.1.1.1.1.3.118895|6|1.3.6.1.4.1.9.12.3.1.5.190 +1.3.6.1.2.1.47.1.1.1.1.3.2375681|6|1.3.6.1.4.1.9.12.3.1.6.593 +1.3.6.1.2.1.47.1.1.1.1.3.2375682|6|1.3.6.1.4.1.9.12.3.1.9.2.422 +1.3.6.1.2.1.47.1.1.1.1.3.2375687|6|1.3.6.1.4.1.9.12.3.1.9.2 +1.3.6.1.2.1.47.1.1.1.1.3.2375930|6|1.3.6.1.4.1.9.12.3.1.8.136 +1.3.6.1.2.1.47.1.1.1.1.3.2375931|6|1.3.6.1.4.1.9.12.3.1.8.136 +1.3.6.1.2.1.47.1.1.1.1.3.2375940|6|1.3.6.1.4.1.9.12.3.1.8.135 +1.3.6.1.2.1.47.1.1.1.1.3.2375941|6|1.3.6.1.4.1.9.12.3.1.8.135 +1.3.6.1.2.1.47.1.1.1.1.3.2375950|6|1.3.6.1.4.1.9.12.3.1.8.141 +1.3.6.1.2.1.47.1.1.1.1.3.2375951|6|1.3.6.1.4.1.9.12.3.1.8.141 +1.3.6.1.2.1.47.1.1.1.1.3.2375970|6|1.3.6.1.4.1.9.12.3.1.8.137 +1.3.6.1.2.1.47.1.1.1.1.3.2375971|6|1.3.6.1.4.1.9.12.3.1.8.137 +1.3.6.1.2.1.47.1.1.1.1.3.2375972|6|1.3.6.1.4.1.9.12.3.1.8.54 +1.3.6.1.2.1.47.1.1.1.1.3.2376530|6|1.3.6.1.4.1.9.12.3.1.7.278 +1.3.6.1.2.1.47.1.1.1.1.3.2376531|6|1.3.6.1.4.1.9.12.3.1.7.278 +1.3.6.1.2.1.47.1.1.1.1.3.2376630|6|1.3.6.1.4.1.9.12.3.1.8.139 +1.3.6.1.2.1.47.1.1.1.1.3.2376631|6|1.3.6.1.4.1.9.12.3.1.8.139 +1.3.6.1.2.1.47.1.1.1.1.3.2379777|6|1.3.6.1.4.1.9.12.3.1.6.593 +1.3.6.1.2.1.47.1.1.1.1.3.2379778|6|1.3.6.1.4.1.9.12.3.1.9.2.422 +1.3.6.1.2.1.47.1.1.1.1.3.2379783|6|1.3.6.1.4.1.9.12.3.1.9.2 +1.3.6.1.2.1.47.1.1.1.1.3.2380026|6|1.3.6.1.4.1.9.12.3.1.8.136 +1.3.6.1.2.1.47.1.1.1.1.3.2380027|6|1.3.6.1.4.1.9.12.3.1.8.136 +1.3.6.1.2.1.47.1.1.1.1.3.2380036|6|1.3.6.1.4.1.9.12.3.1.8.135 +1.3.6.1.2.1.47.1.1.1.1.3.2380037|6|1.3.6.1.4.1.9.12.3.1.8.135 +1.3.6.1.2.1.47.1.1.1.1.3.2380046|6|1.3.6.1.4.1.9.12.3.1.8.141 +1.3.6.1.2.1.47.1.1.1.1.3.2380047|6|1.3.6.1.4.1.9.12.3.1.8.141 +1.3.6.1.2.1.47.1.1.1.1.3.2380066|6|1.3.6.1.4.1.9.12.3.1.8.137 +1.3.6.1.2.1.47.1.1.1.1.3.2380067|6|1.3.6.1.4.1.9.12.3.1.8.137 +1.3.6.1.2.1.47.1.1.1.1.3.2380068|6|1.3.6.1.4.1.9.12.3.1.8.54 +1.3.6.1.2.1.47.1.1.1.1.3.2380626|6|1.3.6.1.4.1.9.12.3.1.7.278 +1.3.6.1.2.1.47.1.1.1.1.3.2380627|6|1.3.6.1.4.1.9.12.3.1.7.278 +1.3.6.1.2.1.47.1.1.1.1.3.2380726|6|1.3.6.1.4.1.9.12.3.1.8.139 +1.3.6.1.2.1.47.1.1.1.1.3.2380727|6|1.3.6.1.4.1.9.12.3.1.8.139 +1.3.6.1.2.1.47.1.1.1.1.3.2990081|6|1.3.6.1.4.1.9.12.3.1.9.51.142 +1.3.6.1.2.1.47.1.1.1.1.3.2990087|6|1.3.6.1.4.1.9.12.3.1.16.1 +1.3.6.1.2.1.47.1.1.1.1.3.2990320|6|1.3.6.1.4.1.9.12.3.1.8.135 +1.3.6.1.2.1.47.1.1.1.1.3.2990330|6|1.3.6.1.4.1.9.12.3.1.8.136 +1.3.6.1.2.1.47.1.1.1.1.3.2990350|6|1.3.6.1.4.1.9.12.3.1.8.141 +1.3.6.1.2.1.47.1.1.1.1.3.2990362|6|1.3.6.1.4.1.9.12.3.1.8.141 +1.3.6.1.2.1.47.1.1.1.1.3.2990470|6|1.3.6.1.4.1.9.12.3.1.8.137 +1.3.6.1.2.1.47.1.1.1.1.3.2994177|6|1.3.6.1.4.1.9.12.3.1.9.51.8 +1.3.6.1.2.1.47.1.1.1.1.3.2994183|6|1.3.6.1.4.1.9.12.3.1.16.1 +1.3.6.1.2.1.47.1.1.1.1.3.2994416|6|1.3.6.1.4.1.9.12.3.1.8.135 +1.3.6.1.2.1.47.1.1.1.1.3.2994426|6|1.3.6.1.4.1.9.12.3.1.8.136 +1.3.6.1.2.1.47.1.1.1.1.3.2994446|6|1.3.6.1.4.1.9.12.3.1.8.141 +1.3.6.1.2.1.47.1.1.1.1.3.2994458|6|1.3.6.1.4.1.9.12.3.1.8.141 +1.3.6.1.2.1.47.1.1.1.1.3.2994566|6|1.3.6.1.4.1.9.12.3.1.8.137 +1.3.6.1.2.1.47.1.1.1.1.3.3014657|6|1.3.6.1.4.1.9.12.3.1.9.76.1 +1.3.6.1.2.1.47.1.1.1.1.3.3014663|6|1.3.6.1.4.1.9.12.3.1.16.1 +1.3.6.1.2.1.47.1.1.1.1.3.3014896|6|1.3.6.1.4.1.9.12.3.1.8.135 +1.3.6.1.2.1.47.1.1.1.1.3.3014906|6|1.3.6.1.4.1.9.12.3.1.8.136 +1.3.6.1.2.1.47.1.1.1.1.3.3014926|6|1.3.6.1.4.1.9.12.3.1.8.141 +1.3.6.1.2.1.47.1.1.1.1.3.3014938|6|1.3.6.1.4.1.9.12.3.1.8.141 +1.3.6.1.2.1.47.1.1.1.1.3.3015046|6|1.3.6.1.4.1.9.12.3.1.8.137 +1.3.6.1.2.1.47.1.1.1.1.3.3072001|6|1.3.6.1.4.1.9.12.3.1.9.76.1 +1.3.6.1.2.1.47.1.1.1.1.3.3072007|6|1.3.6.1.4.1.9.12.3.1.16.1 +1.3.6.1.2.1.47.1.1.1.1.3.3072240|6|1.3.6.1.4.1.9.12.3.1.8.135 +1.3.6.1.2.1.47.1.1.1.1.3.3072250|6|1.3.6.1.4.1.9.12.3.1.8.136 +1.3.6.1.2.1.47.1.1.1.1.3.3072270|6|1.3.6.1.4.1.9.12.3.1.8.141 +1.3.6.1.2.1.47.1.1.1.1.3.3072282|6|1.3.6.1.4.1.9.12.3.1.8.141 +1.3.6.1.2.1.47.1.1.1.1.3.3072390|6|1.3.6.1.4.1.9.12.3.1.8.137 +1.3.6.1.2.1.47.1.1.1.1.3.8384513|6|1.3.6.1.4.1.9.12.3.1.3.1904 +1.3.6.1.2.1.47.1.1.1.1.3.8384518|6|1.3.6.1.4.1.9.12.3.1.9.2.602 +1.3.6.1.2.1.47.1.1.1.1.3.8384527|6|1.3.6.1.4.1.9.12.3.1.4 +1.3.6.1.2.1.47.1.1.1.1.3.8384552|6|1.3.6.1.4.1.9.12.3.1.5.192 +1.3.6.1.2.1.47.1.1.1.1.3.8384597|6|1.3.6.1.4.1.9.12.3.1.5.188 +1.3.6.1.2.1.47.1.1.1.1.3.8384598|6|1.3.6.1.4.1.9.12.3.1.5.188 +1.3.6.1.2.1.47.1.1.1.1.3.8384599|6|1.3.6.1.4.1.9.12.3.1.5.188 +1.3.6.1.2.1.47.1.1.1.1.3.8384602|6|1.3.6.1.4.1.9.12.3.1.5.191 +1.3.6.1.2.1.47.1.1.1.1.3.8384612|6|1.3.6.1.4.1.9.12.3.1.5.343 +1.3.6.1.2.1.47.1.1.1.1.4.1|2|8384602 +1.3.6.1.2.1.47.1.1.1.1.4.2|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.3|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.4|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.7|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.11|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.12|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.13|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.18|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.26|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.30|2|1 +1.3.6.1.2.1.47.1.1.1.1.4.95|2|3 +1.3.6.1.2.1.47.1.1.1.1.4.96|2|3 +1.3.6.1.2.1.47.1.1.1.1.4.97|2|3 +1.3.6.1.2.1.47.1.1.1.1.4.103|2|18 +1.3.6.1.2.1.47.1.1.1.1.4.104|2|18 +1.3.6.1.2.1.47.1.1.1.1.4.105|2|18 +1.3.6.1.2.1.47.1.1.1.1.4.106|2|18 +1.3.6.1.2.1.47.1.1.1.1.4.108|2|18 +1.3.6.1.2.1.47.1.1.1.1.4.109|2|18 +1.3.6.1.2.1.47.1.1.1.1.4.111|2|18 +1.3.6.1.2.1.47.1.1.1.1.4.112|2|18 +1.3.6.1.2.1.47.1.1.1.1.4.113|2|18 +1.3.6.1.2.1.47.1.1.1.1.4.134|2|18 +1.3.6.1.2.1.47.1.1.1.1.4.167|2|3 +1.3.6.1.2.1.47.1.1.1.1.4.168|2|3 +1.3.6.1.2.1.47.1.1.1.1.4.169|2|3 +1.3.6.1.2.1.47.1.1.1.1.4.178|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.179|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.182|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.237|2|1 +1.3.6.1.2.1.47.1.1.1.1.4.255|2|1 +1.3.6.1.2.1.47.1.1.1.1.4.290|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.293|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.296|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.297|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.298|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.302|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.303|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.304|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.305|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.306|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.440|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.441|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.442|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.550|2|1 +1.3.6.1.2.1.47.1.1.1.1.4.551|2|550 +1.3.6.1.2.1.47.1.1.1.1.4.570|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.600|2|1 +1.3.6.1.2.1.47.1.1.1.1.4.625|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.628|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.2401|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.2601|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.2602|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.2603|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.2604|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.2605|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.2606|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.2607|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.2608|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.2609|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.2610|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.2611|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.2612|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.2613|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.2614|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.2615|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.2616|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.2617|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.2618|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.2619|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.2620|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.2621|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.2622|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.2623|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.2624|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.2625|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.2626|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.2627|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.2628|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.2629|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.2630|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.2631|2|30 +1.3.6.1.2.1.47.1.1.1.1.4.8193|2|8384552 +1.3.6.1.2.1.47.1.1.1.1.4.8194|2|8222 +1.3.6.1.2.1.47.1.1.1.1.4.8195|2|8222 +1.3.6.1.2.1.47.1.1.1.1.4.8196|2|8222 +1.3.6.1.2.1.47.1.1.1.1.4.8198|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.8199|2|8222 +1.3.6.1.2.1.47.1.1.1.1.4.8203|2|8222 +1.3.6.1.2.1.47.1.1.1.1.4.8204|2|8222 +1.3.6.1.2.1.47.1.1.1.1.4.8206|2|8222 +1.3.6.1.2.1.47.1.1.1.1.4.8222|2|8193 +1.3.6.1.2.1.47.1.1.1.1.4.8223|2|8193 +1.3.6.1.2.1.47.1.1.1.1.4.8227|2|8222 +1.3.6.1.2.1.47.1.1.1.1.4.8287|2|8195 +1.3.6.1.2.1.47.1.1.1.1.4.8288|2|8195 +1.3.6.1.2.1.47.1.1.1.1.4.8289|2|8195 +1.3.6.1.2.1.47.1.1.1.1.4.8357|2|8222 +1.3.6.1.2.1.47.1.1.1.1.4.8359|2|8195 +1.3.6.1.2.1.47.1.1.1.1.4.8360|2|8195 +1.3.6.1.2.1.47.1.1.1.1.4.8492|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.8493|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.8494|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.8495|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.8496|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.8497|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.8498|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.8499|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.8522|2|8227 +1.3.6.1.2.1.47.1.1.1.1.4.8592|2|8222 +1.3.6.1.2.1.47.1.1.1.1.4.8593|2|8222 +1.3.6.1.2.1.47.1.1.1.1.4.8594|2|8222 +1.3.6.1.2.1.47.1.1.1.1.4.8595|2|8222 +1.3.6.1.2.1.47.1.1.1.1.4.8596|2|8222 +1.3.6.1.2.1.47.1.1.1.1.4.8597|2|8222 +1.3.6.1.2.1.47.1.1.1.1.4.8599|2|8222 +1.3.6.1.2.1.47.1.1.1.1.4.8600|2|8222 +1.3.6.1.2.1.47.1.1.1.1.4.8601|2|8222 +1.3.6.1.2.1.47.1.1.1.1.4.8602|2|8222 +1.3.6.1.2.1.47.1.1.1.1.4.8603|2|8222 +1.3.6.1.2.1.47.1.1.1.1.4.8604|2|8222 +1.3.6.1.2.1.47.1.1.1.1.4.8762|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.8793|2|8227 +1.3.6.1.2.1.47.1.1.1.1.4.8794|2|8227 +1.3.6.1.2.1.47.1.1.1.1.4.8795|2|8227 +1.3.6.1.2.1.47.1.1.1.1.4.8796|2|8227 +1.3.6.1.2.1.47.1.1.1.1.4.8797|2|8227 +1.3.6.1.2.1.47.1.1.1.1.4.8798|2|8227 +1.3.6.1.2.1.47.1.1.1.1.4.8799|2|8227 +1.3.6.1.2.1.47.1.1.1.1.4.8800|2|8227 +1.3.6.1.2.1.47.1.1.1.1.4.8801|2|8227 +1.3.6.1.2.1.47.1.1.1.1.4.8802|2|8227 +1.3.6.1.2.1.47.1.1.1.1.4.8803|2|8227 +1.3.6.1.2.1.47.1.1.1.1.4.8804|2|8227 +1.3.6.1.2.1.47.1.1.1.1.4.8805|2|8227 +1.3.6.1.2.1.47.1.1.1.1.4.8806|2|8227 +1.3.6.1.2.1.47.1.1.1.1.4.8807|2|8227 +1.3.6.1.2.1.47.1.1.1.1.4.8808|2|8227 +1.3.6.1.2.1.47.1.1.1.1.4.8809|2|8227 +1.3.6.1.2.1.47.1.1.1.1.4.8810|2|8227 +1.3.6.1.2.1.47.1.1.1.1.4.8811|2|8227 +1.3.6.1.2.1.47.1.1.1.1.4.8812|2|8227 +1.3.6.1.2.1.47.1.1.1.1.4.8813|2|8227 +1.3.6.1.2.1.47.1.1.1.1.4.8814|2|8227 +1.3.6.1.2.1.47.1.1.1.1.4.8815|2|8227 +1.3.6.1.2.1.47.1.1.1.1.4.8816|2|8227 +1.3.6.1.2.1.47.1.1.1.1.4.8817|2|8227 +1.3.6.1.2.1.47.1.1.1.1.4.8818|2|8227 +1.3.6.1.2.1.47.1.1.1.1.4.8819|2|8227 +1.3.6.1.2.1.47.1.1.1.1.4.8820|2|8227 +1.3.6.1.2.1.47.1.1.1.1.4.8821|2|8227 +1.3.6.1.2.1.47.1.1.1.1.4.8822|2|8227 +1.3.6.1.2.1.47.1.1.1.1.4.8823|2|8227 +1.3.6.1.2.1.47.1.1.1.1.4.8824|2|8227 +1.3.6.1.2.1.47.1.1.1.1.4.8825|2|8227 +1.3.6.1.2.1.47.1.1.1.1.4.8826|2|8227 +1.3.6.1.2.1.47.1.1.1.1.4.8827|2|8227 +1.3.6.1.2.1.47.1.1.1.1.4.8828|2|8227 +1.3.6.1.2.1.47.1.1.1.1.4.8829|2|8227 +1.3.6.1.2.1.47.1.1.1.1.4.8830|2|8227 +1.3.6.1.2.1.47.1.1.1.1.4.8831|2|8227 +1.3.6.1.2.1.47.1.1.1.1.4.8832|2|8227 +1.3.6.1.2.1.47.1.1.1.1.4.8833|2|8227 +1.3.6.1.2.1.47.1.1.1.1.4.8834|2|8227 +1.3.6.1.2.1.47.1.1.1.1.4.8851|2|8801 +1.3.6.1.2.1.47.1.1.1.1.4.8852|2|8802 +1.3.6.1.2.1.47.1.1.1.1.4.8853|2|8803 +1.3.6.1.2.1.47.1.1.1.1.4.8854|2|8804 +1.3.6.1.2.1.47.1.1.1.1.4.8855|2|8805 +1.3.6.1.2.1.47.1.1.1.1.4.8856|2|8806 +1.3.6.1.2.1.47.1.1.1.1.4.8857|2|8807 +1.3.6.1.2.1.47.1.1.1.1.4.8858|2|8808 +1.3.6.1.2.1.47.1.1.1.1.4.8859|2|8809 +1.3.6.1.2.1.47.1.1.1.1.4.8860|2|8810 +1.3.6.1.2.1.47.1.1.1.1.4.8861|2|8811 +1.3.6.1.2.1.47.1.1.1.1.4.8862|2|8812 +1.3.6.1.2.1.47.1.1.1.1.4.8863|2|8813 +1.3.6.1.2.1.47.1.1.1.1.4.8864|2|8814 +1.3.6.1.2.1.47.1.1.1.1.4.8865|2|8815 +1.3.6.1.2.1.47.1.1.1.1.4.8866|2|8816 +1.3.6.1.2.1.47.1.1.1.1.4.8867|2|8817 +1.3.6.1.2.1.47.1.1.1.1.4.8868|2|8818 +1.3.6.1.2.1.47.1.1.1.1.4.8869|2|8819 +1.3.6.1.2.1.47.1.1.1.1.4.8870|2|8820 +1.3.6.1.2.1.47.1.1.1.1.4.8871|2|8821 +1.3.6.1.2.1.47.1.1.1.1.4.8872|2|8822 +1.3.6.1.2.1.47.1.1.1.1.4.8873|2|8823 +1.3.6.1.2.1.47.1.1.1.1.4.8874|2|8824 +1.3.6.1.2.1.47.1.1.1.1.4.8875|2|8825 +1.3.6.1.2.1.47.1.1.1.1.4.8876|2|8826 +1.3.6.1.2.1.47.1.1.1.1.4.8927|2|8827 +1.3.6.1.2.1.47.1.1.1.1.4.8928|2|8828 +1.3.6.1.2.1.47.1.1.1.1.4.8929|2|8829 +1.3.6.1.2.1.47.1.1.1.1.4.8930|2|8830 +1.3.6.1.2.1.47.1.1.1.1.4.8931|2|8831 +1.3.6.1.2.1.47.1.1.1.1.4.8932|2|8832 +1.3.6.1.2.1.47.1.1.1.1.4.8933|2|8833 +1.3.6.1.2.1.47.1.1.1.1.4.8934|2|8834 +1.3.6.1.2.1.47.1.1.1.1.4.8943|2|8793 +1.3.6.1.2.1.47.1.1.1.1.4.8944|2|8794 +1.3.6.1.2.1.47.1.1.1.1.4.8945|2|8795 +1.3.6.1.2.1.47.1.1.1.1.4.8946|2|8796 +1.3.6.1.2.1.47.1.1.1.1.4.8947|2|8797 +1.3.6.1.2.1.47.1.1.1.1.4.8948|2|8798 +1.3.6.1.2.1.47.1.1.1.1.4.8949|2|8799 +1.3.6.1.2.1.47.1.1.1.1.4.8950|2|8800 +1.3.6.1.2.1.47.1.1.1.1.4.8993|2|8793 +1.3.6.1.2.1.47.1.1.1.1.4.8994|2|8794 +1.3.6.1.2.1.47.1.1.1.1.4.8995|2|8795 +1.3.6.1.2.1.47.1.1.1.1.4.8996|2|8796 +1.3.6.1.2.1.47.1.1.1.1.4.8997|2|8797 +1.3.6.1.2.1.47.1.1.1.1.4.8998|2|8798 +1.3.6.1.2.1.47.1.1.1.1.4.8999|2|8799 +1.3.6.1.2.1.47.1.1.1.1.4.9000|2|8800 +1.3.6.1.2.1.47.1.1.1.1.4.9001|2|8801 +1.3.6.1.2.1.47.1.1.1.1.4.9002|2|8802 +1.3.6.1.2.1.47.1.1.1.1.4.9003|2|8803 +1.3.6.1.2.1.47.1.1.1.1.4.9004|2|8804 +1.3.6.1.2.1.47.1.1.1.1.4.9005|2|8805 +1.3.6.1.2.1.47.1.1.1.1.4.9006|2|8806 +1.3.6.1.2.1.47.1.1.1.1.4.9007|2|8807 +1.3.6.1.2.1.47.1.1.1.1.4.9008|2|8808 +1.3.6.1.2.1.47.1.1.1.1.4.9009|2|8809 +1.3.6.1.2.1.47.1.1.1.1.4.9010|2|8810 +1.3.6.1.2.1.47.1.1.1.1.4.9011|2|8811 +1.3.6.1.2.1.47.1.1.1.1.4.9012|2|8812 +1.3.6.1.2.1.47.1.1.1.1.4.9013|2|8813 +1.3.6.1.2.1.47.1.1.1.1.4.9014|2|8814 +1.3.6.1.2.1.47.1.1.1.1.4.9015|2|8815 +1.3.6.1.2.1.47.1.1.1.1.4.9016|2|8816 +1.3.6.1.2.1.47.1.1.1.1.4.9017|2|8817 +1.3.6.1.2.1.47.1.1.1.1.4.9018|2|8818 +1.3.6.1.2.1.47.1.1.1.1.4.9019|2|8819 +1.3.6.1.2.1.47.1.1.1.1.4.9020|2|8820 +1.3.6.1.2.1.47.1.1.1.1.4.9021|2|8821 +1.3.6.1.2.1.47.1.1.1.1.4.9022|2|8822 +1.3.6.1.2.1.47.1.1.1.1.4.9023|2|8823 +1.3.6.1.2.1.47.1.1.1.1.4.9024|2|8824 +1.3.6.1.2.1.47.1.1.1.1.4.9025|2|8825 +1.3.6.1.2.1.47.1.1.1.1.4.9026|2|8826 +1.3.6.1.2.1.47.1.1.1.1.4.9027|2|8827 +1.3.6.1.2.1.47.1.1.1.1.4.9028|2|8828 +1.3.6.1.2.1.47.1.1.1.1.4.9029|2|8829 +1.3.6.1.2.1.47.1.1.1.1.4.9030|2|8830 +1.3.6.1.2.1.47.1.1.1.1.4.9031|2|8831 +1.3.6.1.2.1.47.1.1.1.1.4.9032|2|8832 +1.3.6.1.2.1.47.1.1.1.1.4.9033|2|8833 +1.3.6.1.2.1.47.1.1.1.1.4.9034|2|8834 +1.3.6.1.2.1.47.1.1.1.1.4.9061|2|8801 +1.3.6.1.2.1.47.1.1.1.1.4.9062|2|8802 +1.3.6.1.2.1.47.1.1.1.1.4.9063|2|8803 +1.3.6.1.2.1.47.1.1.1.1.4.9064|2|8804 +1.3.6.1.2.1.47.1.1.1.1.4.9065|2|8805 +1.3.6.1.2.1.47.1.1.1.1.4.9066|2|8806 +1.3.6.1.2.1.47.1.1.1.1.4.9067|2|8807 +1.3.6.1.2.1.47.1.1.1.1.4.9068|2|8808 +1.3.6.1.2.1.47.1.1.1.1.4.9069|2|8809 +1.3.6.1.2.1.47.1.1.1.1.4.9070|2|8810 +1.3.6.1.2.1.47.1.1.1.1.4.9071|2|8811 +1.3.6.1.2.1.47.1.1.1.1.4.9072|2|8812 +1.3.6.1.2.1.47.1.1.1.1.4.9075|2|8815 +1.3.6.1.2.1.47.1.1.1.1.4.9076|2|8816 +1.3.6.1.2.1.47.1.1.1.1.4.9077|2|8817 +1.3.6.1.2.1.47.1.1.1.1.4.9078|2|8818 +1.3.6.1.2.1.47.1.1.1.1.4.9079|2|8819 +1.3.6.1.2.1.47.1.1.1.1.4.9080|2|8820 +1.3.6.1.2.1.47.1.1.1.1.4.9081|2|8821 +1.3.6.1.2.1.47.1.1.1.1.4.9082|2|8822 +1.3.6.1.2.1.47.1.1.1.1.4.9083|2|8823 +1.3.6.1.2.1.47.1.1.1.1.4.9084|2|8824 +1.3.6.1.2.1.47.1.1.1.1.4.9085|2|8825 +1.3.6.1.2.1.47.1.1.1.1.4.9086|2|8826 +1.3.6.1.2.1.47.1.1.1.1.4.10593|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.10793|2|8222 +1.3.6.1.2.1.47.1.1.1.1.4.10794|2|8222 +1.3.6.1.2.1.47.1.1.1.1.4.10795|2|8222 +1.3.6.1.2.1.47.1.1.1.1.4.10796|2|8222 +1.3.6.1.2.1.47.1.1.1.1.4.10797|2|8222 +1.3.6.1.2.1.47.1.1.1.1.4.10798|2|8222 +1.3.6.1.2.1.47.1.1.1.1.4.10799|2|8222 +1.3.6.1.2.1.47.1.1.1.1.4.10800|2|8222 +1.3.6.1.2.1.47.1.1.1.1.4.10801|2|8222 +1.3.6.1.2.1.47.1.1.1.1.4.10802|2|8222 +1.3.6.1.2.1.47.1.1.1.1.4.10803|2|8222 +1.3.6.1.2.1.47.1.1.1.1.4.10804|2|8222 +1.3.6.1.2.1.47.1.1.1.1.4.10805|2|8222 +1.3.6.1.2.1.47.1.1.1.1.4.10806|2|8222 +1.3.6.1.2.1.47.1.1.1.1.4.10807|2|8222 +1.3.6.1.2.1.47.1.1.1.1.4.10808|2|8222 +1.3.6.1.2.1.47.1.1.1.1.4.10809|2|8222 +1.3.6.1.2.1.47.1.1.1.1.4.10810|2|8222 +1.3.6.1.2.1.47.1.1.1.1.4.10811|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.10812|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.10813|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.10814|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.10815|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.10816|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.10817|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.10818|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.10819|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.10820|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.10821|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.10822|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.10823|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.10824|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.10825|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.10826|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.10827|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.10828|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.10829|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.10830|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.10831|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.10832|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.10833|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.10834|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.10835|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.10836|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.10837|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.10838|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.10839|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.10840|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.10841|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.10842|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.10843|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.10844|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.10845|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.10846|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.10847|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.10848|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.10849|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.10850|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.10851|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.10852|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.10853|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.10854|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.10855|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.10856|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.10857|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.10858|2|8223 +1.3.6.1.2.1.47.1.1.1.1.4.40961|2|8384597 +1.3.6.1.2.1.47.1.1.1.1.4.40967|2|40961 +1.3.6.1.2.1.47.1.1.1.1.4.41810|2|40961 +1.3.6.1.2.1.47.1.1.1.1.4.41910|2|41810 +1.3.6.1.2.1.47.1.1.1.1.4.45057|2|8384598 +1.3.6.1.2.1.47.1.1.1.1.4.45063|2|45057 +1.3.6.1.2.1.47.1.1.1.1.4.45906|2|45057 +1.3.6.1.2.1.47.1.1.1.1.4.46006|2|45906 +1.3.6.1.2.1.47.1.1.1.1.4.49153|2|8384599 +1.3.6.1.2.1.47.1.1.1.1.4.49159|2|49153 +1.3.6.1.2.1.47.1.1.1.1.4.50002|2|49153 +1.3.6.1.2.1.47.1.1.1.1.4.50102|2|50002 +1.3.6.1.2.1.47.1.1.1.1.4.118785|2|8384612 +1.3.6.1.2.1.47.1.1.1.1.4.118790|2|118785 +1.3.6.1.2.1.47.1.1.1.1.4.118894|2|118785 +1.3.6.1.2.1.47.1.1.1.1.4.118895|2|118785 +1.3.6.1.2.1.47.1.1.1.1.4.2375681|2|118894 +1.3.6.1.2.1.47.1.1.1.1.4.2375682|2|2375681 +1.3.6.1.2.1.47.1.1.1.1.4.2375687|2|2375681 +1.3.6.1.2.1.47.1.1.1.1.4.2375930|2|2375681 +1.3.6.1.2.1.47.1.1.1.1.4.2375931|2|2375681 +1.3.6.1.2.1.47.1.1.1.1.4.2375940|2|2375681 +1.3.6.1.2.1.47.1.1.1.1.4.2375941|2|2375681 +1.3.6.1.2.1.47.1.1.1.1.4.2375950|2|2375681 +1.3.6.1.2.1.47.1.1.1.1.4.2375951|2|2375681 +1.3.6.1.2.1.47.1.1.1.1.4.2375970|2|2375681 +1.3.6.1.2.1.47.1.1.1.1.4.2375971|2|2375681 +1.3.6.1.2.1.47.1.1.1.1.4.2375972|2|2375681 +1.3.6.1.2.1.47.1.1.1.1.4.2376530|2|2375681 +1.3.6.1.2.1.47.1.1.1.1.4.2376531|2|2375681 +1.3.6.1.2.1.47.1.1.1.1.4.2376630|2|2376530 +1.3.6.1.2.1.47.1.1.1.1.4.2376631|2|2376531 +1.3.6.1.2.1.47.1.1.1.1.4.2379777|2|118895 +1.3.6.1.2.1.47.1.1.1.1.4.2379778|2|2379777 +1.3.6.1.2.1.47.1.1.1.1.4.2379783|2|2379777 +1.3.6.1.2.1.47.1.1.1.1.4.2380026|2|2379777 +1.3.6.1.2.1.47.1.1.1.1.4.2380027|2|2379777 +1.3.6.1.2.1.47.1.1.1.1.4.2380036|2|2379777 +1.3.6.1.2.1.47.1.1.1.1.4.2380037|2|2379777 +1.3.6.1.2.1.47.1.1.1.1.4.2380046|2|2379777 +1.3.6.1.2.1.47.1.1.1.1.4.2380047|2|2379777 +1.3.6.1.2.1.47.1.1.1.1.4.2380066|2|2379777 +1.3.6.1.2.1.47.1.1.1.1.4.2380067|2|2379777 +1.3.6.1.2.1.47.1.1.1.1.4.2380068|2|2379777 +1.3.6.1.2.1.47.1.1.1.1.4.2380626|2|2379777 +1.3.6.1.2.1.47.1.1.1.1.4.2380627|2|2379777 +1.3.6.1.2.1.47.1.1.1.1.4.2380726|2|2380626 +1.3.6.1.2.1.47.1.1.1.1.4.2380727|2|2380627 +1.3.6.1.2.1.47.1.1.1.1.4.2990081|2|8995 +1.3.6.1.2.1.47.1.1.1.1.4.2990087|2|2990081 +1.3.6.1.2.1.47.1.1.1.1.4.2990320|2|2990081 +1.3.6.1.2.1.47.1.1.1.1.4.2990330|2|2990081 +1.3.6.1.2.1.47.1.1.1.1.4.2990350|2|2990081 +1.3.6.1.2.1.47.1.1.1.1.4.2990362|2|2990081 +1.3.6.1.2.1.47.1.1.1.1.4.2990470|2|2990081 +1.3.6.1.2.1.47.1.1.1.1.4.2994177|2|8996 +1.3.6.1.2.1.47.1.1.1.1.4.2994183|2|2994177 +1.3.6.1.2.1.47.1.1.1.1.4.2994416|2|2994177 +1.3.6.1.2.1.47.1.1.1.1.4.2994426|2|2994177 +1.3.6.1.2.1.47.1.1.1.1.4.2994446|2|2994177 +1.3.6.1.2.1.47.1.1.1.1.4.2994458|2|2994177 +1.3.6.1.2.1.47.1.1.1.1.4.2994566|2|2994177 +1.3.6.1.2.1.47.1.1.1.1.4.3014657|2|9001 +1.3.6.1.2.1.47.1.1.1.1.4.3014663|2|3014657 +1.3.6.1.2.1.47.1.1.1.1.4.3014896|2|3014657 +1.3.6.1.2.1.47.1.1.1.1.4.3014906|2|3014657 +1.3.6.1.2.1.47.1.1.1.1.4.3014926|2|3014657 +1.3.6.1.2.1.47.1.1.1.1.4.3014938|2|3014657 +1.3.6.1.2.1.47.1.1.1.1.4.3015046|2|3014657 +1.3.6.1.2.1.47.1.1.1.1.4.3072001|2|9015 +1.3.6.1.2.1.47.1.1.1.1.4.3072007|2|3072001 +1.3.6.1.2.1.47.1.1.1.1.4.3072240|2|3072001 +1.3.6.1.2.1.47.1.1.1.1.4.3072250|2|3072001 +1.3.6.1.2.1.47.1.1.1.1.4.3072270|2|3072001 +1.3.6.1.2.1.47.1.1.1.1.4.3072282|2|3072001 +1.3.6.1.2.1.47.1.1.1.1.4.3072390|2|3072001 +1.3.6.1.2.1.47.1.1.1.1.4.8384513|2|0 +1.3.6.1.2.1.47.1.1.1.1.4.8384518|2|8384527 +1.3.6.1.2.1.47.1.1.1.1.4.8384527|2|8384513 +1.3.6.1.2.1.47.1.1.1.1.4.8384552|2|8384513 +1.3.6.1.2.1.47.1.1.1.1.4.8384597|2|8384513 +1.3.6.1.2.1.47.1.1.1.1.4.8384598|2|8384513 +1.3.6.1.2.1.47.1.1.1.1.4.8384599|2|8384513 +1.3.6.1.2.1.47.1.1.1.1.4.8384602|2|8384513 +1.3.6.1.2.1.47.1.1.1.1.4.8384612|2|8384513 +1.3.6.1.2.1.47.1.1.1.1.5.1|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.2|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.3|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.4|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.7|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.11|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.12|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.13|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.18|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.26|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.30|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.95|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.96|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.97|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.103|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.104|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.105|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.106|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.108|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.109|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.111|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.112|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.113|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.134|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.167|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.168|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.169|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.178|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.179|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.182|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.237|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.255|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.290|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.293|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.296|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.297|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.298|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.302|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.303|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.304|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.305|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.306|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.440|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.441|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.442|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.550|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.551|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.570|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.600|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.625|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.628|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.2401|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2601|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2602|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2603|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2604|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2605|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2606|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2607|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2608|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2609|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2610|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2611|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2612|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2613|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2614|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2615|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2616|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2617|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2618|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2619|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2620|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2621|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2622|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2623|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2624|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2625|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2626|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2627|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2628|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2629|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2630|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2631|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.8193|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8194|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8195|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8196|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8198|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8199|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8203|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8204|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8206|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8222|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8223|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8227|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8287|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8288|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8289|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8357|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8359|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8360|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8492|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.8493|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.8494|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.8495|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.8496|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.8497|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.8498|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.8499|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.8522|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8592|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.8593|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.8594|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.8595|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.8596|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.8597|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.8599|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.8600|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.8601|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.8602|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.8603|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.8604|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.8762|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8793|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8794|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8795|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8796|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8797|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8798|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8799|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8800|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8801|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8802|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8803|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8804|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8805|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8806|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8807|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8808|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8809|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8810|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8811|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8812|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8813|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8814|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8815|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8816|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8817|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8818|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8819|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8820|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8821|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8822|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8823|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8824|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8825|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8826|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8827|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8828|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8829|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8830|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8831|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8832|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8833|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8834|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8851|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.8852|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.8853|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.8854|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.8855|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.8856|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.8857|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.8858|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.8859|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.8860|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.8861|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.8862|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.8863|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.8864|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.8865|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.8866|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.8867|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.8868|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.8869|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.8870|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.8871|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.8872|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.8873|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.8874|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.8875|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.8876|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.8927|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.8928|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.8929|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.8930|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.8931|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.8932|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.8933|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.8934|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.8943|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.8944|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.8945|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.8946|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.8947|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.8948|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.8949|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.8950|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.8993|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.8994|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.8995|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.8996|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.8997|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.8998|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.8999|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9000|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9001|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9002|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9003|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9004|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9005|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9006|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9007|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9008|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9009|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9010|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9011|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9012|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9013|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9014|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9015|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9016|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9017|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9018|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9019|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9020|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9021|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9022|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9023|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9024|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9025|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9026|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9027|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9028|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9029|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9030|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9031|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9032|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9033|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9034|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9061|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9062|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9063|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9064|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9065|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9066|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9067|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9068|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9069|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9070|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9071|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9072|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9075|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9076|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9077|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9078|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9079|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9080|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9081|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9082|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9083|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9084|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9085|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.9086|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.10593|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10793|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10794|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10795|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10796|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10797|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10798|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10799|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10800|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10801|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10802|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10803|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10804|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10805|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10806|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10807|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10808|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10809|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10810|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10811|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10812|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10813|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10814|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10815|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10816|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10817|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10818|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10819|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10820|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10821|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10822|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10823|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10824|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10825|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10826|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10827|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10828|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10829|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10830|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10831|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10832|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10833|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10834|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10835|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10836|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10837|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10838|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10839|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10840|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10841|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10842|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10843|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10844|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10845|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10846|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10847|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10848|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10849|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10850|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10851|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10852|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10853|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10854|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10855|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10856|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10857|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.10858|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.40961|2|7 +1.3.6.1.2.1.47.1.1.1.1.5.40967|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.41810|2|7 +1.3.6.1.2.1.47.1.1.1.1.5.41910|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.45057|2|7 +1.3.6.1.2.1.47.1.1.1.1.5.45063|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.45906|2|7 +1.3.6.1.2.1.47.1.1.1.1.5.46006|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.49153|2|7 +1.3.6.1.2.1.47.1.1.1.1.5.49159|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.50002|2|7 +1.3.6.1.2.1.47.1.1.1.1.5.50102|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.118785|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.118790|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.118894|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.118895|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.2375681|2|6 +1.3.6.1.2.1.47.1.1.1.1.5.2375682|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.2375687|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.2375930|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2375931|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2375940|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2375941|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2375950|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2375951|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2375970|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2375971|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2375972|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2376530|2|7 +1.3.6.1.2.1.47.1.1.1.1.5.2376531|2|7 +1.3.6.1.2.1.47.1.1.1.1.5.2376630|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2376631|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2379777|2|6 +1.3.6.1.2.1.47.1.1.1.1.5.2379778|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.2379783|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.2380026|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2380027|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2380036|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2380037|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2380046|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2380047|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2380066|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2380067|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2380068|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2380626|2|7 +1.3.6.1.2.1.47.1.1.1.1.5.2380627|2|7 +1.3.6.1.2.1.47.1.1.1.1.5.2380726|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2380727|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2990081|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.2990087|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.2990320|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2990330|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2990350|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2990362|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2990470|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2994177|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.2994183|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.2994416|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2994426|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2994446|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2994458|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2994566|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3014657|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.3014663|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.3014896|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3014906|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3014926|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3014938|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3015046|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3072001|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.3072007|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.3072240|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3072250|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3072270|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3072282|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3072390|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.8384513|2|3 +1.3.6.1.2.1.47.1.1.1.1.5.8384518|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.8384527|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.8384552|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.8384597|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.8384598|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.8384599|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.8384602|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.8384612|2|5 +1.3.6.1.2.1.47.1.1.1.1.6.1|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.2|2|6 +1.3.6.1.2.1.47.1.1.1.1.6.3|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.4|2|5 +1.3.6.1.2.1.47.1.1.1.1.6.7|2|11 +1.3.6.1.2.1.47.1.1.1.1.6.11|2|9 +1.3.6.1.2.1.47.1.1.1.1.6.12|2|10 +1.3.6.1.2.1.47.1.1.1.1.6.13|2|7 +1.3.6.1.2.1.47.1.1.1.1.6.18|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.26|2|8 +1.3.6.1.2.1.47.1.1.1.1.6.30|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.95|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.96|2|4 +1.3.6.1.2.1.47.1.1.1.1.6.97|2|5 +1.3.6.1.2.1.47.1.1.1.1.6.103|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.104|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.105|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.106|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.108|2|4 +1.3.6.1.2.1.47.1.1.1.1.6.109|2|5 +1.3.6.1.2.1.47.1.1.1.1.6.111|2|6 +1.3.6.1.2.1.47.1.1.1.1.6.112|2|7 +1.3.6.1.2.1.47.1.1.1.1.6.113|2|8 +1.3.6.1.2.1.47.1.1.1.1.6.134|2|9 +1.3.6.1.2.1.47.1.1.1.1.6.167|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.168|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.169|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.178|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.179|2|4 +1.3.6.1.2.1.47.1.1.1.1.6.182|2|13 +1.3.6.1.2.1.47.1.1.1.1.6.237|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.255|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.290|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.293|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.296|2|5 +1.3.6.1.2.1.47.1.1.1.1.6.297|2|6 +1.3.6.1.2.1.47.1.1.1.1.6.298|2|7 +1.3.6.1.2.1.47.1.1.1.1.6.302|2|8 +1.3.6.1.2.1.47.1.1.1.1.6.303|2|9 +1.3.6.1.2.1.47.1.1.1.1.6.304|2|10 +1.3.6.1.2.1.47.1.1.1.1.6.305|2|11 +1.3.6.1.2.1.47.1.1.1.1.6.306|2|12 +1.3.6.1.2.1.47.1.1.1.1.6.440|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.441|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.442|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.550|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.551|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.570|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.600|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.625|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.628|2|4 +1.3.6.1.2.1.47.1.1.1.1.6.2401|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.2601|2|14 +1.3.6.1.2.1.47.1.1.1.1.6.2602|2|15 +1.3.6.1.2.1.47.1.1.1.1.6.2603|2|16 +1.3.6.1.2.1.47.1.1.1.1.6.2604|2|17 +1.3.6.1.2.1.47.1.1.1.1.6.2605|2|18 +1.3.6.1.2.1.47.1.1.1.1.6.2606|2|19 +1.3.6.1.2.1.47.1.1.1.1.6.2607|2|20 +1.3.6.1.2.1.47.1.1.1.1.6.2608|2|21 +1.3.6.1.2.1.47.1.1.1.1.6.2609|2|22 +1.3.6.1.2.1.47.1.1.1.1.6.2610|2|23 +1.3.6.1.2.1.47.1.1.1.1.6.2611|2|24 +1.3.6.1.2.1.47.1.1.1.1.6.2612|2|25 +1.3.6.1.2.1.47.1.1.1.1.6.2613|2|26 +1.3.6.1.2.1.47.1.1.1.1.6.2614|2|27 +1.3.6.1.2.1.47.1.1.1.1.6.2615|2|28 +1.3.6.1.2.1.47.1.1.1.1.6.2616|2|29 +1.3.6.1.2.1.47.1.1.1.1.6.2617|2|30 +1.3.6.1.2.1.47.1.1.1.1.6.2618|2|31 +1.3.6.1.2.1.47.1.1.1.1.6.2619|2|32 +1.3.6.1.2.1.47.1.1.1.1.6.2620|2|33 +1.3.6.1.2.1.47.1.1.1.1.6.2621|2|34 +1.3.6.1.2.1.47.1.1.1.1.6.2622|2|35 +1.3.6.1.2.1.47.1.1.1.1.6.2623|2|36 +1.3.6.1.2.1.47.1.1.1.1.6.2624|2|37 +1.3.6.1.2.1.47.1.1.1.1.6.2625|2|38 +1.3.6.1.2.1.47.1.1.1.1.6.2626|2|39 +1.3.6.1.2.1.47.1.1.1.1.6.2627|2|40 +1.3.6.1.2.1.47.1.1.1.1.6.2628|2|41 +1.3.6.1.2.1.47.1.1.1.1.6.2629|2|42 +1.3.6.1.2.1.47.1.1.1.1.6.2630|2|43 +1.3.6.1.2.1.47.1.1.1.1.6.2631|2|44 +1.3.6.1.2.1.47.1.1.1.1.6.8193|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8194|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.8195|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8196|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.8198|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.8199|2|8 +1.3.6.1.2.1.47.1.1.1.1.6.8203|2|6 +1.3.6.1.2.1.47.1.1.1.1.6.8204|2|7 +1.3.6.1.2.1.47.1.1.1.1.6.8206|2|4 +1.3.6.1.2.1.47.1.1.1.1.6.8222|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8223|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.8227|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.8287|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.8288|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.8289|2|4 +1.3.6.1.2.1.47.1.1.1.1.6.8357|2|5 +1.3.6.1.2.1.47.1.1.1.1.6.8359|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8360|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.8492|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.8493|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.8494|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.8495|2|4 +1.3.6.1.2.1.47.1.1.1.1.6.8496|2|5 +1.3.6.1.2.1.47.1.1.1.1.6.8497|2|6 +1.3.6.1.2.1.47.1.1.1.1.6.8498|2|7 +1.3.6.1.2.1.47.1.1.1.1.6.8499|2|8 +1.3.6.1.2.1.47.1.1.1.1.6.8522|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8592|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8593|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.8594|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.8595|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.8596|2|4 +1.3.6.1.2.1.47.1.1.1.1.6.8597|2|5 +1.3.6.1.2.1.47.1.1.1.1.6.8599|2|6 +1.3.6.1.2.1.47.1.1.1.1.6.8600|2|7 +1.3.6.1.2.1.47.1.1.1.1.6.8601|2|8 +1.3.6.1.2.1.47.1.1.1.1.6.8602|2|9 +1.3.6.1.2.1.47.1.1.1.1.6.8603|2|10 +1.3.6.1.2.1.47.1.1.1.1.6.8604|2|11 +1.3.6.1.2.1.47.1.1.1.1.6.8762|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8793|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.8794|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.8795|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.8796|2|4 +1.3.6.1.2.1.47.1.1.1.1.6.8797|2|5 +1.3.6.1.2.1.47.1.1.1.1.6.8798|2|6 +1.3.6.1.2.1.47.1.1.1.1.6.8799|2|7 +1.3.6.1.2.1.47.1.1.1.1.6.8800|2|8 +1.3.6.1.2.1.47.1.1.1.1.6.8801|2|9 +1.3.6.1.2.1.47.1.1.1.1.6.8802|2|10 +1.3.6.1.2.1.47.1.1.1.1.6.8803|2|11 +1.3.6.1.2.1.47.1.1.1.1.6.8804|2|12 +1.3.6.1.2.1.47.1.1.1.1.6.8805|2|13 +1.3.6.1.2.1.47.1.1.1.1.6.8806|2|14 +1.3.6.1.2.1.47.1.1.1.1.6.8807|2|15 +1.3.6.1.2.1.47.1.1.1.1.6.8808|2|16 +1.3.6.1.2.1.47.1.1.1.1.6.8809|2|17 +1.3.6.1.2.1.47.1.1.1.1.6.8810|2|18 +1.3.6.1.2.1.47.1.1.1.1.6.8811|2|19 +1.3.6.1.2.1.47.1.1.1.1.6.8812|2|20 +1.3.6.1.2.1.47.1.1.1.1.6.8813|2|21 +1.3.6.1.2.1.47.1.1.1.1.6.8814|2|22 +1.3.6.1.2.1.47.1.1.1.1.6.8815|2|23 +1.3.6.1.2.1.47.1.1.1.1.6.8816|2|24 +1.3.6.1.2.1.47.1.1.1.1.6.8817|2|25 +1.3.6.1.2.1.47.1.1.1.1.6.8818|2|26 +1.3.6.1.2.1.47.1.1.1.1.6.8819|2|27 +1.3.6.1.2.1.47.1.1.1.1.6.8820|2|28 +1.3.6.1.2.1.47.1.1.1.1.6.8821|2|29 +1.3.6.1.2.1.47.1.1.1.1.6.8822|2|30 +1.3.6.1.2.1.47.1.1.1.1.6.8823|2|31 +1.3.6.1.2.1.47.1.1.1.1.6.8824|2|32 +1.3.6.1.2.1.47.1.1.1.1.6.8825|2|33 +1.3.6.1.2.1.47.1.1.1.1.6.8826|2|34 +1.3.6.1.2.1.47.1.1.1.1.6.8827|2|35 +1.3.6.1.2.1.47.1.1.1.1.6.8828|2|36 +1.3.6.1.2.1.47.1.1.1.1.6.8829|2|37 +1.3.6.1.2.1.47.1.1.1.1.6.8830|2|38 +1.3.6.1.2.1.47.1.1.1.1.6.8831|2|39 +1.3.6.1.2.1.47.1.1.1.1.6.8832|2|40 +1.3.6.1.2.1.47.1.1.1.1.6.8833|2|41 +1.3.6.1.2.1.47.1.1.1.1.6.8834|2|42 +1.3.6.1.2.1.47.1.1.1.1.6.8851|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8852|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8853|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8854|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8855|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8856|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8857|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8858|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8859|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8860|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8861|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8862|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8863|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8864|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8865|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8866|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8867|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8868|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8869|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8870|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8871|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8872|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8873|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8874|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8875|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8876|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8927|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8928|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8929|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8930|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8931|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8932|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8933|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8934|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8943|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8944|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8945|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8946|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8947|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8948|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8949|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8950|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8993|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8994|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8995|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8996|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8997|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8998|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8999|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.9000|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.9001|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.9002|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.9003|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.9004|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.9005|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.9006|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.9007|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.9008|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.9009|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.9010|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.9011|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.9012|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.9013|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.9014|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.9015|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.9016|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.9017|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.9018|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.9019|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.9020|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.9021|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.9022|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.9023|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.9024|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.9025|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.9026|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.9027|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.9028|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.9029|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.9030|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.9031|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.9032|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.9033|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.9034|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.9061|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.9062|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.9063|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.9064|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.9065|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.9066|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.9067|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.9068|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.9069|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.9070|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.9071|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.9072|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.9075|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.9076|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.9077|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.9078|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.9079|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.9080|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.9081|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.9082|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.9083|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.9084|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.9085|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.9086|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.10593|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.10793|2|12 +1.3.6.1.2.1.47.1.1.1.1.6.10794|2|13 +1.3.6.1.2.1.47.1.1.1.1.6.10795|2|14 +1.3.6.1.2.1.47.1.1.1.1.6.10796|2|15 +1.3.6.1.2.1.47.1.1.1.1.6.10797|2|16 +1.3.6.1.2.1.47.1.1.1.1.6.10798|2|17 +1.3.6.1.2.1.47.1.1.1.1.6.10799|2|18 +1.3.6.1.2.1.47.1.1.1.1.6.10800|2|19 +1.3.6.1.2.1.47.1.1.1.1.6.10801|2|20 +1.3.6.1.2.1.47.1.1.1.1.6.10802|2|21 +1.3.6.1.2.1.47.1.1.1.1.6.10803|2|22 +1.3.6.1.2.1.47.1.1.1.1.6.10804|2|23 +1.3.6.1.2.1.47.1.1.1.1.6.10805|2|24 +1.3.6.1.2.1.47.1.1.1.1.6.10806|2|25 +1.3.6.1.2.1.47.1.1.1.1.6.10807|2|26 +1.3.6.1.2.1.47.1.1.1.1.6.10808|2|27 +1.3.6.1.2.1.47.1.1.1.1.6.10809|2|28 +1.3.6.1.2.1.47.1.1.1.1.6.10810|2|29 +1.3.6.1.2.1.47.1.1.1.1.6.10811|2|9 +1.3.6.1.2.1.47.1.1.1.1.6.10812|2|10 +1.3.6.1.2.1.47.1.1.1.1.6.10813|2|11 +1.3.6.1.2.1.47.1.1.1.1.6.10814|2|12 +1.3.6.1.2.1.47.1.1.1.1.6.10815|2|13 +1.3.6.1.2.1.47.1.1.1.1.6.10816|2|14 +1.3.6.1.2.1.47.1.1.1.1.6.10817|2|15 +1.3.6.1.2.1.47.1.1.1.1.6.10818|2|16 +1.3.6.1.2.1.47.1.1.1.1.6.10819|2|17 +1.3.6.1.2.1.47.1.1.1.1.6.10820|2|18 +1.3.6.1.2.1.47.1.1.1.1.6.10821|2|19 +1.3.6.1.2.1.47.1.1.1.1.6.10822|2|20 +1.3.6.1.2.1.47.1.1.1.1.6.10823|2|21 +1.3.6.1.2.1.47.1.1.1.1.6.10824|2|22 +1.3.6.1.2.1.47.1.1.1.1.6.10825|2|23 +1.3.6.1.2.1.47.1.1.1.1.6.10826|2|24 +1.3.6.1.2.1.47.1.1.1.1.6.10827|2|25 +1.3.6.1.2.1.47.1.1.1.1.6.10828|2|26 +1.3.6.1.2.1.47.1.1.1.1.6.10829|2|27 +1.3.6.1.2.1.47.1.1.1.1.6.10830|2|28 +1.3.6.1.2.1.47.1.1.1.1.6.10831|2|29 +1.3.6.1.2.1.47.1.1.1.1.6.10832|2|30 +1.3.6.1.2.1.47.1.1.1.1.6.10833|2|31 +1.3.6.1.2.1.47.1.1.1.1.6.10834|2|32 +1.3.6.1.2.1.47.1.1.1.1.6.10835|2|33 +1.3.6.1.2.1.47.1.1.1.1.6.10836|2|34 +1.3.6.1.2.1.47.1.1.1.1.6.10837|2|35 +1.3.6.1.2.1.47.1.1.1.1.6.10838|2|36 +1.3.6.1.2.1.47.1.1.1.1.6.10839|2|37 +1.3.6.1.2.1.47.1.1.1.1.6.10840|2|38 +1.3.6.1.2.1.47.1.1.1.1.6.10841|2|39 +1.3.6.1.2.1.47.1.1.1.1.6.10842|2|40 +1.3.6.1.2.1.47.1.1.1.1.6.10843|2|41 +1.3.6.1.2.1.47.1.1.1.1.6.10844|2|42 +1.3.6.1.2.1.47.1.1.1.1.6.10845|2|43 +1.3.6.1.2.1.47.1.1.1.1.6.10846|2|44 +1.3.6.1.2.1.47.1.1.1.1.6.10847|2|45 +1.3.6.1.2.1.47.1.1.1.1.6.10848|2|46 +1.3.6.1.2.1.47.1.1.1.1.6.10849|2|47 +1.3.6.1.2.1.47.1.1.1.1.6.10850|2|48 +1.3.6.1.2.1.47.1.1.1.1.6.10851|2|49 +1.3.6.1.2.1.47.1.1.1.1.6.10852|2|50 +1.3.6.1.2.1.47.1.1.1.1.6.10853|2|51 +1.3.6.1.2.1.47.1.1.1.1.6.10854|2|52 +1.3.6.1.2.1.47.1.1.1.1.6.10855|2|53 +1.3.6.1.2.1.47.1.1.1.1.6.10856|2|54 +1.3.6.1.2.1.47.1.1.1.1.6.10857|2|55 +1.3.6.1.2.1.47.1.1.1.1.6.10858|2|56 +1.3.6.1.2.1.47.1.1.1.1.6.40961|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.40967|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.41810|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.41910|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.45057|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.45063|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.45906|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.46006|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.49153|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.49159|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.50002|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.50102|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.118785|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.118790|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.118894|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.118895|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.2375681|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.2375682|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.2375687|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.2375930|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.2375931|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.2375940|2|7 +1.3.6.1.2.1.47.1.1.1.1.6.2375941|2|8 +1.3.6.1.2.1.47.1.1.1.1.6.2375950|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.2375951|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.2375970|2|4 +1.3.6.1.2.1.47.1.1.1.1.6.2375971|2|5 +1.3.6.1.2.1.47.1.1.1.1.6.2375972|2|6 +1.3.6.1.2.1.47.1.1.1.1.6.2376530|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.2376531|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.2376630|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.2376631|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.2379777|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.2379778|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.2379783|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.2380026|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.2380027|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.2380036|2|7 +1.3.6.1.2.1.47.1.1.1.1.6.2380037|2|8 +1.3.6.1.2.1.47.1.1.1.1.6.2380046|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.2380047|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.2380066|2|4 +1.3.6.1.2.1.47.1.1.1.1.6.2380067|2|5 +1.3.6.1.2.1.47.1.1.1.1.6.2380068|2|6 +1.3.6.1.2.1.47.1.1.1.1.6.2380626|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.2380627|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.2380726|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.2380727|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.2990081|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.2990087|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.2990320|2|4 +1.3.6.1.2.1.47.1.1.1.1.6.2990330|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.2990350|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.2990362|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.2990470|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.2994177|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.2994183|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.2994416|2|4 +1.3.6.1.2.1.47.1.1.1.1.6.2994426|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.2994446|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.2994458|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.2994566|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.3014657|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.3014663|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.3014896|2|4 +1.3.6.1.2.1.47.1.1.1.1.6.3014906|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.3014926|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.3014938|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.3015046|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.3072001|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.3072007|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.3072240|2|4 +1.3.6.1.2.1.47.1.1.1.1.6.3072250|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.3072270|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.3072282|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.3072390|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.8384513|2|-1 +1.3.6.1.2.1.47.1.1.1.1.6.8384518|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8384527|2|6 +1.3.6.1.2.1.47.1.1.1.1.6.8384552|2|4 +1.3.6.1.2.1.47.1.1.1.1.6.8384597|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.8384598|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.8384599|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.8384602|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.8384612|2|5 +1.3.6.1.2.1.47.1.1.1.1.7.1|4|0/RSP0 +1.3.6.1.2.1.47.1.1.1.1.7.2|4|0/RSP0-CBC +1.3.6.1.2.1.47.1.1.1.1.7.3|4|0/RSP0-CPU Module +1.3.6.1.2.1.47.1.1.1.1.7.4|4|0/RSP0-PCI Switch 8725 +1.3.6.1.2.1.47.1.1.1.1.7.7|4|0/RSP0-IDPROM +1.3.6.1.2.1.47.1.1.1.1.7.11|4|0/RSP0-IPU-FSBL +1.3.6.1.2.1.47.1.1.1.1.7.12|4|0/RSP0-IPU-Linux +1.3.6.1.2.1.47.1.1.1.1.7.13|4|0/RSP0-Drax-FPGA +1.3.6.1.2.1.47.1.1.1.1.7.18|4|0/RSP0-Mgmt Ethernet Switch +1.3.6.1.2.1.47.1.1.1.1.7.26|4|0/RSP0-IPU-FPGA +1.3.6.1.2.1.47.1.1.1.1.7.30|4|0/RSP0-Motherboard +1.3.6.1.2.1.47.1.1.1.1.7.95|4|0/RSP0-Intel Boradwell DE 4 Core CPU Complex +1.3.6.1.2.1.47.1.1.1.1.7.96|4|0/RSP0-Virtual processor for admin +1.3.6.1.2.1.47.1.1.1.1.7.97|4|0/RSP0-Virtual processor for RP XR +1.3.6.1.2.1.47.1.1.1.1.7.103|4|0/RSP0-CE Port 2 +1.3.6.1.2.1.47.1.1.1.1.7.104|4|0/RSP0-CE Port 3 +1.3.6.1.2.1.47.1.1.1.1.7.105|4|0/RSP0-CE Port 4 +1.3.6.1.2.1.47.1.1.1.1.7.106|4|0/RSP0-CE Port 5 +1.3.6.1.2.1.47.1.1.1.1.7.108|4|0/RSP0-CE Port 7 +1.3.6.1.2.1.47.1.1.1.1.7.109|4|0/RSP0-CE Port 8 +1.3.6.1.2.1.47.1.1.1.1.7.111|4|0/RSP0-CE Port 10 +1.3.6.1.2.1.47.1.1.1.1.7.112|4|0/RSP0-CE Port 11 +1.3.6.1.2.1.47.1.1.1.1.7.113|4|0/RSP0-CE Port 12 +1.3.6.1.2.1.47.1.1.1.1.7.134|4|0/RSP0-CE Port 13 +1.3.6.1.2.1.47.1.1.1.1.7.167|4|0/RSP0-Primary-BIOS +1.3.6.1.2.1.47.1.1.1.1.7.168|4|0/RSP0-SSDa-MICRON +1.3.6.1.2.1.47.1.1.1.1.7.169|4|0/RSP0-SSDb-MICRON +1.3.6.1.2.1.47.1.1.1.1.7.178|4|0/RSP0-DIE_DIMM0 +1.3.6.1.2.1.47.1.1.1.1.7.179|4|0/RSP0-DIE_DIMM1 +1.3.6.1.2.1.47.1.1.1.1.7.182|4|0/RSP0-Hotspot +1.3.6.1.2.1.47.1.1.1.1.7.237|4|MgmtEth0/RSP0/CPU0/0 +1.3.6.1.2.1.47.1.1.1.1.7.255|4|0/RSP0-Management 1 +1.3.6.1.2.1.47.1.1.1.1.7.290|4|0/RSP0-DIE_CPU +1.3.6.1.2.1.47.1.1.1.1.7.293|4|0/RSP0-DIE_PCH +1.3.6.1.2.1.47.1.1.1.1.7.296|4|0/RSP0-AIR_Inlet0 +1.3.6.1.2.1.47.1.1.1.1.7.297|4|0/RSP0-AIR_Inlet1 +1.3.6.1.2.1.47.1.1.1.1.7.298|4|0/RSP0-AIR_Inlet2 +1.3.6.1.2.1.47.1.1.1.1.7.302|4|0/RSP0-Hotspot0 +1.3.6.1.2.1.47.1.1.1.1.7.303|4|0/RSP0-Hotspot1 +1.3.6.1.2.1.47.1.1.1.1.7.304|4|0/RSP0-AIR_Outlet0 +1.3.6.1.2.1.47.1.1.1.1.7.305|4|0/RSP0-AIR_Outlet1 +1.3.6.1.2.1.47.1.1.1.1.7.306|4|0/RSP0-Inlet +1.3.6.1.2.1.47.1.1.1.1.7.440|4|0/RSP0-CON0 +1.3.6.1.2.1.47.1.1.1.1.7.441|4|0/RSP0-CON1 +1.3.6.1.2.1.47.1.1.1.1.7.442|4|0/RSP0-CON2 +1.3.6.1.2.1.47.1.1.1.1.7.550|4|0/RSP0-USB 0 +1.3.6.1.2.1.47.1.1.1.1.7.551|4|0/RSP0-USB Container +1.3.6.1.2.1.47.1.1.1.1.7.570|4|0/RSP0-SPI Flash +1.3.6.1.2.1.47.1.1.1.1.7.600|4|0/RSP0-Alarm +1.3.6.1.2.1.47.1.1.1.1.7.625|4|0/RSP0-Disk0 +1.3.6.1.2.1.47.1.1.1.1.7.628|4|0/RSP0-Disk1 +1.3.6.1.2.1.47.1.1.1.1.7.2401|4|0/RSP0-Hot Swap CS +1.3.6.1.2.1.47.1.1.1.1.7.2601|4|0/RSP0-P5V +1.3.6.1.2.1.47.1.1.1.1.7.2602|4|0/RSP0-P7V +1.3.6.1.2.1.47.1.1.1.1.7.2603|4|0/RSP0-P3_3V_AUX +1.3.6.1.2.1.47.1.1.1.1.7.2604|4|0/RSP0-P1_8V +1.3.6.1.2.1.47.1.1.1.1.7.2605|4|0/RSP0-P2_5V +1.3.6.1.2.1.47.1.1.1.1.7.2606|4|0/RSP0-P1_0V_ALDRIN_CORE +1.3.6.1.2.1.47.1.1.1.1.7.2607|4|0/RSP0-VP1P2_CPU_C +1.3.6.1.2.1.47.1.1.1.1.7.2608|4|0/RSP0-P3_3V +1.3.6.1.2.1.47.1.1.1.1.7.2609|4|0/RSP0-VP1P5_C +1.3.6.1.2.1.47.1.1.1.1.7.2610|4|0/RSP0-VP1P7_C +1.3.6.1.2.1.47.1.1.1.1.7.2611|4|0/RSP0-VP3P3_CPU_C +1.3.6.1.2.1.47.1.1.1.1.7.2612|4|0/RSP0-VP1P05_CPU_C +1.3.6.1.2.1.47.1.1.1.1.7.2613|4|0/RSP0-VP1P8_VCCIN_C +1.3.6.1.2.1.47.1.1.1.1.7.2614|4|0/RSP0-VP1P3_C +1.3.6.1.2.1.47.1.1.1.1.7.2615|4|0/RSP0-VP0P6_VTT_A_MEM_C +1.3.6.1.2.1.47.1.1.1.1.7.2616|4|0/RSP0-VP1P8_OCXO +1.3.6.1.2.1.47.1.1.1.1.7.2617|4|0/RSP0-VP3P3_OCXO +1.3.6.1.2.1.47.1.1.1.1.7.2618|4|0/RSP0-P0_9V +1.3.6.1.2.1.47.1.1.1.1.7.2619|4|0/RSP0-P1V +1.3.6.1.2.1.47.1.1.1.1.7.2620|4|0/RSP0-ALD_P1P8_LDO +1.3.6.1.2.1.47.1.1.1.1.7.2621|4|0/RSP0-OMG_P1P8_LDO +1.3.6.1.2.1.47.1.1.1.1.7.2622|4|0/RSP0-P1_2V +1.3.6.1.2.1.47.1.1.1.1.7.2623|4|0/RSP0-VP0P6_VTT_B_MEM_C +1.3.6.1.2.1.47.1.1.1.1.7.2624|4|0/RSP0-VP1P2_MGTAVTT_OMG +1.3.6.1.2.1.47.1.1.1.1.7.2625|4|0/RSP0-P1_0V_ALDRIN_SD_AVDD +1.3.6.1.2.1.47.1.1.1.1.7.2626|4|0/RSP0-VP1P0_MGTAVCC_IPU +1.3.6.1.2.1.47.1.1.1.1.7.2627|4|0/RSP0-P1_5V +1.3.6.1.2.1.47.1.1.1.1.7.2628|4|0/RSP0-VP1P0_MGTAVCC_OMG +1.3.6.1.2.1.47.1.1.1.1.7.2629|4|0/RSP0-VP1P2_MGTAVTT_IPU +1.3.6.1.2.1.47.1.1.1.1.7.2630|4|0/RSP0-VP1P8_MGTVCCAUX_IPU +1.3.6.1.2.1.47.1.1.1.1.7.2631|4|0/RSP0-Hot Swap VS +1.3.6.1.2.1.47.1.1.1.1.7.8193|4|0/0 +1.3.6.1.2.1.47.1.1.1.1.7.8194|4|0/0-CBC +1.3.6.1.2.1.47.1.1.1.1.7.8195|4|0/0-CPU Module +1.3.6.1.2.1.47.1.1.1.1.7.8196|4|0/0-PCI Switch 8733 +1.3.6.1.2.1.47.1.1.1.1.7.8198|4|0/0-DB-IDPROM +1.3.6.1.2.1.47.1.1.1.1.7.8199|4|0/0-IDPROM +1.3.6.1.2.1.47.1.1.1.1.7.8203|4|0/0-IPU-FSBL +1.3.6.1.2.1.47.1.1.1.1.7.8204|4|0/0-IPU-Linux +1.3.6.1.2.1.47.1.1.1.1.7.8206|4|0/0-Gamora-FPGA +1.3.6.1.2.1.47.1.1.1.1.7.8222|4|0/0-Motherboard +1.3.6.1.2.1.47.1.1.1.1.7.8223|4|0/0-Daughterboard +1.3.6.1.2.1.47.1.1.1.1.7.8227|4|0/0-Slice 0 +1.3.6.1.2.1.47.1.1.1.1.7.8287|4|0/0-Intel Broadwell-DE 4 Core CPU Complex +1.3.6.1.2.1.47.1.1.1.1.7.8288|4|0/0-Virtual processor for admin +1.3.6.1.2.1.47.1.1.1.1.7.8289|4|0/0-Virtual processor for LC XR +1.3.6.1.2.1.47.1.1.1.1.7.8357|4|0/0-IPU-FPGA +1.3.6.1.2.1.47.1.1.1.1.7.8359|4|0/0-Primary-BIOS +1.3.6.1.2.1.47.1.1.1.1.7.8360|4|0/0-SSDa-MICRON +1.3.6.1.2.1.47.1.1.1.1.7.8492|4|0/0-DB AIR_Inlet0 +1.3.6.1.2.1.47.1.1.1.1.7.8493|4|0/0-DB AIR_Inlet1 +1.3.6.1.2.1.47.1.1.1.1.7.8494|4|0/0-DB AIR_Inlet2 +1.3.6.1.2.1.47.1.1.1.1.7.8495|4|0/0-DB Hotspot0 +1.3.6.1.2.1.47.1.1.1.1.7.8496|4|0/0-DB Hotspot1 +1.3.6.1.2.1.47.1.1.1.1.7.8497|4|0/0-DB Hotspot2 +1.3.6.1.2.1.47.1.1.1.1.7.8498|4|0/0-DB AIR_Outlet0 +1.3.6.1.2.1.47.1.1.1.1.7.8499|4|0/0-DB AIR_Outlet1 +1.3.6.1.2.1.47.1.1.1.1.7.8522|4|0/0-Slice 0 EZChip +1.3.6.1.2.1.47.1.1.1.1.7.8592|4|0/0-DIE_NP0 +1.3.6.1.2.1.47.1.1.1.1.7.8593|4|0/0-DIE_NP1 +1.3.6.1.2.1.47.1.1.1.1.7.8594|4|0/0-DIE_FabArbiter +1.3.6.1.2.1.47.1.1.1.1.7.8595|4|0/0-DIE_FIA0 +1.3.6.1.2.1.47.1.1.1.1.7.8596|4|0/0-DIE_FIA1 +1.3.6.1.2.1.47.1.1.1.1.7.8597|4|0/0-DIE_FabSwitch +1.3.6.1.2.1.47.1.1.1.1.7.8599|4|0/0-DIE_CPU +1.3.6.1.2.1.47.1.1.1.1.7.8600|4|0/0-DIE_PCH +1.3.6.1.2.1.47.1.1.1.1.7.8601|4|0/0-DIE_DIMM0 +1.3.6.1.2.1.47.1.1.1.1.7.8602|4|0/0-DIE_DIMM1 +1.3.6.1.2.1.47.1.1.1.1.7.8603|4|0/0-Inlet +1.3.6.1.2.1.47.1.1.1.1.7.8604|4|0/0-Hotspot +1.3.6.1.2.1.47.1.1.1.1.7.8762|4|0/0-SPI Flash +1.3.6.1.2.1.47.1.1.1.1.7.8793|4|0/0-Slice 0 SFP Port Module #0 +1.3.6.1.2.1.47.1.1.1.1.7.8794|4|0/0-Slice 0 SFP Port Module #1 +1.3.6.1.2.1.47.1.1.1.1.7.8795|4|0/0-Slice 0 SFP Port Module #2 +1.3.6.1.2.1.47.1.1.1.1.7.8796|4|0/0-Slice 0 SFP Port Module #3 +1.3.6.1.2.1.47.1.1.1.1.7.8797|4|0/0-Slice 0 SFP Port Module #4 +1.3.6.1.2.1.47.1.1.1.1.7.8798|4|0/0-Slice 0 SFP Port Module #5 +1.3.6.1.2.1.47.1.1.1.1.7.8799|4|0/0-Slice 0 SFP Port Module #6 +1.3.6.1.2.1.47.1.1.1.1.7.8800|4|0/0-Slice 0 SFP Port Module #7 +1.3.6.1.2.1.47.1.1.1.1.7.8801|4|0/0-Slice 0 SFP Port Module #8 +1.3.6.1.2.1.47.1.1.1.1.7.8802|4|0/0-Slice 0 SFP Port Module #9 +1.3.6.1.2.1.47.1.1.1.1.7.8803|4|0/0-Slice 0 SFP Port Module #10 +1.3.6.1.2.1.47.1.1.1.1.7.8804|4|0/0-Slice 0 SFP Port Module #11 +1.3.6.1.2.1.47.1.1.1.1.7.8805|4|0/0-Slice 0 SFP Port Module #12 +1.3.6.1.2.1.47.1.1.1.1.7.8806|4|0/0-Slice 0 SFP Port Module #13 +1.3.6.1.2.1.47.1.1.1.1.7.8807|4|0/0-Slice 0 SFP Port Module #14 +1.3.6.1.2.1.47.1.1.1.1.7.8808|4|0/0-Slice 0 SFP Port Module #15 +1.3.6.1.2.1.47.1.1.1.1.7.8809|4|0/0-Slice 0 SFP Port Module #16 +1.3.6.1.2.1.47.1.1.1.1.7.8810|4|0/0-Slice 0 SFP Port Module #17 +1.3.6.1.2.1.47.1.1.1.1.7.8811|4|0/0-Slice 0 SFP Port Module #18 +1.3.6.1.2.1.47.1.1.1.1.7.8812|4|0/0-Slice 0 SFP Port Module #19 +1.3.6.1.2.1.47.1.1.1.1.7.8813|4|0/0-Slice 0 QSFP28 Port Module #20 +1.3.6.1.2.1.47.1.1.1.1.7.8814|4|0/0-Slice 0 QSFP28 Port Module #21 +1.3.6.1.2.1.47.1.1.1.1.7.8815|4|0/0-Slice 0 SFP Port Module #22 +1.3.6.1.2.1.47.1.1.1.1.7.8816|4|0/0-Slice 0 SFP Port Module #23 +1.3.6.1.2.1.47.1.1.1.1.7.8817|4|0/0-Slice 0 SFP Port Module #24 +1.3.6.1.2.1.47.1.1.1.1.7.8818|4|0/0-Slice 0 SFP Port Module #25 +1.3.6.1.2.1.47.1.1.1.1.7.8819|4|0/0-Slice 0 SFP Port Module #26 +1.3.6.1.2.1.47.1.1.1.1.7.8820|4|0/0-Slice 0 SFP Port Module #27 +1.3.6.1.2.1.47.1.1.1.1.7.8821|4|0/0-Slice 0 SFP Port Module #28 +1.3.6.1.2.1.47.1.1.1.1.7.8822|4|0/0-Slice 0 SFP Port Module #29 +1.3.6.1.2.1.47.1.1.1.1.7.8823|4|0/0-Slice 0 SFP Port Module #30 +1.3.6.1.2.1.47.1.1.1.1.7.8824|4|0/0-Slice 0 SFP Port Module #31 +1.3.6.1.2.1.47.1.1.1.1.7.8825|4|0/0-Slice 0 SFP Port Module #32 +1.3.6.1.2.1.47.1.1.1.1.7.8826|4|0/0-Slice 0 SFP Port Module #33 +1.3.6.1.2.1.47.1.1.1.1.7.8827|4|0/0-Slice 0 SFP Port Module #34 +1.3.6.1.2.1.47.1.1.1.1.7.8828|4|0/0-Slice 0 SFP Port Module #35 +1.3.6.1.2.1.47.1.1.1.1.7.8829|4|0/0-Slice 0 SFP Port Module #36 +1.3.6.1.2.1.47.1.1.1.1.7.8830|4|0/0-Slice 0 SFP Port Module #37 +1.3.6.1.2.1.47.1.1.1.1.7.8831|4|0/0-Slice 0 SFP Port Module #38 +1.3.6.1.2.1.47.1.1.1.1.7.8832|4|0/0-Slice 0 SFP Port Module #39 +1.3.6.1.2.1.47.1.1.1.1.7.8833|4|0/0-Slice 0 SFP Port Module #40 +1.3.6.1.2.1.47.1.1.1.1.7.8834|4|0/0-Slice 0 SFP Port Module #41 +1.3.6.1.2.1.47.1.1.1.1.7.8851|4|0/0-TenGigE0/0/0/8 +1.3.6.1.2.1.47.1.1.1.1.7.8852|4|0/0-TenGigE0/0/0/9 +1.3.6.1.2.1.47.1.1.1.1.7.8853|4|0/0-TenGigE0/0/0/10 +1.3.6.1.2.1.47.1.1.1.1.7.8854|4|0/0-TenGigE0/0/0/11 +1.3.6.1.2.1.47.1.1.1.1.7.8855|4|0/0-TenGigE0/0/0/12 +1.3.6.1.2.1.47.1.1.1.1.7.8856|4|0/0-TenGigE0/0/0/13 +1.3.6.1.2.1.47.1.1.1.1.7.8857|4|0/0-TenGigE0/0/0/14 +1.3.6.1.2.1.47.1.1.1.1.7.8858|4|0/0-TenGigE0/0/0/15 +1.3.6.1.2.1.47.1.1.1.1.7.8859|4|0/0-TenGigE0/0/0/16 +1.3.6.1.2.1.47.1.1.1.1.7.8860|4|0/0-TenGigE0/0/0/17 +1.3.6.1.2.1.47.1.1.1.1.7.8861|4|0/0-TenGigE0/0/0/18 +1.3.6.1.2.1.47.1.1.1.1.7.8862|4|0/0-TenGigE0/0/0/19 +1.3.6.1.2.1.47.1.1.1.1.7.8863|4|0/0-HundredGigE0/0/0/20 +1.3.6.1.2.1.47.1.1.1.1.7.8864|4|0/0-HundredGigE0/0/0/21 +1.3.6.1.2.1.47.1.1.1.1.7.8865|4|0/0-TenGigE0/0/0/22 +1.3.6.1.2.1.47.1.1.1.1.7.8866|4|0/0-TenGigE0/0/0/23 +1.3.6.1.2.1.47.1.1.1.1.7.8867|4|0/0-TenGigE0/0/0/24 +1.3.6.1.2.1.47.1.1.1.1.7.8868|4|0/0-TenGigE0/0/0/25 +1.3.6.1.2.1.47.1.1.1.1.7.8869|4|0/0-TenGigE0/0/0/26 +1.3.6.1.2.1.47.1.1.1.1.7.8870|4|0/0-TenGigE0/0/0/27 +1.3.6.1.2.1.47.1.1.1.1.7.8871|4|0/0-TenGigE0/0/0/28 +1.3.6.1.2.1.47.1.1.1.1.7.8872|4|0/0-TenGigE0/0/0/29 +1.3.6.1.2.1.47.1.1.1.1.7.8873|4|0/0-TenGigE0/0/0/30 +1.3.6.1.2.1.47.1.1.1.1.7.8874|4|0/0-TenGigE0/0/0/31 +1.3.6.1.2.1.47.1.1.1.1.7.8875|4|0/0-TenGigE0/0/0/32 +1.3.6.1.2.1.47.1.1.1.1.7.8876|4|0/0-TenGigE0/0/0/33 +1.3.6.1.2.1.47.1.1.1.1.7.8927|4|0/0-GigabitEthernet0/0/0/34 +1.3.6.1.2.1.47.1.1.1.1.7.8928|4|0/0-GigabitEthernet0/0/0/35 +1.3.6.1.2.1.47.1.1.1.1.7.8929|4|0/0-GigabitEthernet0/0/0/36 +1.3.6.1.2.1.47.1.1.1.1.7.8930|4|0/0-GigabitEthernet0/0/0/37 +1.3.6.1.2.1.47.1.1.1.1.7.8931|4|0/0-GigabitEthernet0/0/0/38 +1.3.6.1.2.1.47.1.1.1.1.7.8932|4|0/0-GigabitEthernet0/0/0/39 +1.3.6.1.2.1.47.1.1.1.1.7.8933|4|0/0-GigabitEthernet0/0/0/40 +1.3.6.1.2.1.47.1.1.1.1.7.8934|4|0/0-GigabitEthernet0/0/0/41 +1.3.6.1.2.1.47.1.1.1.1.7.8943|4|0/0-GigabitEthernet0/0/0/0 +1.3.6.1.2.1.47.1.1.1.1.7.8944|4|0/0-GigabitEthernet0/0/0/1 +1.3.6.1.2.1.47.1.1.1.1.7.8945|4|0/0-GigabitEthernet0/0/0/2 +1.3.6.1.2.1.47.1.1.1.1.7.8946|4|0/0-GigabitEthernet0/0/0/3 +1.3.6.1.2.1.47.1.1.1.1.7.8947|4|0/0-GigabitEthernet0/0/0/4 +1.3.6.1.2.1.47.1.1.1.1.7.8948|4|0/0-GigabitEthernet0/0/0/5 +1.3.6.1.2.1.47.1.1.1.1.7.8949|4|0/0-GigabitEthernet0/0/0/6 +1.3.6.1.2.1.47.1.1.1.1.7.8950|4|0/0-GigabitEthernet0/0/0/7 +1.3.6.1.2.1.47.1.1.1.1.7.8993|4|0/0-SFP bay 0 +1.3.6.1.2.1.47.1.1.1.1.7.8994|4|0/0-SFP bay 1 +1.3.6.1.2.1.47.1.1.1.1.7.8995|4|0/0-SFP bay 2 +1.3.6.1.2.1.47.1.1.1.1.7.8996|4|0/0-SFP bay 3 +1.3.6.1.2.1.47.1.1.1.1.7.8997|4|0/0-SFP bay 4 +1.3.6.1.2.1.47.1.1.1.1.7.8998|4|0/0-SFP bay 5 +1.3.6.1.2.1.47.1.1.1.1.7.8999|4|0/0-SFP bay 6 +1.3.6.1.2.1.47.1.1.1.1.7.9000|4|0/0-SFP bay 7 +1.3.6.1.2.1.47.1.1.1.1.7.9001|4|0/0-SFP+ bay 8 +1.3.6.1.2.1.47.1.1.1.1.7.9002|4|0/0-SFP+ bay 9 +1.3.6.1.2.1.47.1.1.1.1.7.9003|4|0/0-SFP+ bay 10 +1.3.6.1.2.1.47.1.1.1.1.7.9004|4|0/0-SFP+ bay 11 +1.3.6.1.2.1.47.1.1.1.1.7.9005|4|0/0-SFP+ bay 12 +1.3.6.1.2.1.47.1.1.1.1.7.9006|4|0/0-SFP+ bay 13 +1.3.6.1.2.1.47.1.1.1.1.7.9007|4|0/0-SFP+ bay 14 +1.3.6.1.2.1.47.1.1.1.1.7.9008|4|0/0-SFP+ bay 15 +1.3.6.1.2.1.47.1.1.1.1.7.9009|4|0/0-SFP+ bay 16 +1.3.6.1.2.1.47.1.1.1.1.7.9010|4|0/0-SFP+ bay 17 +1.3.6.1.2.1.47.1.1.1.1.7.9011|4|0/0-SFP+ bay 18 +1.3.6.1.2.1.47.1.1.1.1.7.9012|4|0/0-SFP+ bay 19 +1.3.6.1.2.1.47.1.1.1.1.7.9013|4|0/0-QSFP28 bay 20 +1.3.6.1.2.1.47.1.1.1.1.7.9014|4|0/0-QSFP28 bay 21 +1.3.6.1.2.1.47.1.1.1.1.7.9015|4|0/0-SFP+ bay 22 +1.3.6.1.2.1.47.1.1.1.1.7.9016|4|0/0-SFP+ bay 23 +1.3.6.1.2.1.47.1.1.1.1.7.9017|4|0/0-SFP+ bay 24 +1.3.6.1.2.1.47.1.1.1.1.7.9018|4|0/0-SFP+ bay 25 +1.3.6.1.2.1.47.1.1.1.1.7.9019|4|0/0-SFP+ bay 26 +1.3.6.1.2.1.47.1.1.1.1.7.9020|4|0/0-SFP+ bay 27 +1.3.6.1.2.1.47.1.1.1.1.7.9021|4|0/0-SFP+ bay 28 +1.3.6.1.2.1.47.1.1.1.1.7.9022|4|0/0-SFP+ bay 29 +1.3.6.1.2.1.47.1.1.1.1.7.9023|4|0/0-SFP+ bay 30 +1.3.6.1.2.1.47.1.1.1.1.7.9024|4|0/0-SFP+ bay 31 +1.3.6.1.2.1.47.1.1.1.1.7.9025|4|0/0-SFP+ bay 32 +1.3.6.1.2.1.47.1.1.1.1.7.9026|4|0/0-SFP+ bay 33 +1.3.6.1.2.1.47.1.1.1.1.7.9027|4|0/0-SFP bay 34 +1.3.6.1.2.1.47.1.1.1.1.7.9028|4|0/0-SFP bay 35 +1.3.6.1.2.1.47.1.1.1.1.7.9029|4|0/0-SFP bay 36 +1.3.6.1.2.1.47.1.1.1.1.7.9030|4|0/0-SFP bay 37 +1.3.6.1.2.1.47.1.1.1.1.7.9031|4|0/0-SFP bay 38 +1.3.6.1.2.1.47.1.1.1.1.7.9032|4|0/0-SFP bay 39 +1.3.6.1.2.1.47.1.1.1.1.7.9033|4|0/0-SFP bay 40 +1.3.6.1.2.1.47.1.1.1.1.7.9034|4|0/0-SFP bay 41 +1.3.6.1.2.1.47.1.1.1.1.7.9061|4|0/0-SFP bay 8 +1.3.6.1.2.1.47.1.1.1.1.7.9062|4|0/0-SFP bay 9 +1.3.6.1.2.1.47.1.1.1.1.7.9063|4|0/0-SFP bay 10 +1.3.6.1.2.1.47.1.1.1.1.7.9064|4|0/0-SFP bay 11 +1.3.6.1.2.1.47.1.1.1.1.7.9065|4|0/0-SFP bay 12 +1.3.6.1.2.1.47.1.1.1.1.7.9066|4|0/0-SFP bay 13 +1.3.6.1.2.1.47.1.1.1.1.7.9067|4|0/0-SFP bay 14 +1.3.6.1.2.1.47.1.1.1.1.7.9068|4|0/0-SFP bay 15 +1.3.6.1.2.1.47.1.1.1.1.7.9069|4|0/0-SFP bay 16 +1.3.6.1.2.1.47.1.1.1.1.7.9070|4|0/0-SFP bay 17 +1.3.6.1.2.1.47.1.1.1.1.7.9071|4|0/0-SFP bay 18 +1.3.6.1.2.1.47.1.1.1.1.7.9072|4|0/0-SFP bay 19 +1.3.6.1.2.1.47.1.1.1.1.7.9075|4|0/0-SFP bay 22 +1.3.6.1.2.1.47.1.1.1.1.7.9076|4|0/0-SFP bay 23 +1.3.6.1.2.1.47.1.1.1.1.7.9077|4|0/0-SFP bay 24 +1.3.6.1.2.1.47.1.1.1.1.7.9078|4|0/0-SFP bay 25 +1.3.6.1.2.1.47.1.1.1.1.7.9079|4|0/0-SFP bay 26 +1.3.6.1.2.1.47.1.1.1.1.7.9080|4|0/0-SFP bay 27 +1.3.6.1.2.1.47.1.1.1.1.7.9081|4|0/0-SFP bay 28 +1.3.6.1.2.1.47.1.1.1.1.7.9082|4|0/0-SFP bay 29 +1.3.6.1.2.1.47.1.1.1.1.7.9083|4|0/0-SFP bay 30 +1.3.6.1.2.1.47.1.1.1.1.7.9084|4|0/0-SFP bay 31 +1.3.6.1.2.1.47.1.1.1.1.7.9085|4|0/0-SFP bay 32 +1.3.6.1.2.1.47.1.1.1.1.7.9086|4|0/0-SFP bay 33 +1.3.6.1.2.1.47.1.1.1.1.7.10593|4|0/0-Hot Swap CS +1.3.6.1.2.1.47.1.1.1.1.7.10793|4|0/0-VP1P2_ARB +1.3.6.1.2.1.47.1.1.1.1.7.10794|4|0/0-P1_2V_LC +1.3.6.1.2.1.47.1.1.1.1.7.10795|4|0/0-VP3P3_MB_CAN +1.3.6.1.2.1.47.1.1.1.1.7.10796|4|0/0-P1_8V_LC +1.3.6.1.2.1.47.1.1.1.1.7.10797|4|0/0-P2_5V_LC +1.3.6.1.2.1.47.1.1.1.1.7.10798|4|0/0-P1_5V_LC +1.3.6.1.2.1.47.1.1.1.1.7.10799|4|0/0-VP0P6_VTT_B_MEM +1.3.6.1.2.1.47.1.1.1.1.7.10800|4|0/0-VP1P2_CPU_L +1.3.6.1.2.1.47.1.1.1.1.7.10801|4|0/0-P3_3V_LC +1.3.6.1.2.1.47.1.1.1.1.7.10802|4|0/0-VP1P5_L +1.3.6.1.2.1.47.1.1.1.1.7.10803|4|0/0-VP1P7_L +1.3.6.1.2.1.47.1.1.1.1.7.10804|4|0/0-VP3P3_CPU_L +1.3.6.1.2.1.47.1.1.1.1.7.10805|4|0/0-VP1P05_LCCPU +1.3.6.1.2.1.47.1.1.1.1.7.10806|4|0/0-VP1P8_VCCIN_L +1.3.6.1.2.1.47.1.1.1.1.7.10807|4|0/0-VP1P3_L +1.3.6.1.2.1.47.1.1.1.1.7.10808|4|0/0-VP0P6_VTT_A_MEM +1.3.6.1.2.1.47.1.1.1.1.7.10809|4|0/0-VP1P0_ARB_VDD +1.3.6.1.2.1.47.1.1.1.1.7.10810|4|0/0-P1_0V_LC +1.3.6.1.2.1.47.1.1.1.1.7.10811|4|0/0-VP1P0_MGTAVCC_LF0 +1.3.6.1.2.1.47.1.1.1.1.7.10812|4|0/0-VP1P2_LF_IPU +1.3.6.1.2.1.47.1.1.1.1.7.10813|4|0/0-P1_8V0 +1.3.6.1.2.1.47.1.1.1.1.7.10814|4|0/0-P3_3V0 +1.3.6.1.2.1.47.1.1.1.1.7.10815|4|0/0-P2_5V0 +1.3.6.1.2.1.47.1.1.1.1.7.10816|4|0/0-P7_0V0 +1.3.6.1.2.1.47.1.1.1.1.7.10817|4|0/0-P5_0V0 +1.3.6.1.2.1.47.1.1.1.1.7.10818|4|0/0-CS4343_VP0P9 +1.3.6.1.2.1.47.1.1.1.1.7.10819|4|0/0-CS4343_VP1P8 +1.3.6.1.2.1.47.1.1.1.1.7.10820|4|0/0-GB_VP1P0_DVDD +1.3.6.1.2.1.47.1.1.1.1.7.10821|4|0/0-GB_VP1P0_AVDD +1.3.6.1.2.1.47.1.1.1.1.7.10822|4|0/0-VP1P0 +1.3.6.1.2.1.47.1.1.1.1.7.10823|4|0/0-MACSEC_10G_AVDD +1.3.6.1.2.1.47.1.1.1.1.7.10824|4|0/0-MACSEC_100G_AVDD +1.3.6.1.2.1.47.1.1.1.1.7.10825|4|0/0-MACSEC_100G_VP1P0 +1.3.6.1.2.1.47.1.1.1.1.7.10826|4|0/0-VP1P8_NP1_IO +1.3.6.1.2.1.47.1.1.1.1.7.10827|4|0/0-VP1P5_NP1_IO +1.3.6.1.2.1.47.1.1.1.1.7.10828|4|0/0-VP1P0_NP1_CORE +1.3.6.1.2.1.47.1.1.1.1.7.10829|4|0/0-VP0P75_NP1_VTT +1.3.6.1.2.1.47.1.1.1.1.7.10830|4|0/0-VP2P5_TS1_VDDH +1.3.6.1.2.1.47.1.1.1.1.7.10831|4|0/0-VP1P5_TS1_VDDH +1.3.6.1.2.1.47.1.1.1.1.7.10832|4|0/0-VP1P0_TS1_AVDD +1.3.6.1.2.1.47.1.1.1.1.7.10833|4|0/0-VP0P9_TS1_VDD +1.3.6.1.2.1.47.1.1.1.1.7.10834|4|0/0-VP0P75_TS1_VTT +1.3.6.1.2.1.47.1.1.1.1.7.10835|4|0/0-VP1P0_TS1_PLVDDD +1.3.6.1.2.1.47.1.1.1.1.7.10836|4|0/0-VP1P0_SM15_PLVDD +1.3.6.1.2.1.47.1.1.1.1.7.10837|4|0/0-VP0P9_SM15_VDD +1.3.6.1.2.1.47.1.1.1.1.7.10838|4|0/0-VP1P0_SM15_AVDD +1.3.6.1.2.1.47.1.1.1.1.7.10839|4|0/0-VP0P9_PCIE +1.3.6.1.2.1.47.1.1.1.1.7.10840|4|0/0-VP1P8_TCAM_IO +1.3.6.1.2.1.47.1.1.1.1.7.10841|4|0/0-VP0P9_TCAM_VDDS +1.3.6.1.2.1.47.1.1.1.1.7.10842|4|0/0-VP0P9_TCAM_VTT +1.3.6.1.2.1.47.1.1.1.1.7.10843|4|0/0-VP0P9_TCAM_CORE +1.3.6.1.2.1.47.1.1.1.1.7.10844|4|0/0-VP3P3_SUPR +1.3.6.1.2.1.47.1.1.1.1.7.10845|4|0/0-VP1P8_ZL_CORE +1.3.6.1.2.1.47.1.1.1.1.7.10846|4|0/0-VP3P3_ZL_VDD +1.3.6.1.2.1.47.1.1.1.1.7.10847|4|0/0-VP3P3_DB_CAN +1.3.6.1.2.1.47.1.1.1.1.7.10848|4|0/0-VP1P8_NP0_IO +1.3.6.1.2.1.47.1.1.1.1.7.10849|4|0/0-VP1P5_NP0_IO +1.3.6.1.2.1.47.1.1.1.1.7.10850|4|0/0-VP1P0_NP0_CORE +1.3.6.1.2.1.47.1.1.1.1.7.10851|4|0/0-VP0P75_NP0_VTT +1.3.6.1.2.1.47.1.1.1.1.7.10852|4|0/0-VP2P5_TS0_VDDH +1.3.6.1.2.1.47.1.1.1.1.7.10853|4|0/0-VP1P5_TS0_VDDH +1.3.6.1.2.1.47.1.1.1.1.7.10854|4|0/0-VP1P0_TS0_AVDD +1.3.6.1.2.1.47.1.1.1.1.7.10855|4|0/0-VP0P9_TS0_VDD +1.3.6.1.2.1.47.1.1.1.1.7.10856|4|0/0-VP0P75_TS0_VTT +1.3.6.1.2.1.47.1.1.1.1.7.10857|4|0/0-VP1P0_TS0_PLVDDD +1.3.6.1.2.1.47.1.1.1.1.7.10858|4|0/0-Hot Swap VS +1.3.6.1.2.1.47.1.1.1.1.7.40961|4|0/FT0 +1.3.6.1.2.1.47.1.1.1.1.7.40967|4|0/FT0-IDPROM +1.3.6.1.2.1.47.1.1.1.1.7.41810|4|0/FT0-Fan0 +1.3.6.1.2.1.47.1.1.1.1.7.41910|4|0/FT0-Fan Speed Sensor 0 +1.3.6.1.2.1.47.1.1.1.1.7.45057|4|0/FT1 +1.3.6.1.2.1.47.1.1.1.1.7.45063|4|0/FT1-IDPROM +1.3.6.1.2.1.47.1.1.1.1.7.45906|4|0/FT1-Fan0 +1.3.6.1.2.1.47.1.1.1.1.7.46006|4|0/FT1-Fan Speed Sensor 0 +1.3.6.1.2.1.47.1.1.1.1.7.49153|4|0/FT2 +1.3.6.1.2.1.47.1.1.1.1.7.49159|4|0/FT2-IDPROM +1.3.6.1.2.1.47.1.1.1.1.7.50002|4|0/FT2-Fan0 +1.3.6.1.2.1.47.1.1.1.1.7.50102|4|0/FT2-Fan Speed Sensor 0 +1.3.6.1.2.1.47.1.1.1.1.7.118785|4|0/PT0 +1.3.6.1.2.1.47.1.1.1.1.7.118790|4|0/PT0-IDPROM +1.3.6.1.2.1.47.1.1.1.1.7.118894|4|0/PT0-PEM Bay 0 +1.3.6.1.2.1.47.1.1.1.1.7.118895|4|0/PT0-PEM Bay 1 +1.3.6.1.2.1.47.1.1.1.1.7.2375681|4|0/PT0-PM0 +1.3.6.1.2.1.47.1.1.1.1.7.2375682|4|0/PT0-PM0-PO-PriMCU +1.3.6.1.2.1.47.1.1.1.1.7.2375687|4|0/PT0-PM0-IDPROM +1.3.6.1.2.1.47.1.1.1.1.7.2375930|4|0/PT0-PM0-Input Current +1.3.6.1.2.1.47.1.1.1.1.7.2375931|4|0/PT0-PM0-Output Current +1.3.6.1.2.1.47.1.1.1.1.7.2375940|4|0/PT0-PM0-Input Voltage +1.3.6.1.2.1.47.1.1.1.1.7.2375941|4|0/PT0-PM0-Output Voltage +1.3.6.1.2.1.47.1.1.1.1.7.2375950|4|0/PT0-PM0-Input Power +1.3.6.1.2.1.47.1.1.1.1.7.2375951|4|0/PT0-PM0-Output Power +1.3.6.1.2.1.47.1.1.1.1.7.2375970|4|0/PT0-PM0-Inlet Temperature +1.3.6.1.2.1.47.1.1.1.1.7.2375971|4|0/PT0-PM0-Outlet Temperature +1.3.6.1.2.1.47.1.1.1.1.7.2375972|4|0/PT0-PM0-Heat Sink Temperature +1.3.6.1.2.1.47.1.1.1.1.7.2376530|4|0/PT0-PM0-fan0 +1.3.6.1.2.1.47.1.1.1.1.7.2376531|4|0/PT0-PM0-fan1 +1.3.6.1.2.1.47.1.1.1.1.7.2376630|4|0/PT0-PM0-Fan 0 Speed +1.3.6.1.2.1.47.1.1.1.1.7.2376631|4|0/PT0-PM0-Fan 1 Speed +1.3.6.1.2.1.47.1.1.1.1.7.2379777|4|0/PT0-PM1 +1.3.6.1.2.1.47.1.1.1.1.7.2379778|4|0/PT0-PM1-PO-PriMCU +1.3.6.1.2.1.47.1.1.1.1.7.2379783|4|0/PT0-PM1-IDPROM +1.3.6.1.2.1.47.1.1.1.1.7.2380026|4|0/PT0-PM1-Input Current +1.3.6.1.2.1.47.1.1.1.1.7.2380027|4|0/PT0-PM1-Output Current +1.3.6.1.2.1.47.1.1.1.1.7.2380036|4|0/PT0-PM1-Input Voltage +1.3.6.1.2.1.47.1.1.1.1.7.2380037|4|0/PT0-PM1-Output Voltage +1.3.6.1.2.1.47.1.1.1.1.7.2380046|4|0/PT0-PM1-Input Power +1.3.6.1.2.1.47.1.1.1.1.7.2380047|4|0/PT0-PM1-Output Power +1.3.6.1.2.1.47.1.1.1.1.7.2380066|4|0/PT0-PM1-Inlet Temperature +1.3.6.1.2.1.47.1.1.1.1.7.2380067|4|0/PT0-PM1-Outlet Temperature +1.3.6.1.2.1.47.1.1.1.1.7.2380068|4|0/PT0-PM1-Heat Sink Temperature +1.3.6.1.2.1.47.1.1.1.1.7.2380626|4|0/PT0-PM1-fan0 +1.3.6.1.2.1.47.1.1.1.1.7.2380627|4|0/PT0-PM1-fan1 +1.3.6.1.2.1.47.1.1.1.1.7.2380726|4|0/PT0-PM1-Fan 0 Speed +1.3.6.1.2.1.47.1.1.1.1.7.2380727|4|0/PT0-PM1-Fan 1 Speed +1.3.6.1.2.1.47.1.1.1.1.7.2990081|4|0/0-PORT-2 +1.3.6.1.2.1.47.1.1.1.1.7.2990087|4|0/0-PORT-2-IDPROM +1.3.6.1.2.1.47.1.1.1.1.7.2990320|4|0/0-PORT-2-3.3 V +1.3.6.1.2.1.47.1.1.1.1.7.2990330|4|0/0-PORT-2-Tx Lane 0 Current +1.3.6.1.2.1.47.1.1.1.1.7.2990350|4|0/0-PORT-2-Tx Lane 0 Power +1.3.6.1.2.1.47.1.1.1.1.7.2990362|4|0/0-PORT-2-Rx Lane 0 Power +1.3.6.1.2.1.47.1.1.1.1.7.2990470|4|0/0-PORT-2-Module Temp +1.3.6.1.2.1.47.1.1.1.1.7.2994177|4|0/0-PORT-3 +1.3.6.1.2.1.47.1.1.1.1.7.2994183|4|0/0-PORT-3-IDPROM +1.3.6.1.2.1.47.1.1.1.1.7.2994416|4|0/0-PORT-3-3.3 V +1.3.6.1.2.1.47.1.1.1.1.7.2994426|4|0/0-PORT-3-Tx Lane 0 Current +1.3.6.1.2.1.47.1.1.1.1.7.2994446|4|0/0-PORT-3-Tx Lane 0 Power +1.3.6.1.2.1.47.1.1.1.1.7.2994458|4|0/0-PORT-3-Rx Lane 0 Power +1.3.6.1.2.1.47.1.1.1.1.7.2994566|4|0/0-PORT-3-Module Temp +1.3.6.1.2.1.47.1.1.1.1.7.3014657|4|0/0-PORT-8 +1.3.6.1.2.1.47.1.1.1.1.7.3014663|4|0/0-PORT-8-IDPROM +1.3.6.1.2.1.47.1.1.1.1.7.3014896|4|0/0-PORT-8-3.3 V +1.3.6.1.2.1.47.1.1.1.1.7.3014906|4|0/0-PORT-8-Tx Lane 0 Current +1.3.6.1.2.1.47.1.1.1.1.7.3014926|4|0/0-PORT-8-Tx Lane 0 Power +1.3.6.1.2.1.47.1.1.1.1.7.3014938|4|0/0-PORT-8-Rx Lane 0 Power +1.3.6.1.2.1.47.1.1.1.1.7.3015046|4|0/0-PORT-8-Module Temp +1.3.6.1.2.1.47.1.1.1.1.7.3072001|4|0/0-PORT-22 +1.3.6.1.2.1.47.1.1.1.1.7.3072007|4|0/0-PORT-22-IDPROM +1.3.6.1.2.1.47.1.1.1.1.7.3072240|4|0/0-PORT-22-3.3 V +1.3.6.1.2.1.47.1.1.1.1.7.3072250|4|0/0-PORT-22-Tx Lane 0 Current +1.3.6.1.2.1.47.1.1.1.1.7.3072270|4|0/0-PORT-22-Tx Lane 0 Power +1.3.6.1.2.1.47.1.1.1.1.7.3072282|4|0/0-PORT-22-Rx Lane 0 Power +1.3.6.1.2.1.47.1.1.1.1.7.3072390|4|0/0-PORT-22-Module Temp +1.3.6.1.2.1.47.1.1.1.1.7.8384513|4|Rack 0 +1.3.6.1.2.1.47.1.1.1.1.7.8384518|4|Rack 0-IDPROM +1.3.6.1.2.1.47.1.1.1.1.7.8384527|4|Rack 0-LineCard Chassis Backplane +1.3.6.1.2.1.47.1.1.1.1.7.8384552|4|Rack 0-Line Card Slot 0 +1.3.6.1.2.1.47.1.1.1.1.7.8384597|4|Rack 0-Fan Tray Slot 0 +1.3.6.1.2.1.47.1.1.1.1.7.8384598|4|Rack 0-Fan Tray Slot 1 +1.3.6.1.2.1.47.1.1.1.1.7.8384599|4|Rack 0-Fan Tray Slot 2 +1.3.6.1.2.1.47.1.1.1.1.7.8384602|4|Rack 0-RouteProcessor Slot 0 +1.3.6.1.2.1.47.1.1.1.1.7.8384612|4|Rack 0-Power Tray Slot 0 +1.3.6.1.2.1.47.1.1.1.1.8.1|4|V01 +1.3.6.1.2.1.47.1.1.1.1.8.2|4| +1.3.6.1.2.1.47.1.1.1.1.8.3|4| +1.3.6.1.2.1.47.1.1.1.1.8.4|4| +1.3.6.1.2.1.47.1.1.1.1.8.7|4|V01 +1.3.6.1.2.1.47.1.1.1.1.8.11|4| +1.3.6.1.2.1.47.1.1.1.1.8.12|4| +1.3.6.1.2.1.47.1.1.1.1.8.13|4| +1.3.6.1.2.1.47.1.1.1.1.8.18|4| +1.3.6.1.2.1.47.1.1.1.1.8.26|4| +1.3.6.1.2.1.47.1.1.1.1.8.30|4| +1.3.6.1.2.1.47.1.1.1.1.8.95|4| +1.3.6.1.2.1.47.1.1.1.1.8.96|4| +1.3.6.1.2.1.47.1.1.1.1.8.97|4| +1.3.6.1.2.1.47.1.1.1.1.8.103|4| +1.3.6.1.2.1.47.1.1.1.1.8.104|4| +1.3.6.1.2.1.47.1.1.1.1.8.105|4| +1.3.6.1.2.1.47.1.1.1.1.8.106|4| +1.3.6.1.2.1.47.1.1.1.1.8.108|4| +1.3.6.1.2.1.47.1.1.1.1.8.109|4| +1.3.6.1.2.1.47.1.1.1.1.8.111|4| +1.3.6.1.2.1.47.1.1.1.1.8.112|4| +1.3.6.1.2.1.47.1.1.1.1.8.113|4| +1.3.6.1.2.1.47.1.1.1.1.8.134|4| +1.3.6.1.2.1.47.1.1.1.1.8.167|4| +1.3.6.1.2.1.47.1.1.1.1.8.168|4| +1.3.6.1.2.1.47.1.1.1.1.8.169|4| +1.3.6.1.2.1.47.1.1.1.1.8.178|4| +1.3.6.1.2.1.47.1.1.1.1.8.179|4| +1.3.6.1.2.1.47.1.1.1.1.8.182|4| +1.3.6.1.2.1.47.1.1.1.1.8.237|4| +1.3.6.1.2.1.47.1.1.1.1.8.255|4| +1.3.6.1.2.1.47.1.1.1.1.8.290|4| +1.3.6.1.2.1.47.1.1.1.1.8.293|4| +1.3.6.1.2.1.47.1.1.1.1.8.296|4| +1.3.6.1.2.1.47.1.1.1.1.8.297|4| +1.3.6.1.2.1.47.1.1.1.1.8.298|4| +1.3.6.1.2.1.47.1.1.1.1.8.302|4| +1.3.6.1.2.1.47.1.1.1.1.8.303|4| +1.3.6.1.2.1.47.1.1.1.1.8.304|4| +1.3.6.1.2.1.47.1.1.1.1.8.305|4| +1.3.6.1.2.1.47.1.1.1.1.8.306|4| +1.3.6.1.2.1.47.1.1.1.1.8.440|4| +1.3.6.1.2.1.47.1.1.1.1.8.441|4| +1.3.6.1.2.1.47.1.1.1.1.8.442|4| +1.3.6.1.2.1.47.1.1.1.1.8.550|4| +1.3.6.1.2.1.47.1.1.1.1.8.551|4| +1.3.6.1.2.1.47.1.1.1.1.8.570|4| +1.3.6.1.2.1.47.1.1.1.1.8.600|4| +1.3.6.1.2.1.47.1.1.1.1.8.625|4| +1.3.6.1.2.1.47.1.1.1.1.8.628|4| +1.3.6.1.2.1.47.1.1.1.1.8.2401|4| +1.3.6.1.2.1.47.1.1.1.1.8.2601|4| +1.3.6.1.2.1.47.1.1.1.1.8.2602|4| +1.3.6.1.2.1.47.1.1.1.1.8.2603|4| +1.3.6.1.2.1.47.1.1.1.1.8.2604|4| +1.3.6.1.2.1.47.1.1.1.1.8.2605|4| +1.3.6.1.2.1.47.1.1.1.1.8.2606|4| +1.3.6.1.2.1.47.1.1.1.1.8.2607|4| +1.3.6.1.2.1.47.1.1.1.1.8.2608|4| +1.3.6.1.2.1.47.1.1.1.1.8.2609|4| +1.3.6.1.2.1.47.1.1.1.1.8.2610|4| +1.3.6.1.2.1.47.1.1.1.1.8.2611|4| +1.3.6.1.2.1.47.1.1.1.1.8.2612|4| +1.3.6.1.2.1.47.1.1.1.1.8.2613|4| +1.3.6.1.2.1.47.1.1.1.1.8.2614|4| +1.3.6.1.2.1.47.1.1.1.1.8.2615|4| +1.3.6.1.2.1.47.1.1.1.1.8.2616|4| +1.3.6.1.2.1.47.1.1.1.1.8.2617|4| +1.3.6.1.2.1.47.1.1.1.1.8.2618|4| +1.3.6.1.2.1.47.1.1.1.1.8.2619|4| +1.3.6.1.2.1.47.1.1.1.1.8.2620|4| +1.3.6.1.2.1.47.1.1.1.1.8.2621|4| +1.3.6.1.2.1.47.1.1.1.1.8.2622|4| +1.3.6.1.2.1.47.1.1.1.1.8.2623|4| +1.3.6.1.2.1.47.1.1.1.1.8.2624|4| +1.3.6.1.2.1.47.1.1.1.1.8.2625|4| +1.3.6.1.2.1.47.1.1.1.1.8.2626|4| +1.3.6.1.2.1.47.1.1.1.1.8.2627|4| +1.3.6.1.2.1.47.1.1.1.1.8.2628|4| +1.3.6.1.2.1.47.1.1.1.1.8.2629|4| +1.3.6.1.2.1.47.1.1.1.1.8.2630|4| +1.3.6.1.2.1.47.1.1.1.1.8.2631|4| +1.3.6.1.2.1.47.1.1.1.1.8.8193|4|V01 +1.3.6.1.2.1.47.1.1.1.1.8.8194|4| +1.3.6.1.2.1.47.1.1.1.1.8.8195|4| +1.3.6.1.2.1.47.1.1.1.1.8.8196|4| +1.3.6.1.2.1.47.1.1.1.1.8.8198|4|V01 +1.3.6.1.2.1.47.1.1.1.1.8.8199|4| +1.3.6.1.2.1.47.1.1.1.1.8.8203|4| +1.3.6.1.2.1.47.1.1.1.1.8.8204|4| +1.3.6.1.2.1.47.1.1.1.1.8.8206|4| +1.3.6.1.2.1.47.1.1.1.1.8.8222|4| +1.3.6.1.2.1.47.1.1.1.1.8.8223|4| +1.3.6.1.2.1.47.1.1.1.1.8.8227|4| +1.3.6.1.2.1.47.1.1.1.1.8.8287|4| +1.3.6.1.2.1.47.1.1.1.1.8.8288|4| +1.3.6.1.2.1.47.1.1.1.1.8.8289|4| +1.3.6.1.2.1.47.1.1.1.1.8.8357|4| +1.3.6.1.2.1.47.1.1.1.1.8.8359|4| +1.3.6.1.2.1.47.1.1.1.1.8.8360|4| +1.3.6.1.2.1.47.1.1.1.1.8.8492|4| +1.3.6.1.2.1.47.1.1.1.1.8.8493|4| +1.3.6.1.2.1.47.1.1.1.1.8.8494|4| +1.3.6.1.2.1.47.1.1.1.1.8.8495|4| +1.3.6.1.2.1.47.1.1.1.1.8.8496|4| +1.3.6.1.2.1.47.1.1.1.1.8.8497|4| +1.3.6.1.2.1.47.1.1.1.1.8.8498|4| +1.3.6.1.2.1.47.1.1.1.1.8.8499|4| +1.3.6.1.2.1.47.1.1.1.1.8.8522|4| +1.3.6.1.2.1.47.1.1.1.1.8.8592|4| +1.3.6.1.2.1.47.1.1.1.1.8.8593|4| +1.3.6.1.2.1.47.1.1.1.1.8.8594|4| +1.3.6.1.2.1.47.1.1.1.1.8.8595|4| +1.3.6.1.2.1.47.1.1.1.1.8.8596|4| +1.3.6.1.2.1.47.1.1.1.1.8.8597|4| +1.3.6.1.2.1.47.1.1.1.1.8.8599|4| +1.3.6.1.2.1.47.1.1.1.1.8.8600|4| +1.3.6.1.2.1.47.1.1.1.1.8.8601|4| +1.3.6.1.2.1.47.1.1.1.1.8.8602|4| +1.3.6.1.2.1.47.1.1.1.1.8.8603|4| +1.3.6.1.2.1.47.1.1.1.1.8.8604|4| +1.3.6.1.2.1.47.1.1.1.1.8.8762|4| +1.3.6.1.2.1.47.1.1.1.1.8.8793|4| +1.3.6.1.2.1.47.1.1.1.1.8.8794|4| +1.3.6.1.2.1.47.1.1.1.1.8.8795|4| +1.3.6.1.2.1.47.1.1.1.1.8.8796|4| +1.3.6.1.2.1.47.1.1.1.1.8.8797|4| +1.3.6.1.2.1.47.1.1.1.1.8.8798|4| +1.3.6.1.2.1.47.1.1.1.1.8.8799|4| +1.3.6.1.2.1.47.1.1.1.1.8.8800|4| +1.3.6.1.2.1.47.1.1.1.1.8.8801|4| +1.3.6.1.2.1.47.1.1.1.1.8.8802|4| +1.3.6.1.2.1.47.1.1.1.1.8.8803|4| +1.3.6.1.2.1.47.1.1.1.1.8.8804|4| +1.3.6.1.2.1.47.1.1.1.1.8.8805|4| +1.3.6.1.2.1.47.1.1.1.1.8.8806|4| +1.3.6.1.2.1.47.1.1.1.1.8.8807|4| +1.3.6.1.2.1.47.1.1.1.1.8.8808|4| +1.3.6.1.2.1.47.1.1.1.1.8.8809|4| +1.3.6.1.2.1.47.1.1.1.1.8.8810|4| +1.3.6.1.2.1.47.1.1.1.1.8.8811|4| +1.3.6.1.2.1.47.1.1.1.1.8.8812|4| +1.3.6.1.2.1.47.1.1.1.1.8.8813|4| +1.3.6.1.2.1.47.1.1.1.1.8.8814|4| +1.3.6.1.2.1.47.1.1.1.1.8.8815|4| +1.3.6.1.2.1.47.1.1.1.1.8.8816|4| +1.3.6.1.2.1.47.1.1.1.1.8.8817|4| +1.3.6.1.2.1.47.1.1.1.1.8.8818|4| +1.3.6.1.2.1.47.1.1.1.1.8.8819|4| +1.3.6.1.2.1.47.1.1.1.1.8.8820|4| +1.3.6.1.2.1.47.1.1.1.1.8.8821|4| +1.3.6.1.2.1.47.1.1.1.1.8.8822|4| +1.3.6.1.2.1.47.1.1.1.1.8.8823|4| +1.3.6.1.2.1.47.1.1.1.1.8.8824|4| +1.3.6.1.2.1.47.1.1.1.1.8.8825|4| +1.3.6.1.2.1.47.1.1.1.1.8.8826|4| +1.3.6.1.2.1.47.1.1.1.1.8.8827|4| +1.3.6.1.2.1.47.1.1.1.1.8.8828|4| +1.3.6.1.2.1.47.1.1.1.1.8.8829|4| +1.3.6.1.2.1.47.1.1.1.1.8.8830|4| +1.3.6.1.2.1.47.1.1.1.1.8.8831|4| +1.3.6.1.2.1.47.1.1.1.1.8.8832|4| +1.3.6.1.2.1.47.1.1.1.1.8.8833|4| +1.3.6.1.2.1.47.1.1.1.1.8.8834|4| +1.3.6.1.2.1.47.1.1.1.1.8.8851|4| +1.3.6.1.2.1.47.1.1.1.1.8.8852|4| +1.3.6.1.2.1.47.1.1.1.1.8.8853|4| +1.3.6.1.2.1.47.1.1.1.1.8.8854|4| +1.3.6.1.2.1.47.1.1.1.1.8.8855|4| +1.3.6.1.2.1.47.1.1.1.1.8.8856|4| +1.3.6.1.2.1.47.1.1.1.1.8.8857|4| +1.3.6.1.2.1.47.1.1.1.1.8.8858|4| +1.3.6.1.2.1.47.1.1.1.1.8.8859|4| +1.3.6.1.2.1.47.1.1.1.1.8.8860|4| +1.3.6.1.2.1.47.1.1.1.1.8.8861|4| +1.3.6.1.2.1.47.1.1.1.1.8.8862|4| +1.3.6.1.2.1.47.1.1.1.1.8.8863|4| +1.3.6.1.2.1.47.1.1.1.1.8.8864|4| +1.3.6.1.2.1.47.1.1.1.1.8.8865|4| +1.3.6.1.2.1.47.1.1.1.1.8.8866|4| +1.3.6.1.2.1.47.1.1.1.1.8.8867|4| +1.3.6.1.2.1.47.1.1.1.1.8.8868|4| +1.3.6.1.2.1.47.1.1.1.1.8.8869|4| +1.3.6.1.2.1.47.1.1.1.1.8.8870|4| +1.3.6.1.2.1.47.1.1.1.1.8.8871|4| +1.3.6.1.2.1.47.1.1.1.1.8.8872|4| +1.3.6.1.2.1.47.1.1.1.1.8.8873|4| +1.3.6.1.2.1.47.1.1.1.1.8.8874|4| +1.3.6.1.2.1.47.1.1.1.1.8.8875|4| +1.3.6.1.2.1.47.1.1.1.1.8.8876|4| +1.3.6.1.2.1.47.1.1.1.1.8.8927|4| +1.3.6.1.2.1.47.1.1.1.1.8.8928|4| +1.3.6.1.2.1.47.1.1.1.1.8.8929|4| +1.3.6.1.2.1.47.1.1.1.1.8.8930|4| +1.3.6.1.2.1.47.1.1.1.1.8.8931|4| +1.3.6.1.2.1.47.1.1.1.1.8.8932|4| +1.3.6.1.2.1.47.1.1.1.1.8.8933|4| +1.3.6.1.2.1.47.1.1.1.1.8.8934|4| +1.3.6.1.2.1.47.1.1.1.1.8.8943|4| +1.3.6.1.2.1.47.1.1.1.1.8.8944|4| +1.3.6.1.2.1.47.1.1.1.1.8.8945|4| +1.3.6.1.2.1.47.1.1.1.1.8.8946|4| +1.3.6.1.2.1.47.1.1.1.1.8.8947|4| +1.3.6.1.2.1.47.1.1.1.1.8.8948|4| +1.3.6.1.2.1.47.1.1.1.1.8.8949|4| +1.3.6.1.2.1.47.1.1.1.1.8.8950|4| +1.3.6.1.2.1.47.1.1.1.1.8.8993|4| +1.3.6.1.2.1.47.1.1.1.1.8.8994|4| +1.3.6.1.2.1.47.1.1.1.1.8.8995|4| +1.3.6.1.2.1.47.1.1.1.1.8.8996|4| +1.3.6.1.2.1.47.1.1.1.1.8.8997|4| +1.3.6.1.2.1.47.1.1.1.1.8.8998|4| +1.3.6.1.2.1.47.1.1.1.1.8.8999|4| +1.3.6.1.2.1.47.1.1.1.1.8.9000|4| +1.3.6.1.2.1.47.1.1.1.1.8.9001|4| +1.3.6.1.2.1.47.1.1.1.1.8.9002|4| +1.3.6.1.2.1.47.1.1.1.1.8.9003|4| +1.3.6.1.2.1.47.1.1.1.1.8.9004|4| +1.3.6.1.2.1.47.1.1.1.1.8.9005|4| +1.3.6.1.2.1.47.1.1.1.1.8.9006|4| +1.3.6.1.2.1.47.1.1.1.1.8.9007|4| +1.3.6.1.2.1.47.1.1.1.1.8.9008|4| +1.3.6.1.2.1.47.1.1.1.1.8.9009|4| +1.3.6.1.2.1.47.1.1.1.1.8.9010|4| +1.3.6.1.2.1.47.1.1.1.1.8.9011|4| +1.3.6.1.2.1.47.1.1.1.1.8.9012|4| +1.3.6.1.2.1.47.1.1.1.1.8.9013|4| +1.3.6.1.2.1.47.1.1.1.1.8.9014|4| +1.3.6.1.2.1.47.1.1.1.1.8.9015|4| +1.3.6.1.2.1.47.1.1.1.1.8.9016|4| +1.3.6.1.2.1.47.1.1.1.1.8.9017|4| +1.3.6.1.2.1.47.1.1.1.1.8.9018|4| +1.3.6.1.2.1.47.1.1.1.1.8.9019|4| +1.3.6.1.2.1.47.1.1.1.1.8.9020|4| +1.3.6.1.2.1.47.1.1.1.1.8.9021|4| +1.3.6.1.2.1.47.1.1.1.1.8.9022|4| +1.3.6.1.2.1.47.1.1.1.1.8.9023|4| +1.3.6.1.2.1.47.1.1.1.1.8.9024|4| +1.3.6.1.2.1.47.1.1.1.1.8.9025|4| +1.3.6.1.2.1.47.1.1.1.1.8.9026|4| +1.3.6.1.2.1.47.1.1.1.1.8.9027|4| +1.3.6.1.2.1.47.1.1.1.1.8.9028|4| +1.3.6.1.2.1.47.1.1.1.1.8.9029|4| +1.3.6.1.2.1.47.1.1.1.1.8.9030|4| +1.3.6.1.2.1.47.1.1.1.1.8.9031|4| +1.3.6.1.2.1.47.1.1.1.1.8.9032|4| +1.3.6.1.2.1.47.1.1.1.1.8.9033|4| +1.3.6.1.2.1.47.1.1.1.1.8.9034|4| +1.3.6.1.2.1.47.1.1.1.1.8.9061|4| +1.3.6.1.2.1.47.1.1.1.1.8.9062|4| +1.3.6.1.2.1.47.1.1.1.1.8.9063|4| +1.3.6.1.2.1.47.1.1.1.1.8.9064|4| +1.3.6.1.2.1.47.1.1.1.1.8.9065|4| +1.3.6.1.2.1.47.1.1.1.1.8.9066|4| +1.3.6.1.2.1.47.1.1.1.1.8.9067|4| +1.3.6.1.2.1.47.1.1.1.1.8.9068|4| +1.3.6.1.2.1.47.1.1.1.1.8.9069|4| +1.3.6.1.2.1.47.1.1.1.1.8.9070|4| +1.3.6.1.2.1.47.1.1.1.1.8.9071|4| +1.3.6.1.2.1.47.1.1.1.1.8.9072|4| +1.3.6.1.2.1.47.1.1.1.1.8.9075|4| +1.3.6.1.2.1.47.1.1.1.1.8.9076|4| +1.3.6.1.2.1.47.1.1.1.1.8.9077|4| +1.3.6.1.2.1.47.1.1.1.1.8.9078|4| +1.3.6.1.2.1.47.1.1.1.1.8.9079|4| +1.3.6.1.2.1.47.1.1.1.1.8.9080|4| +1.3.6.1.2.1.47.1.1.1.1.8.9081|4| +1.3.6.1.2.1.47.1.1.1.1.8.9082|4| +1.3.6.1.2.1.47.1.1.1.1.8.9083|4| +1.3.6.1.2.1.47.1.1.1.1.8.9084|4| +1.3.6.1.2.1.47.1.1.1.1.8.9085|4| +1.3.6.1.2.1.47.1.1.1.1.8.9086|4| +1.3.6.1.2.1.47.1.1.1.1.8.10593|4| +1.3.6.1.2.1.47.1.1.1.1.8.10793|4| +1.3.6.1.2.1.47.1.1.1.1.8.10794|4| +1.3.6.1.2.1.47.1.1.1.1.8.10795|4| +1.3.6.1.2.1.47.1.1.1.1.8.10796|4| +1.3.6.1.2.1.47.1.1.1.1.8.10797|4| +1.3.6.1.2.1.47.1.1.1.1.8.10798|4| +1.3.6.1.2.1.47.1.1.1.1.8.10799|4| +1.3.6.1.2.1.47.1.1.1.1.8.10800|4| +1.3.6.1.2.1.47.1.1.1.1.8.10801|4| +1.3.6.1.2.1.47.1.1.1.1.8.10802|4| +1.3.6.1.2.1.47.1.1.1.1.8.10803|4| +1.3.6.1.2.1.47.1.1.1.1.8.10804|4| +1.3.6.1.2.1.47.1.1.1.1.8.10805|4| +1.3.6.1.2.1.47.1.1.1.1.8.10806|4| +1.3.6.1.2.1.47.1.1.1.1.8.10807|4| +1.3.6.1.2.1.47.1.1.1.1.8.10808|4| +1.3.6.1.2.1.47.1.1.1.1.8.10809|4| +1.3.6.1.2.1.47.1.1.1.1.8.10810|4| +1.3.6.1.2.1.47.1.1.1.1.8.10811|4| +1.3.6.1.2.1.47.1.1.1.1.8.10812|4| +1.3.6.1.2.1.47.1.1.1.1.8.10813|4| +1.3.6.1.2.1.47.1.1.1.1.8.10814|4| +1.3.6.1.2.1.47.1.1.1.1.8.10815|4| +1.3.6.1.2.1.47.1.1.1.1.8.10816|4| +1.3.6.1.2.1.47.1.1.1.1.8.10817|4| +1.3.6.1.2.1.47.1.1.1.1.8.10818|4| +1.3.6.1.2.1.47.1.1.1.1.8.10819|4| +1.3.6.1.2.1.47.1.1.1.1.8.10820|4| +1.3.6.1.2.1.47.1.1.1.1.8.10821|4| +1.3.6.1.2.1.47.1.1.1.1.8.10822|4| +1.3.6.1.2.1.47.1.1.1.1.8.10823|4| +1.3.6.1.2.1.47.1.1.1.1.8.10824|4| +1.3.6.1.2.1.47.1.1.1.1.8.10825|4| +1.3.6.1.2.1.47.1.1.1.1.8.10826|4| +1.3.6.1.2.1.47.1.1.1.1.8.10827|4| +1.3.6.1.2.1.47.1.1.1.1.8.10828|4| +1.3.6.1.2.1.47.1.1.1.1.8.10829|4| +1.3.6.1.2.1.47.1.1.1.1.8.10830|4| +1.3.6.1.2.1.47.1.1.1.1.8.10831|4| +1.3.6.1.2.1.47.1.1.1.1.8.10832|4| +1.3.6.1.2.1.47.1.1.1.1.8.10833|4| +1.3.6.1.2.1.47.1.1.1.1.8.10834|4| +1.3.6.1.2.1.47.1.1.1.1.8.10835|4| +1.3.6.1.2.1.47.1.1.1.1.8.10836|4| +1.3.6.1.2.1.47.1.1.1.1.8.10837|4| +1.3.6.1.2.1.47.1.1.1.1.8.10838|4| +1.3.6.1.2.1.47.1.1.1.1.8.10839|4| +1.3.6.1.2.1.47.1.1.1.1.8.10840|4| +1.3.6.1.2.1.47.1.1.1.1.8.10841|4| +1.3.6.1.2.1.47.1.1.1.1.8.10842|4| +1.3.6.1.2.1.47.1.1.1.1.8.10843|4| +1.3.6.1.2.1.47.1.1.1.1.8.10844|4| +1.3.6.1.2.1.47.1.1.1.1.8.10845|4| +1.3.6.1.2.1.47.1.1.1.1.8.10846|4| +1.3.6.1.2.1.47.1.1.1.1.8.10847|4| +1.3.6.1.2.1.47.1.1.1.1.8.10848|4| +1.3.6.1.2.1.47.1.1.1.1.8.10849|4| +1.3.6.1.2.1.47.1.1.1.1.8.10850|4| +1.3.6.1.2.1.47.1.1.1.1.8.10851|4| +1.3.6.1.2.1.47.1.1.1.1.8.10852|4| +1.3.6.1.2.1.47.1.1.1.1.8.10853|4| +1.3.6.1.2.1.47.1.1.1.1.8.10854|4| +1.3.6.1.2.1.47.1.1.1.1.8.10855|4| +1.3.6.1.2.1.47.1.1.1.1.8.10856|4| +1.3.6.1.2.1.47.1.1.1.1.8.10857|4| +1.3.6.1.2.1.47.1.1.1.1.8.10858|4| +1.3.6.1.2.1.47.1.1.1.1.8.40961|4|V01 +1.3.6.1.2.1.47.1.1.1.1.8.40967|4|V01 +1.3.6.1.2.1.47.1.1.1.1.8.41810|4| +1.3.6.1.2.1.47.1.1.1.1.8.41910|4| +1.3.6.1.2.1.47.1.1.1.1.8.45057|4|V01 +1.3.6.1.2.1.47.1.1.1.1.8.45063|4|V01 +1.3.6.1.2.1.47.1.1.1.1.8.45906|4| +1.3.6.1.2.1.47.1.1.1.1.8.46006|4| +1.3.6.1.2.1.47.1.1.1.1.8.49153|4|V01 +1.3.6.1.2.1.47.1.1.1.1.8.49159|4|V01 +1.3.6.1.2.1.47.1.1.1.1.8.50002|4| +1.3.6.1.2.1.47.1.1.1.1.8.50102|4| +1.3.6.1.2.1.47.1.1.1.1.8.118785|4|V03 +1.3.6.1.2.1.47.1.1.1.1.8.118790|4|V03 +1.3.6.1.2.1.47.1.1.1.1.8.118894|4| +1.3.6.1.2.1.47.1.1.1.1.8.118895|4| +1.3.6.1.2.1.47.1.1.1.1.8.2375681|4|V01 +1.3.6.1.2.1.47.1.1.1.1.8.2375682|4| +1.3.6.1.2.1.47.1.1.1.1.8.2375687|4|V01 +1.3.6.1.2.1.47.1.1.1.1.8.2375930|4| +1.3.6.1.2.1.47.1.1.1.1.8.2375931|4| +1.3.6.1.2.1.47.1.1.1.1.8.2375940|4| +1.3.6.1.2.1.47.1.1.1.1.8.2375941|4| +1.3.6.1.2.1.47.1.1.1.1.8.2375950|4| +1.3.6.1.2.1.47.1.1.1.1.8.2375951|4| +1.3.6.1.2.1.47.1.1.1.1.8.2375970|4| +1.3.6.1.2.1.47.1.1.1.1.8.2375971|4| +1.3.6.1.2.1.47.1.1.1.1.8.2375972|4| +1.3.6.1.2.1.47.1.1.1.1.8.2376530|4| +1.3.6.1.2.1.47.1.1.1.1.8.2376531|4| +1.3.6.1.2.1.47.1.1.1.1.8.2376630|4| +1.3.6.1.2.1.47.1.1.1.1.8.2376631|4| +1.3.6.1.2.1.47.1.1.1.1.8.2379777|4|V01 +1.3.6.1.2.1.47.1.1.1.1.8.2379778|4| +1.3.6.1.2.1.47.1.1.1.1.8.2379783|4|V01 +1.3.6.1.2.1.47.1.1.1.1.8.2380026|4| +1.3.6.1.2.1.47.1.1.1.1.8.2380027|4| +1.3.6.1.2.1.47.1.1.1.1.8.2380036|4| +1.3.6.1.2.1.47.1.1.1.1.8.2380037|4| +1.3.6.1.2.1.47.1.1.1.1.8.2380046|4| +1.3.6.1.2.1.47.1.1.1.1.8.2380047|4| +1.3.6.1.2.1.47.1.1.1.1.8.2380066|4| +1.3.6.1.2.1.47.1.1.1.1.8.2380067|4| +1.3.6.1.2.1.47.1.1.1.1.8.2380068|4| +1.3.6.1.2.1.47.1.1.1.1.8.2380626|4| +1.3.6.1.2.1.47.1.1.1.1.8.2380627|4| +1.3.6.1.2.1.47.1.1.1.1.8.2380726|4| +1.3.6.1.2.1.47.1.1.1.1.8.2380727|4| +1.3.6.1.2.1.47.1.1.1.1.8.2990081|4|V01 +1.3.6.1.2.1.47.1.1.1.1.8.2990087|4|V01 +1.3.6.1.2.1.47.1.1.1.1.8.2990320|4| +1.3.6.1.2.1.47.1.1.1.1.8.2990330|4| +1.3.6.1.2.1.47.1.1.1.1.8.2990350|4| +1.3.6.1.2.1.47.1.1.1.1.8.2990362|4| +1.3.6.1.2.1.47.1.1.1.1.8.2990470|4| +1.3.6.1.2.1.47.1.1.1.1.8.2994177|4|V02 +1.3.6.1.2.1.47.1.1.1.1.8.2994183|4|V02 +1.3.6.1.2.1.47.1.1.1.1.8.2994416|4| +1.3.6.1.2.1.47.1.1.1.1.8.2994426|4| +1.3.6.1.2.1.47.1.1.1.1.8.2994446|4| +1.3.6.1.2.1.47.1.1.1.1.8.2994458|4| +1.3.6.1.2.1.47.1.1.1.1.8.2994566|4| +1.3.6.1.2.1.47.1.1.1.1.8.3014657|4|V01 +1.3.6.1.2.1.47.1.1.1.1.8.3014663|4|V01 +1.3.6.1.2.1.47.1.1.1.1.8.3014896|4| +1.3.6.1.2.1.47.1.1.1.1.8.3014906|4| +1.3.6.1.2.1.47.1.1.1.1.8.3014926|4| +1.3.6.1.2.1.47.1.1.1.1.8.3014938|4| +1.3.6.1.2.1.47.1.1.1.1.8.3015046|4| +1.3.6.1.2.1.47.1.1.1.1.8.3072001|4|V01 +1.3.6.1.2.1.47.1.1.1.1.8.3072007|4|V01 +1.3.6.1.2.1.47.1.1.1.1.8.3072240|4| +1.3.6.1.2.1.47.1.1.1.1.8.3072250|4| +1.3.6.1.2.1.47.1.1.1.1.8.3072270|4| +1.3.6.1.2.1.47.1.1.1.1.8.3072282|4| +1.3.6.1.2.1.47.1.1.1.1.8.3072390|4| +1.3.6.1.2.1.47.1.1.1.1.8.8384513|4|V01 +1.3.6.1.2.1.47.1.1.1.1.8.8384518|4|V01 +1.3.6.1.2.1.47.1.1.1.1.8.8384527|4| +1.3.6.1.2.1.47.1.1.1.1.8.8384552|4| +1.3.6.1.2.1.47.1.1.1.1.8.8384597|4| +1.3.6.1.2.1.47.1.1.1.1.8.8384598|4| +1.3.6.1.2.1.47.1.1.1.1.8.8384599|4| +1.3.6.1.2.1.47.1.1.1.1.8.8384602|4| +1.3.6.1.2.1.47.1.1.1.1.8.8384612|4| +1.3.6.1.2.1.47.1.1.1.1.9.1|4|54.10 +1.3.6.1.2.1.47.1.1.1.1.9.2|4|54.10 +1.3.6.1.2.1.47.1.1.1.1.9.3|4| +1.3.6.1.2.1.47.1.1.1.1.9.4|4| +1.3.6.1.2.1.47.1.1.1.1.9.7|4| +1.3.6.1.2.1.47.1.1.1.1.9.11|4|1.104 +1.3.6.1.2.1.47.1.1.1.1.9.12|4|1.104 +1.3.6.1.2.1.47.1.1.1.1.9.13|4|0.35 +1.3.6.1.2.1.47.1.1.1.1.9.18|4| +1.3.6.1.2.1.47.1.1.1.1.9.26|4|2.05 +1.3.6.1.2.1.47.1.1.1.1.9.30|4| +1.3.6.1.2.1.47.1.1.1.1.9.95|4| +1.3.6.1.2.1.47.1.1.1.1.9.96|4| +1.3.6.1.2.1.47.1.1.1.1.9.97|4| +1.3.6.1.2.1.47.1.1.1.1.9.103|4| +1.3.6.1.2.1.47.1.1.1.1.9.104|4| +1.3.6.1.2.1.47.1.1.1.1.9.105|4| +1.3.6.1.2.1.47.1.1.1.1.9.106|4| +1.3.6.1.2.1.47.1.1.1.1.9.108|4| +1.3.6.1.2.1.47.1.1.1.1.9.109|4| +1.3.6.1.2.1.47.1.1.1.1.9.111|4| +1.3.6.1.2.1.47.1.1.1.1.9.112|4| +1.3.6.1.2.1.47.1.1.1.1.9.113|4| +1.3.6.1.2.1.47.1.1.1.1.9.134|4| +1.3.6.1.2.1.47.1.1.1.1.9.167|4|22.23 +1.3.6.1.2.1.47.1.1.1.1.9.168|4|3.07 +1.3.6.1.2.1.47.1.1.1.1.9.169|4|5.01 +1.3.6.1.2.1.47.1.1.1.1.9.178|4| +1.3.6.1.2.1.47.1.1.1.1.9.179|4| +1.3.6.1.2.1.47.1.1.1.1.9.182|4| +1.3.6.1.2.1.47.1.1.1.1.9.237|4| +1.3.6.1.2.1.47.1.1.1.1.9.255|4| +1.3.6.1.2.1.47.1.1.1.1.9.290|4| +1.3.6.1.2.1.47.1.1.1.1.9.293|4| +1.3.6.1.2.1.47.1.1.1.1.9.296|4| +1.3.6.1.2.1.47.1.1.1.1.9.297|4| +1.3.6.1.2.1.47.1.1.1.1.9.298|4| +1.3.6.1.2.1.47.1.1.1.1.9.302|4| +1.3.6.1.2.1.47.1.1.1.1.9.303|4| +1.3.6.1.2.1.47.1.1.1.1.9.304|4| +1.3.6.1.2.1.47.1.1.1.1.9.305|4| +1.3.6.1.2.1.47.1.1.1.1.9.306|4| +1.3.6.1.2.1.47.1.1.1.1.9.440|4| +1.3.6.1.2.1.47.1.1.1.1.9.441|4| +1.3.6.1.2.1.47.1.1.1.1.9.442|4| +1.3.6.1.2.1.47.1.1.1.1.9.550|4| +1.3.6.1.2.1.47.1.1.1.1.9.551|4| +1.3.6.1.2.1.47.1.1.1.1.9.570|4| +1.3.6.1.2.1.47.1.1.1.1.9.600|4| +1.3.6.1.2.1.47.1.1.1.1.9.625|4| +1.3.6.1.2.1.47.1.1.1.1.9.628|4| +1.3.6.1.2.1.47.1.1.1.1.9.2401|4| +1.3.6.1.2.1.47.1.1.1.1.9.2601|4| +1.3.6.1.2.1.47.1.1.1.1.9.2602|4| +1.3.6.1.2.1.47.1.1.1.1.9.2603|4| +1.3.6.1.2.1.47.1.1.1.1.9.2604|4| +1.3.6.1.2.1.47.1.1.1.1.9.2605|4| +1.3.6.1.2.1.47.1.1.1.1.9.2606|4| +1.3.6.1.2.1.47.1.1.1.1.9.2607|4| +1.3.6.1.2.1.47.1.1.1.1.9.2608|4| +1.3.6.1.2.1.47.1.1.1.1.9.2609|4| +1.3.6.1.2.1.47.1.1.1.1.9.2610|4| +1.3.6.1.2.1.47.1.1.1.1.9.2611|4| +1.3.6.1.2.1.47.1.1.1.1.9.2612|4| +1.3.6.1.2.1.47.1.1.1.1.9.2613|4| +1.3.6.1.2.1.47.1.1.1.1.9.2614|4| +1.3.6.1.2.1.47.1.1.1.1.9.2615|4| +1.3.6.1.2.1.47.1.1.1.1.9.2616|4| +1.3.6.1.2.1.47.1.1.1.1.9.2617|4| +1.3.6.1.2.1.47.1.1.1.1.9.2618|4| +1.3.6.1.2.1.47.1.1.1.1.9.2619|4| +1.3.6.1.2.1.47.1.1.1.1.9.2620|4| +1.3.6.1.2.1.47.1.1.1.1.9.2621|4| +1.3.6.1.2.1.47.1.1.1.1.9.2622|4| +1.3.6.1.2.1.47.1.1.1.1.9.2623|4| +1.3.6.1.2.1.47.1.1.1.1.9.2624|4| +1.3.6.1.2.1.47.1.1.1.1.9.2625|4| +1.3.6.1.2.1.47.1.1.1.1.9.2626|4| +1.3.6.1.2.1.47.1.1.1.1.9.2627|4| +1.3.6.1.2.1.47.1.1.1.1.9.2628|4| +1.3.6.1.2.1.47.1.1.1.1.9.2629|4| +1.3.6.1.2.1.47.1.1.1.1.9.2630|4| +1.3.6.1.2.1.47.1.1.1.1.9.2631|4| +1.3.6.1.2.1.47.1.1.1.1.9.8193|4|55.07 +1.3.6.1.2.1.47.1.1.1.1.9.8194|4|55.07 +1.3.6.1.2.1.47.1.1.1.1.9.8195|4| +1.3.6.1.2.1.47.1.1.1.1.9.8196|4| +1.3.6.1.2.1.47.1.1.1.1.9.8198|4| +1.3.6.1.2.1.47.1.1.1.1.9.8199|4| +1.3.6.1.2.1.47.1.1.1.1.9.8203|4|1.104 +1.3.6.1.2.1.47.1.1.1.1.9.8204|4|1.104 +1.3.6.1.2.1.47.1.1.1.1.9.8206|4|0.36 +1.3.6.1.2.1.47.1.1.1.1.9.8222|4| +1.3.6.1.2.1.47.1.1.1.1.9.8223|4| +1.3.6.1.2.1.47.1.1.1.1.9.8227|4| +1.3.6.1.2.1.47.1.1.1.1.9.8287|4| +1.3.6.1.2.1.47.1.1.1.1.9.8288|4| +1.3.6.1.2.1.47.1.1.1.1.9.8289|4| +1.3.6.1.2.1.47.1.1.1.1.9.8357|4|1.10 +1.3.6.1.2.1.47.1.1.1.1.9.8359|4|23.19 +1.3.6.1.2.1.47.1.1.1.1.9.8360|4|3.07 +1.3.6.1.2.1.47.1.1.1.1.9.8492|4| +1.3.6.1.2.1.47.1.1.1.1.9.8493|4| +1.3.6.1.2.1.47.1.1.1.1.9.8494|4| +1.3.6.1.2.1.47.1.1.1.1.9.8495|4| +1.3.6.1.2.1.47.1.1.1.1.9.8496|4| +1.3.6.1.2.1.47.1.1.1.1.9.8497|4| +1.3.6.1.2.1.47.1.1.1.1.9.8498|4| +1.3.6.1.2.1.47.1.1.1.1.9.8499|4| +1.3.6.1.2.1.47.1.1.1.1.9.8522|4| +1.3.6.1.2.1.47.1.1.1.1.9.8592|4| +1.3.6.1.2.1.47.1.1.1.1.9.8593|4| +1.3.6.1.2.1.47.1.1.1.1.9.8594|4| +1.3.6.1.2.1.47.1.1.1.1.9.8595|4| +1.3.6.1.2.1.47.1.1.1.1.9.8596|4| +1.3.6.1.2.1.47.1.1.1.1.9.8597|4| +1.3.6.1.2.1.47.1.1.1.1.9.8599|4| +1.3.6.1.2.1.47.1.1.1.1.9.8600|4| +1.3.6.1.2.1.47.1.1.1.1.9.8601|4| +1.3.6.1.2.1.47.1.1.1.1.9.8602|4| +1.3.6.1.2.1.47.1.1.1.1.9.8603|4| +1.3.6.1.2.1.47.1.1.1.1.9.8604|4| +1.3.6.1.2.1.47.1.1.1.1.9.8762|4| +1.3.6.1.2.1.47.1.1.1.1.9.8793|4| +1.3.6.1.2.1.47.1.1.1.1.9.8794|4| +1.3.6.1.2.1.47.1.1.1.1.9.8795|4| +1.3.6.1.2.1.47.1.1.1.1.9.8796|4| +1.3.6.1.2.1.47.1.1.1.1.9.8797|4| +1.3.6.1.2.1.47.1.1.1.1.9.8798|4| +1.3.6.1.2.1.47.1.1.1.1.9.8799|4| +1.3.6.1.2.1.47.1.1.1.1.9.8800|4| +1.3.6.1.2.1.47.1.1.1.1.9.8801|4| +1.3.6.1.2.1.47.1.1.1.1.9.8802|4| +1.3.6.1.2.1.47.1.1.1.1.9.8803|4| +1.3.6.1.2.1.47.1.1.1.1.9.8804|4| +1.3.6.1.2.1.47.1.1.1.1.9.8805|4| +1.3.6.1.2.1.47.1.1.1.1.9.8806|4| +1.3.6.1.2.1.47.1.1.1.1.9.8807|4| +1.3.6.1.2.1.47.1.1.1.1.9.8808|4| +1.3.6.1.2.1.47.1.1.1.1.9.8809|4| +1.3.6.1.2.1.47.1.1.1.1.9.8810|4| +1.3.6.1.2.1.47.1.1.1.1.9.8811|4| +1.3.6.1.2.1.47.1.1.1.1.9.8812|4| +1.3.6.1.2.1.47.1.1.1.1.9.8813|4| +1.3.6.1.2.1.47.1.1.1.1.9.8814|4| +1.3.6.1.2.1.47.1.1.1.1.9.8815|4| +1.3.6.1.2.1.47.1.1.1.1.9.8816|4| +1.3.6.1.2.1.47.1.1.1.1.9.8817|4| +1.3.6.1.2.1.47.1.1.1.1.9.8818|4| +1.3.6.1.2.1.47.1.1.1.1.9.8819|4| +1.3.6.1.2.1.47.1.1.1.1.9.8820|4| +1.3.6.1.2.1.47.1.1.1.1.9.8821|4| +1.3.6.1.2.1.47.1.1.1.1.9.8822|4| +1.3.6.1.2.1.47.1.1.1.1.9.8823|4| +1.3.6.1.2.1.47.1.1.1.1.9.8824|4| +1.3.6.1.2.1.47.1.1.1.1.9.8825|4| +1.3.6.1.2.1.47.1.1.1.1.9.8826|4| +1.3.6.1.2.1.47.1.1.1.1.9.8827|4| +1.3.6.1.2.1.47.1.1.1.1.9.8828|4| +1.3.6.1.2.1.47.1.1.1.1.9.8829|4| +1.3.6.1.2.1.47.1.1.1.1.9.8830|4| +1.3.6.1.2.1.47.1.1.1.1.9.8831|4| +1.3.6.1.2.1.47.1.1.1.1.9.8832|4| +1.3.6.1.2.1.47.1.1.1.1.9.8833|4| +1.3.6.1.2.1.47.1.1.1.1.9.8834|4| +1.3.6.1.2.1.47.1.1.1.1.9.8851|4| +1.3.6.1.2.1.47.1.1.1.1.9.8852|4| +1.3.6.1.2.1.47.1.1.1.1.9.8853|4| +1.3.6.1.2.1.47.1.1.1.1.9.8854|4| +1.3.6.1.2.1.47.1.1.1.1.9.8855|4| +1.3.6.1.2.1.47.1.1.1.1.9.8856|4| +1.3.6.1.2.1.47.1.1.1.1.9.8857|4| +1.3.6.1.2.1.47.1.1.1.1.9.8858|4| +1.3.6.1.2.1.47.1.1.1.1.9.8859|4| +1.3.6.1.2.1.47.1.1.1.1.9.8860|4| +1.3.6.1.2.1.47.1.1.1.1.9.8861|4| +1.3.6.1.2.1.47.1.1.1.1.9.8862|4| +1.3.6.1.2.1.47.1.1.1.1.9.8863|4| +1.3.6.1.2.1.47.1.1.1.1.9.8864|4| +1.3.6.1.2.1.47.1.1.1.1.9.8865|4| +1.3.6.1.2.1.47.1.1.1.1.9.8866|4| +1.3.6.1.2.1.47.1.1.1.1.9.8867|4| +1.3.6.1.2.1.47.1.1.1.1.9.8868|4| +1.3.6.1.2.1.47.1.1.1.1.9.8869|4| +1.3.6.1.2.1.47.1.1.1.1.9.8870|4| +1.3.6.1.2.1.47.1.1.1.1.9.8871|4| +1.3.6.1.2.1.47.1.1.1.1.9.8872|4| +1.3.6.1.2.1.47.1.1.1.1.9.8873|4| +1.3.6.1.2.1.47.1.1.1.1.9.8874|4| +1.3.6.1.2.1.47.1.1.1.1.9.8875|4| +1.3.6.1.2.1.47.1.1.1.1.9.8876|4| +1.3.6.1.2.1.47.1.1.1.1.9.8927|4| +1.3.6.1.2.1.47.1.1.1.1.9.8928|4| +1.3.6.1.2.1.47.1.1.1.1.9.8929|4| +1.3.6.1.2.1.47.1.1.1.1.9.8930|4| +1.3.6.1.2.1.47.1.1.1.1.9.8931|4| +1.3.6.1.2.1.47.1.1.1.1.9.8932|4| +1.3.6.1.2.1.47.1.1.1.1.9.8933|4| +1.3.6.1.2.1.47.1.1.1.1.9.8934|4| +1.3.6.1.2.1.47.1.1.1.1.9.8943|4| +1.3.6.1.2.1.47.1.1.1.1.9.8944|4| +1.3.6.1.2.1.47.1.1.1.1.9.8945|4| +1.3.6.1.2.1.47.1.1.1.1.9.8946|4| +1.3.6.1.2.1.47.1.1.1.1.9.8947|4| +1.3.6.1.2.1.47.1.1.1.1.9.8948|4| +1.3.6.1.2.1.47.1.1.1.1.9.8949|4| +1.3.6.1.2.1.47.1.1.1.1.9.8950|4| +1.3.6.1.2.1.47.1.1.1.1.9.8993|4| +1.3.6.1.2.1.47.1.1.1.1.9.8994|4| +1.3.6.1.2.1.47.1.1.1.1.9.8995|4| +1.3.6.1.2.1.47.1.1.1.1.9.8996|4| +1.3.6.1.2.1.47.1.1.1.1.9.8997|4| +1.3.6.1.2.1.47.1.1.1.1.9.8998|4| +1.3.6.1.2.1.47.1.1.1.1.9.8999|4| +1.3.6.1.2.1.47.1.1.1.1.9.9000|4| +1.3.6.1.2.1.47.1.1.1.1.9.9001|4| +1.3.6.1.2.1.47.1.1.1.1.9.9002|4| +1.3.6.1.2.1.47.1.1.1.1.9.9003|4| +1.3.6.1.2.1.47.1.1.1.1.9.9004|4| +1.3.6.1.2.1.47.1.1.1.1.9.9005|4| +1.3.6.1.2.1.47.1.1.1.1.9.9006|4| +1.3.6.1.2.1.47.1.1.1.1.9.9007|4| +1.3.6.1.2.1.47.1.1.1.1.9.9008|4| +1.3.6.1.2.1.47.1.1.1.1.9.9009|4| +1.3.6.1.2.1.47.1.1.1.1.9.9010|4| +1.3.6.1.2.1.47.1.1.1.1.9.9011|4| +1.3.6.1.2.1.47.1.1.1.1.9.9012|4| +1.3.6.1.2.1.47.1.1.1.1.9.9013|4| +1.3.6.1.2.1.47.1.1.1.1.9.9014|4| +1.3.6.1.2.1.47.1.1.1.1.9.9015|4| +1.3.6.1.2.1.47.1.1.1.1.9.9016|4| +1.3.6.1.2.1.47.1.1.1.1.9.9017|4| +1.3.6.1.2.1.47.1.1.1.1.9.9018|4| +1.3.6.1.2.1.47.1.1.1.1.9.9019|4| +1.3.6.1.2.1.47.1.1.1.1.9.9020|4| +1.3.6.1.2.1.47.1.1.1.1.9.9021|4| +1.3.6.1.2.1.47.1.1.1.1.9.9022|4| +1.3.6.1.2.1.47.1.1.1.1.9.9023|4| +1.3.6.1.2.1.47.1.1.1.1.9.9024|4| +1.3.6.1.2.1.47.1.1.1.1.9.9025|4| +1.3.6.1.2.1.47.1.1.1.1.9.9026|4| +1.3.6.1.2.1.47.1.1.1.1.9.9027|4| +1.3.6.1.2.1.47.1.1.1.1.9.9028|4| +1.3.6.1.2.1.47.1.1.1.1.9.9029|4| +1.3.6.1.2.1.47.1.1.1.1.9.9030|4| +1.3.6.1.2.1.47.1.1.1.1.9.9031|4| +1.3.6.1.2.1.47.1.1.1.1.9.9032|4| +1.3.6.1.2.1.47.1.1.1.1.9.9033|4| +1.3.6.1.2.1.47.1.1.1.1.9.9034|4| +1.3.6.1.2.1.47.1.1.1.1.9.9061|4| +1.3.6.1.2.1.47.1.1.1.1.9.9062|4| +1.3.6.1.2.1.47.1.1.1.1.9.9063|4| +1.3.6.1.2.1.47.1.1.1.1.9.9064|4| +1.3.6.1.2.1.47.1.1.1.1.9.9065|4| +1.3.6.1.2.1.47.1.1.1.1.9.9066|4| +1.3.6.1.2.1.47.1.1.1.1.9.9067|4| +1.3.6.1.2.1.47.1.1.1.1.9.9068|4| +1.3.6.1.2.1.47.1.1.1.1.9.9069|4| +1.3.6.1.2.1.47.1.1.1.1.9.9070|4| +1.3.6.1.2.1.47.1.1.1.1.9.9071|4| +1.3.6.1.2.1.47.1.1.1.1.9.9072|4| +1.3.6.1.2.1.47.1.1.1.1.9.9075|4| +1.3.6.1.2.1.47.1.1.1.1.9.9076|4| +1.3.6.1.2.1.47.1.1.1.1.9.9077|4| +1.3.6.1.2.1.47.1.1.1.1.9.9078|4| +1.3.6.1.2.1.47.1.1.1.1.9.9079|4| +1.3.6.1.2.1.47.1.1.1.1.9.9080|4| +1.3.6.1.2.1.47.1.1.1.1.9.9081|4| +1.3.6.1.2.1.47.1.1.1.1.9.9082|4| +1.3.6.1.2.1.47.1.1.1.1.9.9083|4| +1.3.6.1.2.1.47.1.1.1.1.9.9084|4| +1.3.6.1.2.1.47.1.1.1.1.9.9085|4| +1.3.6.1.2.1.47.1.1.1.1.9.9086|4| +1.3.6.1.2.1.47.1.1.1.1.9.10593|4| +1.3.6.1.2.1.47.1.1.1.1.9.10793|4| +1.3.6.1.2.1.47.1.1.1.1.9.10794|4| +1.3.6.1.2.1.47.1.1.1.1.9.10795|4| +1.3.6.1.2.1.47.1.1.1.1.9.10796|4| +1.3.6.1.2.1.47.1.1.1.1.9.10797|4| +1.3.6.1.2.1.47.1.1.1.1.9.10798|4| +1.3.6.1.2.1.47.1.1.1.1.9.10799|4| +1.3.6.1.2.1.47.1.1.1.1.9.10800|4| +1.3.6.1.2.1.47.1.1.1.1.9.10801|4| +1.3.6.1.2.1.47.1.1.1.1.9.10802|4| +1.3.6.1.2.1.47.1.1.1.1.9.10803|4| +1.3.6.1.2.1.47.1.1.1.1.9.10804|4| +1.3.6.1.2.1.47.1.1.1.1.9.10805|4| +1.3.6.1.2.1.47.1.1.1.1.9.10806|4| +1.3.6.1.2.1.47.1.1.1.1.9.10807|4| +1.3.6.1.2.1.47.1.1.1.1.9.10808|4| +1.3.6.1.2.1.47.1.1.1.1.9.10809|4| +1.3.6.1.2.1.47.1.1.1.1.9.10810|4| +1.3.6.1.2.1.47.1.1.1.1.9.10811|4| +1.3.6.1.2.1.47.1.1.1.1.9.10812|4| +1.3.6.1.2.1.47.1.1.1.1.9.10813|4| +1.3.6.1.2.1.47.1.1.1.1.9.10814|4| +1.3.6.1.2.1.47.1.1.1.1.9.10815|4| +1.3.6.1.2.1.47.1.1.1.1.9.10816|4| +1.3.6.1.2.1.47.1.1.1.1.9.10817|4| +1.3.6.1.2.1.47.1.1.1.1.9.10818|4| +1.3.6.1.2.1.47.1.1.1.1.9.10819|4| +1.3.6.1.2.1.47.1.1.1.1.9.10820|4| +1.3.6.1.2.1.47.1.1.1.1.9.10821|4| +1.3.6.1.2.1.47.1.1.1.1.9.10822|4| +1.3.6.1.2.1.47.1.1.1.1.9.10823|4| +1.3.6.1.2.1.47.1.1.1.1.9.10824|4| +1.3.6.1.2.1.47.1.1.1.1.9.10825|4| +1.3.6.1.2.1.47.1.1.1.1.9.10826|4| +1.3.6.1.2.1.47.1.1.1.1.9.10827|4| +1.3.6.1.2.1.47.1.1.1.1.9.10828|4| +1.3.6.1.2.1.47.1.1.1.1.9.10829|4| +1.3.6.1.2.1.47.1.1.1.1.9.10830|4| +1.3.6.1.2.1.47.1.1.1.1.9.10831|4| +1.3.6.1.2.1.47.1.1.1.1.9.10832|4| +1.3.6.1.2.1.47.1.1.1.1.9.10833|4| +1.3.6.1.2.1.47.1.1.1.1.9.10834|4| +1.3.6.1.2.1.47.1.1.1.1.9.10835|4| +1.3.6.1.2.1.47.1.1.1.1.9.10836|4| +1.3.6.1.2.1.47.1.1.1.1.9.10837|4| +1.3.6.1.2.1.47.1.1.1.1.9.10838|4| +1.3.6.1.2.1.47.1.1.1.1.9.10839|4| +1.3.6.1.2.1.47.1.1.1.1.9.10840|4| +1.3.6.1.2.1.47.1.1.1.1.9.10841|4| +1.3.6.1.2.1.47.1.1.1.1.9.10842|4| +1.3.6.1.2.1.47.1.1.1.1.9.10843|4| +1.3.6.1.2.1.47.1.1.1.1.9.10844|4| +1.3.6.1.2.1.47.1.1.1.1.9.10845|4| +1.3.6.1.2.1.47.1.1.1.1.9.10846|4| +1.3.6.1.2.1.47.1.1.1.1.9.10847|4| +1.3.6.1.2.1.47.1.1.1.1.9.10848|4| +1.3.6.1.2.1.47.1.1.1.1.9.10849|4| +1.3.6.1.2.1.47.1.1.1.1.9.10850|4| +1.3.6.1.2.1.47.1.1.1.1.9.10851|4| +1.3.6.1.2.1.47.1.1.1.1.9.10852|4| +1.3.6.1.2.1.47.1.1.1.1.9.10853|4| +1.3.6.1.2.1.47.1.1.1.1.9.10854|4| +1.3.6.1.2.1.47.1.1.1.1.9.10855|4| +1.3.6.1.2.1.47.1.1.1.1.9.10856|4| +1.3.6.1.2.1.47.1.1.1.1.9.10857|4| +1.3.6.1.2.1.47.1.1.1.1.9.10858|4| +1.3.6.1.2.1.47.1.1.1.1.9.40961|4| +1.3.6.1.2.1.47.1.1.1.1.9.40967|4| +1.3.6.1.2.1.47.1.1.1.1.9.41810|4| +1.3.6.1.2.1.47.1.1.1.1.9.41910|4| +1.3.6.1.2.1.47.1.1.1.1.9.45057|4| +1.3.6.1.2.1.47.1.1.1.1.9.45063|4| +1.3.6.1.2.1.47.1.1.1.1.9.45906|4| +1.3.6.1.2.1.47.1.1.1.1.9.46006|4| +1.3.6.1.2.1.47.1.1.1.1.9.49153|4| +1.3.6.1.2.1.47.1.1.1.1.9.49159|4| +1.3.6.1.2.1.47.1.1.1.1.9.50002|4| +1.3.6.1.2.1.47.1.1.1.1.9.50102|4| +1.3.6.1.2.1.47.1.1.1.1.9.118785|4| +1.3.6.1.2.1.47.1.1.1.1.9.118790|4| +1.3.6.1.2.1.47.1.1.1.1.9.118894|4| +1.3.6.1.2.1.47.1.1.1.1.9.118895|4| +1.3.6.1.2.1.47.1.1.1.1.9.2375681|4|17.137 +1.3.6.1.2.1.47.1.1.1.1.9.2375682|4|17.137 +1.3.6.1.2.1.47.1.1.1.1.9.2375687|4| +1.3.6.1.2.1.47.1.1.1.1.9.2375930|4| +1.3.6.1.2.1.47.1.1.1.1.9.2375931|4| +1.3.6.1.2.1.47.1.1.1.1.9.2375940|4| +1.3.6.1.2.1.47.1.1.1.1.9.2375941|4| +1.3.6.1.2.1.47.1.1.1.1.9.2375950|4| +1.3.6.1.2.1.47.1.1.1.1.9.2375951|4| +1.3.6.1.2.1.47.1.1.1.1.9.2375970|4| +1.3.6.1.2.1.47.1.1.1.1.9.2375971|4| +1.3.6.1.2.1.47.1.1.1.1.9.2375972|4| +1.3.6.1.2.1.47.1.1.1.1.9.2376530|4| +1.3.6.1.2.1.47.1.1.1.1.9.2376531|4| +1.3.6.1.2.1.47.1.1.1.1.9.2376630|4| +1.3.6.1.2.1.47.1.1.1.1.9.2376631|4| +1.3.6.1.2.1.47.1.1.1.1.9.2379777|4|17.137 +1.3.6.1.2.1.47.1.1.1.1.9.2379778|4|17.137 +1.3.6.1.2.1.47.1.1.1.1.9.2379783|4| +1.3.6.1.2.1.47.1.1.1.1.9.2380026|4| +1.3.6.1.2.1.47.1.1.1.1.9.2380027|4| +1.3.6.1.2.1.47.1.1.1.1.9.2380036|4| +1.3.6.1.2.1.47.1.1.1.1.9.2380037|4| +1.3.6.1.2.1.47.1.1.1.1.9.2380046|4| +1.3.6.1.2.1.47.1.1.1.1.9.2380047|4| +1.3.6.1.2.1.47.1.1.1.1.9.2380066|4| +1.3.6.1.2.1.47.1.1.1.1.9.2380067|4| +1.3.6.1.2.1.47.1.1.1.1.9.2380068|4| +1.3.6.1.2.1.47.1.1.1.1.9.2380626|4| +1.3.6.1.2.1.47.1.1.1.1.9.2380627|4| +1.3.6.1.2.1.47.1.1.1.1.9.2380726|4| +1.3.6.1.2.1.47.1.1.1.1.9.2380727|4| +1.3.6.1.2.1.47.1.1.1.1.9.2990081|4| +1.3.6.1.2.1.47.1.1.1.1.9.2990087|4| +1.3.6.1.2.1.47.1.1.1.1.9.2990320|4| +1.3.6.1.2.1.47.1.1.1.1.9.2990330|4| +1.3.6.1.2.1.47.1.1.1.1.9.2990350|4| +1.3.6.1.2.1.47.1.1.1.1.9.2990362|4| +1.3.6.1.2.1.47.1.1.1.1.9.2990470|4| +1.3.6.1.2.1.47.1.1.1.1.9.2994177|4| +1.3.6.1.2.1.47.1.1.1.1.9.2994183|4| +1.3.6.1.2.1.47.1.1.1.1.9.2994416|4| +1.3.6.1.2.1.47.1.1.1.1.9.2994426|4| +1.3.6.1.2.1.47.1.1.1.1.9.2994446|4| +1.3.6.1.2.1.47.1.1.1.1.9.2994458|4| +1.3.6.1.2.1.47.1.1.1.1.9.2994566|4| +1.3.6.1.2.1.47.1.1.1.1.9.3014657|4| +1.3.6.1.2.1.47.1.1.1.1.9.3014663|4| +1.3.6.1.2.1.47.1.1.1.1.9.3014896|4| +1.3.6.1.2.1.47.1.1.1.1.9.3014906|4| +1.3.6.1.2.1.47.1.1.1.1.9.3014926|4| +1.3.6.1.2.1.47.1.1.1.1.9.3014938|4| +1.3.6.1.2.1.47.1.1.1.1.9.3015046|4| +1.3.6.1.2.1.47.1.1.1.1.9.3072001|4| +1.3.6.1.2.1.47.1.1.1.1.9.3072007|4| +1.3.6.1.2.1.47.1.1.1.1.9.3072240|4| +1.3.6.1.2.1.47.1.1.1.1.9.3072250|4| +1.3.6.1.2.1.47.1.1.1.1.9.3072270|4| +1.3.6.1.2.1.47.1.1.1.1.9.3072282|4| +1.3.6.1.2.1.47.1.1.1.1.9.3072390|4| +1.3.6.1.2.1.47.1.1.1.1.9.8384513|4| +1.3.6.1.2.1.47.1.1.1.1.9.8384518|4| +1.3.6.1.2.1.47.1.1.1.1.9.8384527|4| +1.3.6.1.2.1.47.1.1.1.1.9.8384552|4| +1.3.6.1.2.1.47.1.1.1.1.9.8384597|4| +1.3.6.1.2.1.47.1.1.1.1.9.8384598|4| +1.3.6.1.2.1.47.1.1.1.1.9.8384599|4| +1.3.6.1.2.1.47.1.1.1.1.9.8384602|4| +1.3.6.1.2.1.47.1.1.1.1.9.8384612|4| +1.3.6.1.2.1.47.1.1.1.1.10.1|4|6.6.3 +1.3.6.1.2.1.47.1.1.1.1.10.2|4| +1.3.6.1.2.1.47.1.1.1.1.10.3|4| +1.3.6.1.2.1.47.1.1.1.1.10.4|4| +1.3.6.1.2.1.47.1.1.1.1.10.7|4| +1.3.6.1.2.1.47.1.1.1.1.10.11|4| +1.3.6.1.2.1.47.1.1.1.1.10.12|4| +1.3.6.1.2.1.47.1.1.1.1.10.13|4| +1.3.6.1.2.1.47.1.1.1.1.10.18|4| +1.3.6.1.2.1.47.1.1.1.1.10.26|4| +1.3.6.1.2.1.47.1.1.1.1.10.30|4| +1.3.6.1.2.1.47.1.1.1.1.10.95|4| +1.3.6.1.2.1.47.1.1.1.1.10.96|4| +1.3.6.1.2.1.47.1.1.1.1.10.97|4| +1.3.6.1.2.1.47.1.1.1.1.10.103|4| +1.3.6.1.2.1.47.1.1.1.1.10.104|4| +1.3.6.1.2.1.47.1.1.1.1.10.105|4| +1.3.6.1.2.1.47.1.1.1.1.10.106|4| +1.3.6.1.2.1.47.1.1.1.1.10.108|4| +1.3.6.1.2.1.47.1.1.1.1.10.109|4| +1.3.6.1.2.1.47.1.1.1.1.10.111|4| +1.3.6.1.2.1.47.1.1.1.1.10.112|4| +1.3.6.1.2.1.47.1.1.1.1.10.113|4| +1.3.6.1.2.1.47.1.1.1.1.10.134|4| +1.3.6.1.2.1.47.1.1.1.1.10.167|4| +1.3.6.1.2.1.47.1.1.1.1.10.168|4| +1.3.6.1.2.1.47.1.1.1.1.10.169|4| +1.3.6.1.2.1.47.1.1.1.1.10.178|4| +1.3.6.1.2.1.47.1.1.1.1.10.179|4| +1.3.6.1.2.1.47.1.1.1.1.10.182|4| +1.3.6.1.2.1.47.1.1.1.1.10.237|4| +1.3.6.1.2.1.47.1.1.1.1.10.255|4| +1.3.6.1.2.1.47.1.1.1.1.10.290|4| +1.3.6.1.2.1.47.1.1.1.1.10.293|4| +1.3.6.1.2.1.47.1.1.1.1.10.296|4| +1.3.6.1.2.1.47.1.1.1.1.10.297|4| +1.3.6.1.2.1.47.1.1.1.1.10.298|4| +1.3.6.1.2.1.47.1.1.1.1.10.302|4| +1.3.6.1.2.1.47.1.1.1.1.10.303|4| +1.3.6.1.2.1.47.1.1.1.1.10.304|4| +1.3.6.1.2.1.47.1.1.1.1.10.305|4| +1.3.6.1.2.1.47.1.1.1.1.10.306|4| +1.3.6.1.2.1.47.1.1.1.1.10.440|4| +1.3.6.1.2.1.47.1.1.1.1.10.441|4| +1.3.6.1.2.1.47.1.1.1.1.10.442|4| +1.3.6.1.2.1.47.1.1.1.1.10.550|4| +1.3.6.1.2.1.47.1.1.1.1.10.551|4| +1.3.6.1.2.1.47.1.1.1.1.10.570|4| +1.3.6.1.2.1.47.1.1.1.1.10.600|4| +1.3.6.1.2.1.47.1.1.1.1.10.625|4| +1.3.6.1.2.1.47.1.1.1.1.10.628|4| +1.3.6.1.2.1.47.1.1.1.1.10.2401|4| +1.3.6.1.2.1.47.1.1.1.1.10.2601|4| +1.3.6.1.2.1.47.1.1.1.1.10.2602|4| +1.3.6.1.2.1.47.1.1.1.1.10.2603|4| +1.3.6.1.2.1.47.1.1.1.1.10.2604|4| +1.3.6.1.2.1.47.1.1.1.1.10.2605|4| +1.3.6.1.2.1.47.1.1.1.1.10.2606|4| +1.3.6.1.2.1.47.1.1.1.1.10.2607|4| +1.3.6.1.2.1.47.1.1.1.1.10.2608|4| +1.3.6.1.2.1.47.1.1.1.1.10.2609|4| +1.3.6.1.2.1.47.1.1.1.1.10.2610|4| +1.3.6.1.2.1.47.1.1.1.1.10.2611|4| +1.3.6.1.2.1.47.1.1.1.1.10.2612|4| +1.3.6.1.2.1.47.1.1.1.1.10.2613|4| +1.3.6.1.2.1.47.1.1.1.1.10.2614|4| +1.3.6.1.2.1.47.1.1.1.1.10.2615|4| +1.3.6.1.2.1.47.1.1.1.1.10.2616|4| +1.3.6.1.2.1.47.1.1.1.1.10.2617|4| +1.3.6.1.2.1.47.1.1.1.1.10.2618|4| +1.3.6.1.2.1.47.1.1.1.1.10.2619|4| +1.3.6.1.2.1.47.1.1.1.1.10.2620|4| +1.3.6.1.2.1.47.1.1.1.1.10.2621|4| +1.3.6.1.2.1.47.1.1.1.1.10.2622|4| +1.3.6.1.2.1.47.1.1.1.1.10.2623|4| +1.3.6.1.2.1.47.1.1.1.1.10.2624|4| +1.3.6.1.2.1.47.1.1.1.1.10.2625|4| +1.3.6.1.2.1.47.1.1.1.1.10.2626|4| +1.3.6.1.2.1.47.1.1.1.1.10.2627|4| +1.3.6.1.2.1.47.1.1.1.1.10.2628|4| +1.3.6.1.2.1.47.1.1.1.1.10.2629|4| +1.3.6.1.2.1.47.1.1.1.1.10.2630|4| +1.3.6.1.2.1.47.1.1.1.1.10.2631|4| +1.3.6.1.2.1.47.1.1.1.1.10.8193|4|6.6.3 +1.3.6.1.2.1.47.1.1.1.1.10.8194|4| +1.3.6.1.2.1.47.1.1.1.1.10.8195|4| +1.3.6.1.2.1.47.1.1.1.1.10.8196|4| +1.3.6.1.2.1.47.1.1.1.1.10.8198|4| +1.3.6.1.2.1.47.1.1.1.1.10.8199|4| +1.3.6.1.2.1.47.1.1.1.1.10.8203|4| +1.3.6.1.2.1.47.1.1.1.1.10.8204|4| +1.3.6.1.2.1.47.1.1.1.1.10.8206|4| +1.3.6.1.2.1.47.1.1.1.1.10.8222|4| +1.3.6.1.2.1.47.1.1.1.1.10.8223|4| +1.3.6.1.2.1.47.1.1.1.1.10.8227|4| +1.3.6.1.2.1.47.1.1.1.1.10.8287|4| +1.3.6.1.2.1.47.1.1.1.1.10.8288|4| +1.3.6.1.2.1.47.1.1.1.1.10.8289|4| +1.3.6.1.2.1.47.1.1.1.1.10.8357|4| +1.3.6.1.2.1.47.1.1.1.1.10.8359|4| +1.3.6.1.2.1.47.1.1.1.1.10.8360|4| +1.3.6.1.2.1.47.1.1.1.1.10.8492|4| +1.3.6.1.2.1.47.1.1.1.1.10.8493|4| +1.3.6.1.2.1.47.1.1.1.1.10.8494|4| +1.3.6.1.2.1.47.1.1.1.1.10.8495|4| +1.3.6.1.2.1.47.1.1.1.1.10.8496|4| +1.3.6.1.2.1.47.1.1.1.1.10.8497|4| +1.3.6.1.2.1.47.1.1.1.1.10.8498|4| +1.3.6.1.2.1.47.1.1.1.1.10.8499|4| +1.3.6.1.2.1.47.1.1.1.1.10.8522|4| +1.3.6.1.2.1.47.1.1.1.1.10.8592|4| +1.3.6.1.2.1.47.1.1.1.1.10.8593|4| +1.3.6.1.2.1.47.1.1.1.1.10.8594|4| +1.3.6.1.2.1.47.1.1.1.1.10.8595|4| +1.3.6.1.2.1.47.1.1.1.1.10.8596|4| +1.3.6.1.2.1.47.1.1.1.1.10.8597|4| +1.3.6.1.2.1.47.1.1.1.1.10.8599|4| +1.3.6.1.2.1.47.1.1.1.1.10.8600|4| +1.3.6.1.2.1.47.1.1.1.1.10.8601|4| +1.3.6.1.2.1.47.1.1.1.1.10.8602|4| +1.3.6.1.2.1.47.1.1.1.1.10.8603|4| +1.3.6.1.2.1.47.1.1.1.1.10.8604|4| +1.3.6.1.2.1.47.1.1.1.1.10.8762|4| +1.3.6.1.2.1.47.1.1.1.1.10.8793|4| +1.3.6.1.2.1.47.1.1.1.1.10.8794|4| +1.3.6.1.2.1.47.1.1.1.1.10.8795|4| +1.3.6.1.2.1.47.1.1.1.1.10.8796|4| +1.3.6.1.2.1.47.1.1.1.1.10.8797|4| +1.3.6.1.2.1.47.1.1.1.1.10.8798|4| +1.3.6.1.2.1.47.1.1.1.1.10.8799|4| +1.3.6.1.2.1.47.1.1.1.1.10.8800|4| +1.3.6.1.2.1.47.1.1.1.1.10.8801|4| +1.3.6.1.2.1.47.1.1.1.1.10.8802|4| +1.3.6.1.2.1.47.1.1.1.1.10.8803|4| +1.3.6.1.2.1.47.1.1.1.1.10.8804|4| +1.3.6.1.2.1.47.1.1.1.1.10.8805|4| +1.3.6.1.2.1.47.1.1.1.1.10.8806|4| +1.3.6.1.2.1.47.1.1.1.1.10.8807|4| +1.3.6.1.2.1.47.1.1.1.1.10.8808|4| +1.3.6.1.2.1.47.1.1.1.1.10.8809|4| +1.3.6.1.2.1.47.1.1.1.1.10.8810|4| +1.3.6.1.2.1.47.1.1.1.1.10.8811|4| +1.3.6.1.2.1.47.1.1.1.1.10.8812|4| +1.3.6.1.2.1.47.1.1.1.1.10.8813|4| +1.3.6.1.2.1.47.1.1.1.1.10.8814|4| +1.3.6.1.2.1.47.1.1.1.1.10.8815|4| +1.3.6.1.2.1.47.1.1.1.1.10.8816|4| +1.3.6.1.2.1.47.1.1.1.1.10.8817|4| +1.3.6.1.2.1.47.1.1.1.1.10.8818|4| +1.3.6.1.2.1.47.1.1.1.1.10.8819|4| +1.3.6.1.2.1.47.1.1.1.1.10.8820|4| +1.3.6.1.2.1.47.1.1.1.1.10.8821|4| +1.3.6.1.2.1.47.1.1.1.1.10.8822|4| +1.3.6.1.2.1.47.1.1.1.1.10.8823|4| +1.3.6.1.2.1.47.1.1.1.1.10.8824|4| +1.3.6.1.2.1.47.1.1.1.1.10.8825|4| +1.3.6.1.2.1.47.1.1.1.1.10.8826|4| +1.3.6.1.2.1.47.1.1.1.1.10.8827|4| +1.3.6.1.2.1.47.1.1.1.1.10.8828|4| +1.3.6.1.2.1.47.1.1.1.1.10.8829|4| +1.3.6.1.2.1.47.1.1.1.1.10.8830|4| +1.3.6.1.2.1.47.1.1.1.1.10.8831|4| +1.3.6.1.2.1.47.1.1.1.1.10.8832|4| +1.3.6.1.2.1.47.1.1.1.1.10.8833|4| +1.3.6.1.2.1.47.1.1.1.1.10.8834|4| +1.3.6.1.2.1.47.1.1.1.1.10.8851|4| +1.3.6.1.2.1.47.1.1.1.1.10.8852|4| +1.3.6.1.2.1.47.1.1.1.1.10.8853|4| +1.3.6.1.2.1.47.1.1.1.1.10.8854|4| +1.3.6.1.2.1.47.1.1.1.1.10.8855|4| +1.3.6.1.2.1.47.1.1.1.1.10.8856|4| +1.3.6.1.2.1.47.1.1.1.1.10.8857|4| +1.3.6.1.2.1.47.1.1.1.1.10.8858|4| +1.3.6.1.2.1.47.1.1.1.1.10.8859|4| +1.3.6.1.2.1.47.1.1.1.1.10.8860|4| +1.3.6.1.2.1.47.1.1.1.1.10.8861|4| +1.3.6.1.2.1.47.1.1.1.1.10.8862|4| +1.3.6.1.2.1.47.1.1.1.1.10.8863|4| +1.3.6.1.2.1.47.1.1.1.1.10.8864|4| +1.3.6.1.2.1.47.1.1.1.1.10.8865|4| +1.3.6.1.2.1.47.1.1.1.1.10.8866|4| +1.3.6.1.2.1.47.1.1.1.1.10.8867|4| +1.3.6.1.2.1.47.1.1.1.1.10.8868|4| +1.3.6.1.2.1.47.1.1.1.1.10.8869|4| +1.3.6.1.2.1.47.1.1.1.1.10.8870|4| +1.3.6.1.2.1.47.1.1.1.1.10.8871|4| +1.3.6.1.2.1.47.1.1.1.1.10.8872|4| +1.3.6.1.2.1.47.1.1.1.1.10.8873|4| +1.3.6.1.2.1.47.1.1.1.1.10.8874|4| +1.3.6.1.2.1.47.1.1.1.1.10.8875|4| +1.3.6.1.2.1.47.1.1.1.1.10.8876|4| +1.3.6.1.2.1.47.1.1.1.1.10.8927|4| +1.3.6.1.2.1.47.1.1.1.1.10.8928|4| +1.3.6.1.2.1.47.1.1.1.1.10.8929|4| +1.3.6.1.2.1.47.1.1.1.1.10.8930|4| +1.3.6.1.2.1.47.1.1.1.1.10.8931|4| +1.3.6.1.2.1.47.1.1.1.1.10.8932|4| +1.3.6.1.2.1.47.1.1.1.1.10.8933|4| +1.3.6.1.2.1.47.1.1.1.1.10.8934|4| +1.3.6.1.2.1.47.1.1.1.1.10.8943|4| +1.3.6.1.2.1.47.1.1.1.1.10.8944|4| +1.3.6.1.2.1.47.1.1.1.1.10.8945|4| +1.3.6.1.2.1.47.1.1.1.1.10.8946|4| +1.3.6.1.2.1.47.1.1.1.1.10.8947|4| +1.3.6.1.2.1.47.1.1.1.1.10.8948|4| +1.3.6.1.2.1.47.1.1.1.1.10.8949|4| +1.3.6.1.2.1.47.1.1.1.1.10.8950|4| +1.3.6.1.2.1.47.1.1.1.1.10.8993|4| +1.3.6.1.2.1.47.1.1.1.1.10.8994|4| +1.3.6.1.2.1.47.1.1.1.1.10.8995|4| +1.3.6.1.2.1.47.1.1.1.1.10.8996|4| +1.3.6.1.2.1.47.1.1.1.1.10.8997|4| +1.3.6.1.2.1.47.1.1.1.1.10.8998|4| +1.3.6.1.2.1.47.1.1.1.1.10.8999|4| +1.3.6.1.2.1.47.1.1.1.1.10.9000|4| +1.3.6.1.2.1.47.1.1.1.1.10.9001|4| +1.3.6.1.2.1.47.1.1.1.1.10.9002|4| +1.3.6.1.2.1.47.1.1.1.1.10.9003|4| +1.3.6.1.2.1.47.1.1.1.1.10.9004|4| +1.3.6.1.2.1.47.1.1.1.1.10.9005|4| +1.3.6.1.2.1.47.1.1.1.1.10.9006|4| +1.3.6.1.2.1.47.1.1.1.1.10.9007|4| +1.3.6.1.2.1.47.1.1.1.1.10.9008|4| +1.3.6.1.2.1.47.1.1.1.1.10.9009|4| +1.3.6.1.2.1.47.1.1.1.1.10.9010|4| +1.3.6.1.2.1.47.1.1.1.1.10.9011|4| +1.3.6.1.2.1.47.1.1.1.1.10.9012|4| +1.3.6.1.2.1.47.1.1.1.1.10.9013|4| +1.3.6.1.2.1.47.1.1.1.1.10.9014|4| +1.3.6.1.2.1.47.1.1.1.1.10.9015|4| +1.3.6.1.2.1.47.1.1.1.1.10.9016|4| +1.3.6.1.2.1.47.1.1.1.1.10.9017|4| +1.3.6.1.2.1.47.1.1.1.1.10.9018|4| +1.3.6.1.2.1.47.1.1.1.1.10.9019|4| +1.3.6.1.2.1.47.1.1.1.1.10.9020|4| +1.3.6.1.2.1.47.1.1.1.1.10.9021|4| +1.3.6.1.2.1.47.1.1.1.1.10.9022|4| +1.3.6.1.2.1.47.1.1.1.1.10.9023|4| +1.3.6.1.2.1.47.1.1.1.1.10.9024|4| +1.3.6.1.2.1.47.1.1.1.1.10.9025|4| +1.3.6.1.2.1.47.1.1.1.1.10.9026|4| +1.3.6.1.2.1.47.1.1.1.1.10.9027|4| +1.3.6.1.2.1.47.1.1.1.1.10.9028|4| +1.3.6.1.2.1.47.1.1.1.1.10.9029|4| +1.3.6.1.2.1.47.1.1.1.1.10.9030|4| +1.3.6.1.2.1.47.1.1.1.1.10.9031|4| +1.3.6.1.2.1.47.1.1.1.1.10.9032|4| +1.3.6.1.2.1.47.1.1.1.1.10.9033|4| +1.3.6.1.2.1.47.1.1.1.1.10.9034|4| +1.3.6.1.2.1.47.1.1.1.1.10.9061|4| +1.3.6.1.2.1.47.1.1.1.1.10.9062|4| +1.3.6.1.2.1.47.1.1.1.1.10.9063|4| +1.3.6.1.2.1.47.1.1.1.1.10.9064|4| +1.3.6.1.2.1.47.1.1.1.1.10.9065|4| +1.3.6.1.2.1.47.1.1.1.1.10.9066|4| +1.3.6.1.2.1.47.1.1.1.1.10.9067|4| +1.3.6.1.2.1.47.1.1.1.1.10.9068|4| +1.3.6.1.2.1.47.1.1.1.1.10.9069|4| +1.3.6.1.2.1.47.1.1.1.1.10.9070|4| +1.3.6.1.2.1.47.1.1.1.1.10.9071|4| +1.3.6.1.2.1.47.1.1.1.1.10.9072|4| +1.3.6.1.2.1.47.1.1.1.1.10.9075|4| +1.3.6.1.2.1.47.1.1.1.1.10.9076|4| +1.3.6.1.2.1.47.1.1.1.1.10.9077|4| +1.3.6.1.2.1.47.1.1.1.1.10.9078|4| +1.3.6.1.2.1.47.1.1.1.1.10.9079|4| +1.3.6.1.2.1.47.1.1.1.1.10.9080|4| +1.3.6.1.2.1.47.1.1.1.1.10.9081|4| +1.3.6.1.2.1.47.1.1.1.1.10.9082|4| +1.3.6.1.2.1.47.1.1.1.1.10.9083|4| +1.3.6.1.2.1.47.1.1.1.1.10.9084|4| +1.3.6.1.2.1.47.1.1.1.1.10.9085|4| +1.3.6.1.2.1.47.1.1.1.1.10.9086|4| +1.3.6.1.2.1.47.1.1.1.1.10.10593|4| +1.3.6.1.2.1.47.1.1.1.1.10.10793|4| +1.3.6.1.2.1.47.1.1.1.1.10.10794|4| +1.3.6.1.2.1.47.1.1.1.1.10.10795|4| +1.3.6.1.2.1.47.1.1.1.1.10.10796|4| +1.3.6.1.2.1.47.1.1.1.1.10.10797|4| +1.3.6.1.2.1.47.1.1.1.1.10.10798|4| +1.3.6.1.2.1.47.1.1.1.1.10.10799|4| +1.3.6.1.2.1.47.1.1.1.1.10.10800|4| +1.3.6.1.2.1.47.1.1.1.1.10.10801|4| +1.3.6.1.2.1.47.1.1.1.1.10.10802|4| +1.3.6.1.2.1.47.1.1.1.1.10.10803|4| +1.3.6.1.2.1.47.1.1.1.1.10.10804|4| +1.3.6.1.2.1.47.1.1.1.1.10.10805|4| +1.3.6.1.2.1.47.1.1.1.1.10.10806|4| +1.3.6.1.2.1.47.1.1.1.1.10.10807|4| +1.3.6.1.2.1.47.1.1.1.1.10.10808|4| +1.3.6.1.2.1.47.1.1.1.1.10.10809|4| +1.3.6.1.2.1.47.1.1.1.1.10.10810|4| +1.3.6.1.2.1.47.1.1.1.1.10.10811|4| +1.3.6.1.2.1.47.1.1.1.1.10.10812|4| +1.3.6.1.2.1.47.1.1.1.1.10.10813|4| +1.3.6.1.2.1.47.1.1.1.1.10.10814|4| +1.3.6.1.2.1.47.1.1.1.1.10.10815|4| +1.3.6.1.2.1.47.1.1.1.1.10.10816|4| +1.3.6.1.2.1.47.1.1.1.1.10.10817|4| +1.3.6.1.2.1.47.1.1.1.1.10.10818|4| +1.3.6.1.2.1.47.1.1.1.1.10.10819|4| +1.3.6.1.2.1.47.1.1.1.1.10.10820|4| +1.3.6.1.2.1.47.1.1.1.1.10.10821|4| +1.3.6.1.2.1.47.1.1.1.1.10.10822|4| +1.3.6.1.2.1.47.1.1.1.1.10.10823|4| +1.3.6.1.2.1.47.1.1.1.1.10.10824|4| +1.3.6.1.2.1.47.1.1.1.1.10.10825|4| +1.3.6.1.2.1.47.1.1.1.1.10.10826|4| +1.3.6.1.2.1.47.1.1.1.1.10.10827|4| +1.3.6.1.2.1.47.1.1.1.1.10.10828|4| +1.3.6.1.2.1.47.1.1.1.1.10.10829|4| +1.3.6.1.2.1.47.1.1.1.1.10.10830|4| +1.3.6.1.2.1.47.1.1.1.1.10.10831|4| +1.3.6.1.2.1.47.1.1.1.1.10.10832|4| +1.3.6.1.2.1.47.1.1.1.1.10.10833|4| +1.3.6.1.2.1.47.1.1.1.1.10.10834|4| +1.3.6.1.2.1.47.1.1.1.1.10.10835|4| +1.3.6.1.2.1.47.1.1.1.1.10.10836|4| +1.3.6.1.2.1.47.1.1.1.1.10.10837|4| +1.3.6.1.2.1.47.1.1.1.1.10.10838|4| +1.3.6.1.2.1.47.1.1.1.1.10.10839|4| +1.3.6.1.2.1.47.1.1.1.1.10.10840|4| +1.3.6.1.2.1.47.1.1.1.1.10.10841|4| +1.3.6.1.2.1.47.1.1.1.1.10.10842|4| +1.3.6.1.2.1.47.1.1.1.1.10.10843|4| +1.3.6.1.2.1.47.1.1.1.1.10.10844|4| +1.3.6.1.2.1.47.1.1.1.1.10.10845|4| +1.3.6.1.2.1.47.1.1.1.1.10.10846|4| +1.3.6.1.2.1.47.1.1.1.1.10.10847|4| +1.3.6.1.2.1.47.1.1.1.1.10.10848|4| +1.3.6.1.2.1.47.1.1.1.1.10.10849|4| +1.3.6.1.2.1.47.1.1.1.1.10.10850|4| +1.3.6.1.2.1.47.1.1.1.1.10.10851|4| +1.3.6.1.2.1.47.1.1.1.1.10.10852|4| +1.3.6.1.2.1.47.1.1.1.1.10.10853|4| +1.3.6.1.2.1.47.1.1.1.1.10.10854|4| +1.3.6.1.2.1.47.1.1.1.1.10.10855|4| +1.3.6.1.2.1.47.1.1.1.1.10.10856|4| +1.3.6.1.2.1.47.1.1.1.1.10.10857|4| +1.3.6.1.2.1.47.1.1.1.1.10.10858|4| +1.3.6.1.2.1.47.1.1.1.1.10.40961|4|6.6.3 +1.3.6.1.2.1.47.1.1.1.1.10.40967|4| +1.3.6.1.2.1.47.1.1.1.1.10.41810|4| +1.3.6.1.2.1.47.1.1.1.1.10.41910|4| +1.3.6.1.2.1.47.1.1.1.1.10.45057|4|6.6.3 +1.3.6.1.2.1.47.1.1.1.1.10.45063|4| +1.3.6.1.2.1.47.1.1.1.1.10.45906|4| +1.3.6.1.2.1.47.1.1.1.1.10.46006|4| +1.3.6.1.2.1.47.1.1.1.1.10.49153|4|6.6.3 +1.3.6.1.2.1.47.1.1.1.1.10.49159|4| +1.3.6.1.2.1.47.1.1.1.1.10.50002|4| +1.3.6.1.2.1.47.1.1.1.1.10.50102|4| +1.3.6.1.2.1.47.1.1.1.1.10.118785|4|6.6.3 +1.3.6.1.2.1.47.1.1.1.1.10.118790|4| +1.3.6.1.2.1.47.1.1.1.1.10.118894|4| +1.3.6.1.2.1.47.1.1.1.1.10.118895|4| +1.3.6.1.2.1.47.1.1.1.1.10.2375681|4|6.6.3 +1.3.6.1.2.1.47.1.1.1.1.10.2375682|4| +1.3.6.1.2.1.47.1.1.1.1.10.2375687|4| +1.3.6.1.2.1.47.1.1.1.1.10.2375930|4| +1.3.6.1.2.1.47.1.1.1.1.10.2375931|4| +1.3.6.1.2.1.47.1.1.1.1.10.2375940|4| +1.3.6.1.2.1.47.1.1.1.1.10.2375941|4| +1.3.6.1.2.1.47.1.1.1.1.10.2375950|4| +1.3.6.1.2.1.47.1.1.1.1.10.2375951|4| +1.3.6.1.2.1.47.1.1.1.1.10.2375970|4| +1.3.6.1.2.1.47.1.1.1.1.10.2375971|4| +1.3.6.1.2.1.47.1.1.1.1.10.2375972|4| +1.3.6.1.2.1.47.1.1.1.1.10.2376530|4| +1.3.6.1.2.1.47.1.1.1.1.10.2376531|4| +1.3.6.1.2.1.47.1.1.1.1.10.2376630|4| +1.3.6.1.2.1.47.1.1.1.1.10.2376631|4| +1.3.6.1.2.1.47.1.1.1.1.10.2379777|4|6.6.3 +1.3.6.1.2.1.47.1.1.1.1.10.2379778|4| +1.3.6.1.2.1.47.1.1.1.1.10.2379783|4| +1.3.6.1.2.1.47.1.1.1.1.10.2380026|4| +1.3.6.1.2.1.47.1.1.1.1.10.2380027|4| +1.3.6.1.2.1.47.1.1.1.1.10.2380036|4| +1.3.6.1.2.1.47.1.1.1.1.10.2380037|4| +1.3.6.1.2.1.47.1.1.1.1.10.2380046|4| +1.3.6.1.2.1.47.1.1.1.1.10.2380047|4| +1.3.6.1.2.1.47.1.1.1.1.10.2380066|4| +1.3.6.1.2.1.47.1.1.1.1.10.2380067|4| +1.3.6.1.2.1.47.1.1.1.1.10.2380068|4| +1.3.6.1.2.1.47.1.1.1.1.10.2380626|4| +1.3.6.1.2.1.47.1.1.1.1.10.2380627|4| +1.3.6.1.2.1.47.1.1.1.1.10.2380726|4| +1.3.6.1.2.1.47.1.1.1.1.10.2380727|4| +1.3.6.1.2.1.47.1.1.1.1.10.2990081|4| +1.3.6.1.2.1.47.1.1.1.1.10.2990087|4| +1.3.6.1.2.1.47.1.1.1.1.10.2990320|4| +1.3.6.1.2.1.47.1.1.1.1.10.2990330|4| +1.3.6.1.2.1.47.1.1.1.1.10.2990350|4| +1.3.6.1.2.1.47.1.1.1.1.10.2990362|4| +1.3.6.1.2.1.47.1.1.1.1.10.2990470|4| +1.3.6.1.2.1.47.1.1.1.1.10.2994177|4| +1.3.6.1.2.1.47.1.1.1.1.10.2994183|4| +1.3.6.1.2.1.47.1.1.1.1.10.2994416|4| +1.3.6.1.2.1.47.1.1.1.1.10.2994426|4| +1.3.6.1.2.1.47.1.1.1.1.10.2994446|4| +1.3.6.1.2.1.47.1.1.1.1.10.2994458|4| +1.3.6.1.2.1.47.1.1.1.1.10.2994566|4| +1.3.6.1.2.1.47.1.1.1.1.10.3014657|4| +1.3.6.1.2.1.47.1.1.1.1.10.3014663|4| +1.3.6.1.2.1.47.1.1.1.1.10.3014896|4| +1.3.6.1.2.1.47.1.1.1.1.10.3014906|4| +1.3.6.1.2.1.47.1.1.1.1.10.3014926|4| +1.3.6.1.2.1.47.1.1.1.1.10.3014938|4| +1.3.6.1.2.1.47.1.1.1.1.10.3015046|4| +1.3.6.1.2.1.47.1.1.1.1.10.3072001|4| +1.3.6.1.2.1.47.1.1.1.1.10.3072007|4| +1.3.6.1.2.1.47.1.1.1.1.10.3072240|4| +1.3.6.1.2.1.47.1.1.1.1.10.3072250|4| +1.3.6.1.2.1.47.1.1.1.1.10.3072270|4| +1.3.6.1.2.1.47.1.1.1.1.10.3072282|4| +1.3.6.1.2.1.47.1.1.1.1.10.3072390|4| +1.3.6.1.2.1.47.1.1.1.1.10.8384513|4|6.6.3 +1.3.6.1.2.1.47.1.1.1.1.10.8384518|4| +1.3.6.1.2.1.47.1.1.1.1.10.8384527|4| +1.3.6.1.2.1.47.1.1.1.1.10.8384552|4| +1.3.6.1.2.1.47.1.1.1.1.10.8384597|4| +1.3.6.1.2.1.47.1.1.1.1.10.8384598|4| +1.3.6.1.2.1.47.1.1.1.1.10.8384599|4| +1.3.6.1.2.1.47.1.1.1.1.10.8384602|4| +1.3.6.1.2.1.47.1.1.1.1.10.8384612|4| +1.3.6.1.2.1.47.1.1.1.1.11.1|4|FOC2211NMLZ +1.3.6.1.2.1.47.1.1.1.1.11.2|4| +1.3.6.1.2.1.47.1.1.1.1.11.3|4| +1.3.6.1.2.1.47.1.1.1.1.11.4|4| +1.3.6.1.2.1.47.1.1.1.1.11.7|4|FOC2211NMLZ +1.3.6.1.2.1.47.1.1.1.1.11.11|4| +1.3.6.1.2.1.47.1.1.1.1.11.12|4| +1.3.6.1.2.1.47.1.1.1.1.11.13|4| +1.3.6.1.2.1.47.1.1.1.1.11.18|4| +1.3.6.1.2.1.47.1.1.1.1.11.26|4| +1.3.6.1.2.1.47.1.1.1.1.11.30|4| +1.3.6.1.2.1.47.1.1.1.1.11.95|4| +1.3.6.1.2.1.47.1.1.1.1.11.96|4| +1.3.6.1.2.1.47.1.1.1.1.11.97|4| +1.3.6.1.2.1.47.1.1.1.1.11.103|4| +1.3.6.1.2.1.47.1.1.1.1.11.104|4| +1.3.6.1.2.1.47.1.1.1.1.11.105|4| +1.3.6.1.2.1.47.1.1.1.1.11.106|4| +1.3.6.1.2.1.47.1.1.1.1.11.108|4| +1.3.6.1.2.1.47.1.1.1.1.11.109|4| +1.3.6.1.2.1.47.1.1.1.1.11.111|4| +1.3.6.1.2.1.47.1.1.1.1.11.112|4| +1.3.6.1.2.1.47.1.1.1.1.11.113|4| +1.3.6.1.2.1.47.1.1.1.1.11.134|4| +1.3.6.1.2.1.47.1.1.1.1.11.167|4| +1.3.6.1.2.1.47.1.1.1.1.11.168|4| +1.3.6.1.2.1.47.1.1.1.1.11.169|4| +1.3.6.1.2.1.47.1.1.1.1.11.178|4| +1.3.6.1.2.1.47.1.1.1.1.11.179|4| +1.3.6.1.2.1.47.1.1.1.1.11.182|4| +1.3.6.1.2.1.47.1.1.1.1.11.237|4| +1.3.6.1.2.1.47.1.1.1.1.11.255|4| +1.3.6.1.2.1.47.1.1.1.1.11.290|4| +1.3.6.1.2.1.47.1.1.1.1.11.293|4| +1.3.6.1.2.1.47.1.1.1.1.11.296|4| +1.3.6.1.2.1.47.1.1.1.1.11.297|4| +1.3.6.1.2.1.47.1.1.1.1.11.298|4| +1.3.6.1.2.1.47.1.1.1.1.11.302|4| +1.3.6.1.2.1.47.1.1.1.1.11.303|4| +1.3.6.1.2.1.47.1.1.1.1.11.304|4| +1.3.6.1.2.1.47.1.1.1.1.11.305|4| +1.3.6.1.2.1.47.1.1.1.1.11.306|4| +1.3.6.1.2.1.47.1.1.1.1.11.440|4| +1.3.6.1.2.1.47.1.1.1.1.11.441|4| +1.3.6.1.2.1.47.1.1.1.1.11.442|4| +1.3.6.1.2.1.47.1.1.1.1.11.550|4| +1.3.6.1.2.1.47.1.1.1.1.11.551|4| +1.3.6.1.2.1.47.1.1.1.1.11.570|4| +1.3.6.1.2.1.47.1.1.1.1.11.600|4| +1.3.6.1.2.1.47.1.1.1.1.11.625|4| +1.3.6.1.2.1.47.1.1.1.1.11.628|4| +1.3.6.1.2.1.47.1.1.1.1.11.2401|4| +1.3.6.1.2.1.47.1.1.1.1.11.2601|4| +1.3.6.1.2.1.47.1.1.1.1.11.2602|4| +1.3.6.1.2.1.47.1.1.1.1.11.2603|4| +1.3.6.1.2.1.47.1.1.1.1.11.2604|4| +1.3.6.1.2.1.47.1.1.1.1.11.2605|4| +1.3.6.1.2.1.47.1.1.1.1.11.2606|4| +1.3.6.1.2.1.47.1.1.1.1.11.2607|4| +1.3.6.1.2.1.47.1.1.1.1.11.2608|4| +1.3.6.1.2.1.47.1.1.1.1.11.2609|4| +1.3.6.1.2.1.47.1.1.1.1.11.2610|4| +1.3.6.1.2.1.47.1.1.1.1.11.2611|4| +1.3.6.1.2.1.47.1.1.1.1.11.2612|4| +1.3.6.1.2.1.47.1.1.1.1.11.2613|4| +1.3.6.1.2.1.47.1.1.1.1.11.2614|4| +1.3.6.1.2.1.47.1.1.1.1.11.2615|4| +1.3.6.1.2.1.47.1.1.1.1.11.2616|4| +1.3.6.1.2.1.47.1.1.1.1.11.2617|4| +1.3.6.1.2.1.47.1.1.1.1.11.2618|4| +1.3.6.1.2.1.47.1.1.1.1.11.2619|4| +1.3.6.1.2.1.47.1.1.1.1.11.2620|4| +1.3.6.1.2.1.47.1.1.1.1.11.2621|4| +1.3.6.1.2.1.47.1.1.1.1.11.2622|4| +1.3.6.1.2.1.47.1.1.1.1.11.2623|4| +1.3.6.1.2.1.47.1.1.1.1.11.2624|4| +1.3.6.1.2.1.47.1.1.1.1.11.2625|4| +1.3.6.1.2.1.47.1.1.1.1.11.2626|4| +1.3.6.1.2.1.47.1.1.1.1.11.2627|4| +1.3.6.1.2.1.47.1.1.1.1.11.2628|4| +1.3.6.1.2.1.47.1.1.1.1.11.2629|4| +1.3.6.1.2.1.47.1.1.1.1.11.2630|4| +1.3.6.1.2.1.47.1.1.1.1.11.2631|4| +1.3.6.1.2.1.47.1.1.1.1.11.8193|4|FOC2211NMMD +1.3.6.1.2.1.47.1.1.1.1.11.8194|4| +1.3.6.1.2.1.47.1.1.1.1.11.8195|4| +1.3.6.1.2.1.47.1.1.1.1.11.8196|4| +1.3.6.1.2.1.47.1.1.1.1.11.8198|4|FOC2211NMMD +1.3.6.1.2.1.47.1.1.1.1.11.8199|4|A9K2211NMMD +1.3.6.1.2.1.47.1.1.1.1.11.8203|4| +1.3.6.1.2.1.47.1.1.1.1.11.8204|4| +1.3.6.1.2.1.47.1.1.1.1.11.8206|4| +1.3.6.1.2.1.47.1.1.1.1.11.8222|4| +1.3.6.1.2.1.47.1.1.1.1.11.8223|4| +1.3.6.1.2.1.47.1.1.1.1.11.8227|4| +1.3.6.1.2.1.47.1.1.1.1.11.8287|4| +1.3.6.1.2.1.47.1.1.1.1.11.8288|4| +1.3.6.1.2.1.47.1.1.1.1.11.8289|4| +1.3.6.1.2.1.47.1.1.1.1.11.8357|4| +1.3.6.1.2.1.47.1.1.1.1.11.8359|4| +1.3.6.1.2.1.47.1.1.1.1.11.8360|4| +1.3.6.1.2.1.47.1.1.1.1.11.8492|4| +1.3.6.1.2.1.47.1.1.1.1.11.8493|4| +1.3.6.1.2.1.47.1.1.1.1.11.8494|4| +1.3.6.1.2.1.47.1.1.1.1.11.8495|4| +1.3.6.1.2.1.47.1.1.1.1.11.8496|4| +1.3.6.1.2.1.47.1.1.1.1.11.8497|4| +1.3.6.1.2.1.47.1.1.1.1.11.8498|4| +1.3.6.1.2.1.47.1.1.1.1.11.8499|4| +1.3.6.1.2.1.47.1.1.1.1.11.8522|4| +1.3.6.1.2.1.47.1.1.1.1.11.8592|4| +1.3.6.1.2.1.47.1.1.1.1.11.8593|4| +1.3.6.1.2.1.47.1.1.1.1.11.8594|4| +1.3.6.1.2.1.47.1.1.1.1.11.8595|4| +1.3.6.1.2.1.47.1.1.1.1.11.8596|4| +1.3.6.1.2.1.47.1.1.1.1.11.8597|4| +1.3.6.1.2.1.47.1.1.1.1.11.8599|4| +1.3.6.1.2.1.47.1.1.1.1.11.8600|4| +1.3.6.1.2.1.47.1.1.1.1.11.8601|4| +1.3.6.1.2.1.47.1.1.1.1.11.8602|4| +1.3.6.1.2.1.47.1.1.1.1.11.8603|4| +1.3.6.1.2.1.47.1.1.1.1.11.8604|4| +1.3.6.1.2.1.47.1.1.1.1.11.8762|4| +1.3.6.1.2.1.47.1.1.1.1.11.8793|4| +1.3.6.1.2.1.47.1.1.1.1.11.8794|4| +1.3.6.1.2.1.47.1.1.1.1.11.8795|4| +1.3.6.1.2.1.47.1.1.1.1.11.8796|4| +1.3.6.1.2.1.47.1.1.1.1.11.8797|4| +1.3.6.1.2.1.47.1.1.1.1.11.8798|4| +1.3.6.1.2.1.47.1.1.1.1.11.8799|4| +1.3.6.1.2.1.47.1.1.1.1.11.8800|4| +1.3.6.1.2.1.47.1.1.1.1.11.8801|4| +1.3.6.1.2.1.47.1.1.1.1.11.8802|4| +1.3.6.1.2.1.47.1.1.1.1.11.8803|4| +1.3.6.1.2.1.47.1.1.1.1.11.8804|4| +1.3.6.1.2.1.47.1.1.1.1.11.8805|4| +1.3.6.1.2.1.47.1.1.1.1.11.8806|4| +1.3.6.1.2.1.47.1.1.1.1.11.8807|4| +1.3.6.1.2.1.47.1.1.1.1.11.8808|4| +1.3.6.1.2.1.47.1.1.1.1.11.8809|4| +1.3.6.1.2.1.47.1.1.1.1.11.8810|4| +1.3.6.1.2.1.47.1.1.1.1.11.8811|4| +1.3.6.1.2.1.47.1.1.1.1.11.8812|4| +1.3.6.1.2.1.47.1.1.1.1.11.8813|4| +1.3.6.1.2.1.47.1.1.1.1.11.8814|4| +1.3.6.1.2.1.47.1.1.1.1.11.8815|4| +1.3.6.1.2.1.47.1.1.1.1.11.8816|4| +1.3.6.1.2.1.47.1.1.1.1.11.8817|4| +1.3.6.1.2.1.47.1.1.1.1.11.8818|4| +1.3.6.1.2.1.47.1.1.1.1.11.8819|4| +1.3.6.1.2.1.47.1.1.1.1.11.8820|4| +1.3.6.1.2.1.47.1.1.1.1.11.8821|4| +1.3.6.1.2.1.47.1.1.1.1.11.8822|4| +1.3.6.1.2.1.47.1.1.1.1.11.8823|4| +1.3.6.1.2.1.47.1.1.1.1.11.8824|4| +1.3.6.1.2.1.47.1.1.1.1.11.8825|4| +1.3.6.1.2.1.47.1.1.1.1.11.8826|4| +1.3.6.1.2.1.47.1.1.1.1.11.8827|4| +1.3.6.1.2.1.47.1.1.1.1.11.8828|4| +1.3.6.1.2.1.47.1.1.1.1.11.8829|4| +1.3.6.1.2.1.47.1.1.1.1.11.8830|4| +1.3.6.1.2.1.47.1.1.1.1.11.8831|4| +1.3.6.1.2.1.47.1.1.1.1.11.8832|4| +1.3.6.1.2.1.47.1.1.1.1.11.8833|4| +1.3.6.1.2.1.47.1.1.1.1.11.8834|4| +1.3.6.1.2.1.47.1.1.1.1.11.8851|4| +1.3.6.1.2.1.47.1.1.1.1.11.8852|4| +1.3.6.1.2.1.47.1.1.1.1.11.8853|4| +1.3.6.1.2.1.47.1.1.1.1.11.8854|4| +1.3.6.1.2.1.47.1.1.1.1.11.8855|4| +1.3.6.1.2.1.47.1.1.1.1.11.8856|4| +1.3.6.1.2.1.47.1.1.1.1.11.8857|4| +1.3.6.1.2.1.47.1.1.1.1.11.8858|4| +1.3.6.1.2.1.47.1.1.1.1.11.8859|4| +1.3.6.1.2.1.47.1.1.1.1.11.8860|4| +1.3.6.1.2.1.47.1.1.1.1.11.8861|4| +1.3.6.1.2.1.47.1.1.1.1.11.8862|4| +1.3.6.1.2.1.47.1.1.1.1.11.8863|4| +1.3.6.1.2.1.47.1.1.1.1.11.8864|4| +1.3.6.1.2.1.47.1.1.1.1.11.8865|4| +1.3.6.1.2.1.47.1.1.1.1.11.8866|4| +1.3.6.1.2.1.47.1.1.1.1.11.8867|4| +1.3.6.1.2.1.47.1.1.1.1.11.8868|4| +1.3.6.1.2.1.47.1.1.1.1.11.8869|4| +1.3.6.1.2.1.47.1.1.1.1.11.8870|4| +1.3.6.1.2.1.47.1.1.1.1.11.8871|4| +1.3.6.1.2.1.47.1.1.1.1.11.8872|4| +1.3.6.1.2.1.47.1.1.1.1.11.8873|4| +1.3.6.1.2.1.47.1.1.1.1.11.8874|4| +1.3.6.1.2.1.47.1.1.1.1.11.8875|4| +1.3.6.1.2.1.47.1.1.1.1.11.8876|4| +1.3.6.1.2.1.47.1.1.1.1.11.8927|4| +1.3.6.1.2.1.47.1.1.1.1.11.8928|4| +1.3.6.1.2.1.47.1.1.1.1.11.8929|4| +1.3.6.1.2.1.47.1.1.1.1.11.8930|4| +1.3.6.1.2.1.47.1.1.1.1.11.8931|4| +1.3.6.1.2.1.47.1.1.1.1.11.8932|4| +1.3.6.1.2.1.47.1.1.1.1.11.8933|4| +1.3.6.1.2.1.47.1.1.1.1.11.8934|4| +1.3.6.1.2.1.47.1.1.1.1.11.8943|4| +1.3.6.1.2.1.47.1.1.1.1.11.8944|4| +1.3.6.1.2.1.47.1.1.1.1.11.8945|4| +1.3.6.1.2.1.47.1.1.1.1.11.8946|4| +1.3.6.1.2.1.47.1.1.1.1.11.8947|4| +1.3.6.1.2.1.47.1.1.1.1.11.8948|4| +1.3.6.1.2.1.47.1.1.1.1.11.8949|4| +1.3.6.1.2.1.47.1.1.1.1.11.8950|4| +1.3.6.1.2.1.47.1.1.1.1.11.8993|4| +1.3.6.1.2.1.47.1.1.1.1.11.8994|4| +1.3.6.1.2.1.47.1.1.1.1.11.8995|4| +1.3.6.1.2.1.47.1.1.1.1.11.8996|4| +1.3.6.1.2.1.47.1.1.1.1.11.8997|4| +1.3.6.1.2.1.47.1.1.1.1.11.8998|4| +1.3.6.1.2.1.47.1.1.1.1.11.8999|4| +1.3.6.1.2.1.47.1.1.1.1.11.9000|4| +1.3.6.1.2.1.47.1.1.1.1.11.9001|4| +1.3.6.1.2.1.47.1.1.1.1.11.9002|4| +1.3.6.1.2.1.47.1.1.1.1.11.9003|4| +1.3.6.1.2.1.47.1.1.1.1.11.9004|4| +1.3.6.1.2.1.47.1.1.1.1.11.9005|4| +1.3.6.1.2.1.47.1.1.1.1.11.9006|4| +1.3.6.1.2.1.47.1.1.1.1.11.9007|4| +1.3.6.1.2.1.47.1.1.1.1.11.9008|4| +1.3.6.1.2.1.47.1.1.1.1.11.9009|4| +1.3.6.1.2.1.47.1.1.1.1.11.9010|4| +1.3.6.1.2.1.47.1.1.1.1.11.9011|4| +1.3.6.1.2.1.47.1.1.1.1.11.9012|4| +1.3.6.1.2.1.47.1.1.1.1.11.9013|4| +1.3.6.1.2.1.47.1.1.1.1.11.9014|4| +1.3.6.1.2.1.47.1.1.1.1.11.9015|4| +1.3.6.1.2.1.47.1.1.1.1.11.9016|4| +1.3.6.1.2.1.47.1.1.1.1.11.9017|4| +1.3.6.1.2.1.47.1.1.1.1.11.9018|4| +1.3.6.1.2.1.47.1.1.1.1.11.9019|4| +1.3.6.1.2.1.47.1.1.1.1.11.9020|4| +1.3.6.1.2.1.47.1.1.1.1.11.9021|4| +1.3.6.1.2.1.47.1.1.1.1.11.9022|4| +1.3.6.1.2.1.47.1.1.1.1.11.9023|4| +1.3.6.1.2.1.47.1.1.1.1.11.9024|4| +1.3.6.1.2.1.47.1.1.1.1.11.9025|4| +1.3.6.1.2.1.47.1.1.1.1.11.9026|4| +1.3.6.1.2.1.47.1.1.1.1.11.9027|4| +1.3.6.1.2.1.47.1.1.1.1.11.9028|4| +1.3.6.1.2.1.47.1.1.1.1.11.9029|4| +1.3.6.1.2.1.47.1.1.1.1.11.9030|4| +1.3.6.1.2.1.47.1.1.1.1.11.9031|4| +1.3.6.1.2.1.47.1.1.1.1.11.9032|4| +1.3.6.1.2.1.47.1.1.1.1.11.9033|4| +1.3.6.1.2.1.47.1.1.1.1.11.9034|4| +1.3.6.1.2.1.47.1.1.1.1.11.9061|4| +1.3.6.1.2.1.47.1.1.1.1.11.9062|4| +1.3.6.1.2.1.47.1.1.1.1.11.9063|4| +1.3.6.1.2.1.47.1.1.1.1.11.9064|4| +1.3.6.1.2.1.47.1.1.1.1.11.9065|4| +1.3.6.1.2.1.47.1.1.1.1.11.9066|4| +1.3.6.1.2.1.47.1.1.1.1.11.9067|4| +1.3.6.1.2.1.47.1.1.1.1.11.9068|4| +1.3.6.1.2.1.47.1.1.1.1.11.9069|4| +1.3.6.1.2.1.47.1.1.1.1.11.9070|4| +1.3.6.1.2.1.47.1.1.1.1.11.9071|4| +1.3.6.1.2.1.47.1.1.1.1.11.9072|4| +1.3.6.1.2.1.47.1.1.1.1.11.9075|4| +1.3.6.1.2.1.47.1.1.1.1.11.9076|4| +1.3.6.1.2.1.47.1.1.1.1.11.9077|4| +1.3.6.1.2.1.47.1.1.1.1.11.9078|4| +1.3.6.1.2.1.47.1.1.1.1.11.9079|4| +1.3.6.1.2.1.47.1.1.1.1.11.9080|4| +1.3.6.1.2.1.47.1.1.1.1.11.9081|4| +1.3.6.1.2.1.47.1.1.1.1.11.9082|4| +1.3.6.1.2.1.47.1.1.1.1.11.9083|4| +1.3.6.1.2.1.47.1.1.1.1.11.9084|4| +1.3.6.1.2.1.47.1.1.1.1.11.9085|4| +1.3.6.1.2.1.47.1.1.1.1.11.9086|4| +1.3.6.1.2.1.47.1.1.1.1.11.10593|4| +1.3.6.1.2.1.47.1.1.1.1.11.10793|4| +1.3.6.1.2.1.47.1.1.1.1.11.10794|4| +1.3.6.1.2.1.47.1.1.1.1.11.10795|4| +1.3.6.1.2.1.47.1.1.1.1.11.10796|4| +1.3.6.1.2.1.47.1.1.1.1.11.10797|4| +1.3.6.1.2.1.47.1.1.1.1.11.10798|4| +1.3.6.1.2.1.47.1.1.1.1.11.10799|4| +1.3.6.1.2.1.47.1.1.1.1.11.10800|4| +1.3.6.1.2.1.47.1.1.1.1.11.10801|4| +1.3.6.1.2.1.47.1.1.1.1.11.10802|4| +1.3.6.1.2.1.47.1.1.1.1.11.10803|4| +1.3.6.1.2.1.47.1.1.1.1.11.10804|4| +1.3.6.1.2.1.47.1.1.1.1.11.10805|4| +1.3.6.1.2.1.47.1.1.1.1.11.10806|4| +1.3.6.1.2.1.47.1.1.1.1.11.10807|4| +1.3.6.1.2.1.47.1.1.1.1.11.10808|4| +1.3.6.1.2.1.47.1.1.1.1.11.10809|4| +1.3.6.1.2.1.47.1.1.1.1.11.10810|4| +1.3.6.1.2.1.47.1.1.1.1.11.10811|4| +1.3.6.1.2.1.47.1.1.1.1.11.10812|4| +1.3.6.1.2.1.47.1.1.1.1.11.10813|4| +1.3.6.1.2.1.47.1.1.1.1.11.10814|4| +1.3.6.1.2.1.47.1.1.1.1.11.10815|4| +1.3.6.1.2.1.47.1.1.1.1.11.10816|4| +1.3.6.1.2.1.47.1.1.1.1.11.10817|4| +1.3.6.1.2.1.47.1.1.1.1.11.10818|4| +1.3.6.1.2.1.47.1.1.1.1.11.10819|4| +1.3.6.1.2.1.47.1.1.1.1.11.10820|4| +1.3.6.1.2.1.47.1.1.1.1.11.10821|4| +1.3.6.1.2.1.47.1.1.1.1.11.10822|4| +1.3.6.1.2.1.47.1.1.1.1.11.10823|4| +1.3.6.1.2.1.47.1.1.1.1.11.10824|4| +1.3.6.1.2.1.47.1.1.1.1.11.10825|4| +1.3.6.1.2.1.47.1.1.1.1.11.10826|4| +1.3.6.1.2.1.47.1.1.1.1.11.10827|4| +1.3.6.1.2.1.47.1.1.1.1.11.10828|4| +1.3.6.1.2.1.47.1.1.1.1.11.10829|4| +1.3.6.1.2.1.47.1.1.1.1.11.10830|4| +1.3.6.1.2.1.47.1.1.1.1.11.10831|4| +1.3.6.1.2.1.47.1.1.1.1.11.10832|4| +1.3.6.1.2.1.47.1.1.1.1.11.10833|4| +1.3.6.1.2.1.47.1.1.1.1.11.10834|4| +1.3.6.1.2.1.47.1.1.1.1.11.10835|4| +1.3.6.1.2.1.47.1.1.1.1.11.10836|4| +1.3.6.1.2.1.47.1.1.1.1.11.10837|4| +1.3.6.1.2.1.47.1.1.1.1.11.10838|4| +1.3.6.1.2.1.47.1.1.1.1.11.10839|4| +1.3.6.1.2.1.47.1.1.1.1.11.10840|4| +1.3.6.1.2.1.47.1.1.1.1.11.10841|4| +1.3.6.1.2.1.47.1.1.1.1.11.10842|4| +1.3.6.1.2.1.47.1.1.1.1.11.10843|4| +1.3.6.1.2.1.47.1.1.1.1.11.10844|4| +1.3.6.1.2.1.47.1.1.1.1.11.10845|4| +1.3.6.1.2.1.47.1.1.1.1.11.10846|4| +1.3.6.1.2.1.47.1.1.1.1.11.10847|4| +1.3.6.1.2.1.47.1.1.1.1.11.10848|4| +1.3.6.1.2.1.47.1.1.1.1.11.10849|4| +1.3.6.1.2.1.47.1.1.1.1.11.10850|4| +1.3.6.1.2.1.47.1.1.1.1.11.10851|4| +1.3.6.1.2.1.47.1.1.1.1.11.10852|4| +1.3.6.1.2.1.47.1.1.1.1.11.10853|4| +1.3.6.1.2.1.47.1.1.1.1.11.10854|4| +1.3.6.1.2.1.47.1.1.1.1.11.10855|4| +1.3.6.1.2.1.47.1.1.1.1.11.10856|4| +1.3.6.1.2.1.47.1.1.1.1.11.10857|4| +1.3.6.1.2.1.47.1.1.1.1.11.10858|4| +1.3.6.1.2.1.47.1.1.1.1.11.40961|4|FOC2301PP41 +1.3.6.1.2.1.47.1.1.1.1.11.40967|4|FOC2301PP41 +1.3.6.1.2.1.47.1.1.1.1.11.41810|4| +1.3.6.1.2.1.47.1.1.1.1.11.41910|4| +1.3.6.1.2.1.47.1.1.1.1.11.45057|4|FOC2301PP4P +1.3.6.1.2.1.47.1.1.1.1.11.45063|4|FOC2301PP4P +1.3.6.1.2.1.47.1.1.1.1.11.45906|4| +1.3.6.1.2.1.47.1.1.1.1.11.46006|4| +1.3.6.1.2.1.47.1.1.1.1.11.49153|4|FOC2301PP4H +1.3.6.1.2.1.47.1.1.1.1.11.49159|4|FOC2301PP4H +1.3.6.1.2.1.47.1.1.1.1.11.50002|4| +1.3.6.1.2.1.47.1.1.1.1.11.50102|4| +1.3.6.1.2.1.47.1.1.1.1.11.118785|4|FOT1981P81A +1.3.6.1.2.1.47.1.1.1.1.11.118790|4|FOT1981P81A +1.3.6.1.2.1.47.1.1.1.1.11.118894|4| +1.3.6.1.2.1.47.1.1.1.1.11.118895|4| +1.3.6.1.2.1.47.1.1.1.1.11.2375681|4|POG2305Z80F +1.3.6.1.2.1.47.1.1.1.1.11.2375682|4| +1.3.6.1.2.1.47.1.1.1.1.11.2375687|4|POG2305Z80F +1.3.6.1.2.1.47.1.1.1.1.11.2375930|4| +1.3.6.1.2.1.47.1.1.1.1.11.2375931|4| +1.3.6.1.2.1.47.1.1.1.1.11.2375940|4| +1.3.6.1.2.1.47.1.1.1.1.11.2375941|4| +1.3.6.1.2.1.47.1.1.1.1.11.2375950|4| +1.3.6.1.2.1.47.1.1.1.1.11.2375951|4| +1.3.6.1.2.1.47.1.1.1.1.11.2375970|4| +1.3.6.1.2.1.47.1.1.1.1.11.2375971|4| +1.3.6.1.2.1.47.1.1.1.1.11.2375972|4| +1.3.6.1.2.1.47.1.1.1.1.11.2376530|4| +1.3.6.1.2.1.47.1.1.1.1.11.2376531|4| +1.3.6.1.2.1.47.1.1.1.1.11.2376630|4| +1.3.6.1.2.1.47.1.1.1.1.11.2376631|4| +1.3.6.1.2.1.47.1.1.1.1.11.2379777|4|POG2305Z85W +1.3.6.1.2.1.47.1.1.1.1.11.2379778|4| +1.3.6.1.2.1.47.1.1.1.1.11.2379783|4|POG2305Z85W +1.3.6.1.2.1.47.1.1.1.1.11.2380026|4| +1.3.6.1.2.1.47.1.1.1.1.11.2380027|4| +1.3.6.1.2.1.47.1.1.1.1.11.2380036|4| +1.3.6.1.2.1.47.1.1.1.1.11.2380037|4| +1.3.6.1.2.1.47.1.1.1.1.11.2380046|4| +1.3.6.1.2.1.47.1.1.1.1.11.2380047|4| +1.3.6.1.2.1.47.1.1.1.1.11.2380066|4| +1.3.6.1.2.1.47.1.1.1.1.11.2380067|4| +1.3.6.1.2.1.47.1.1.1.1.11.2380068|4| +1.3.6.1.2.1.47.1.1.1.1.11.2380626|4| +1.3.6.1.2.1.47.1.1.1.1.11.2380627|4| +1.3.6.1.2.1.47.1.1.1.1.11.2380726|4| +1.3.6.1.2.1.47.1.1.1.1.11.2380727|4| +1.3.6.1.2.1.47.1.1.1.1.11.2990081|4|S1804230026 +1.3.6.1.2.1.47.1.1.1.1.11.2990087|4|S1804230026 +1.3.6.1.2.1.47.1.1.1.1.11.2990320|4| +1.3.6.1.2.1.47.1.1.1.1.11.2990330|4| +1.3.6.1.2.1.47.1.1.1.1.11.2990350|4| +1.3.6.1.2.1.47.1.1.1.1.11.2990362|4| +1.3.6.1.2.1.47.1.1.1.1.11.2990470|4| +1.3.6.1.2.1.47.1.1.1.1.11.2994177|4|TA1907010033 +1.3.6.1.2.1.47.1.1.1.1.11.2994183|4|TA1907010033 +1.3.6.1.2.1.47.1.1.1.1.11.2994416|4| +1.3.6.1.2.1.47.1.1.1.1.11.2994426|4| +1.3.6.1.2.1.47.1.1.1.1.11.2994446|4| +1.3.6.1.2.1.47.1.1.1.1.11.2994458|4| +1.3.6.1.2.1.47.1.1.1.1.11.2994566|4| +1.3.6.1.2.1.47.1.1.1.1.11.3014657|4|S1809290007 +1.3.6.1.2.1.47.1.1.1.1.11.3014663|4|S1809290007 +1.3.6.1.2.1.47.1.1.1.1.11.3014896|4| +1.3.6.1.2.1.47.1.1.1.1.11.3014906|4| +1.3.6.1.2.1.47.1.1.1.1.11.3014926|4| +1.3.6.1.2.1.47.1.1.1.1.11.3014938|4| +1.3.6.1.2.1.47.1.1.1.1.11.3015046|4| +1.3.6.1.2.1.47.1.1.1.1.11.3072001|4|S151207008 +1.3.6.1.2.1.47.1.1.1.1.11.3072007|4|S151207008 +1.3.6.1.2.1.47.1.1.1.1.11.3072240|4| +1.3.6.1.2.1.47.1.1.1.1.11.3072250|4| +1.3.6.1.2.1.47.1.1.1.1.11.3072270|4| +1.3.6.1.2.1.47.1.1.1.1.11.3072282|4| +1.3.6.1.2.1.47.1.1.1.1.11.3072390|4| +1.3.6.1.2.1.47.1.1.1.1.11.8384513|4|FOC2213NL5M +1.3.6.1.2.1.47.1.1.1.1.11.8384518|4|FOC2213NL5M +1.3.6.1.2.1.47.1.1.1.1.11.8384527|4| +1.3.6.1.2.1.47.1.1.1.1.11.8384552|4| +1.3.6.1.2.1.47.1.1.1.1.11.8384597|4| +1.3.6.1.2.1.47.1.1.1.1.11.8384598|4| +1.3.6.1.2.1.47.1.1.1.1.11.8384599|4| +1.3.6.1.2.1.47.1.1.1.1.11.8384602|4| +1.3.6.1.2.1.47.1.1.1.1.11.8384612|4| +1.3.6.1.2.1.47.1.1.1.1.12.1|4|CISCO SYSTEMS, INC +1.3.6.1.2.1.47.1.1.1.1.12.2|4| +1.3.6.1.2.1.47.1.1.1.1.12.3|4| +1.3.6.1.2.1.47.1.1.1.1.12.4|4| +1.3.6.1.2.1.47.1.1.1.1.12.7|4|CISCO SYSTEMS, INC +1.3.6.1.2.1.47.1.1.1.1.12.11|4| +1.3.6.1.2.1.47.1.1.1.1.12.12|4| +1.3.6.1.2.1.47.1.1.1.1.12.13|4| +1.3.6.1.2.1.47.1.1.1.1.12.18|4| +1.3.6.1.2.1.47.1.1.1.1.12.26|4| +1.3.6.1.2.1.47.1.1.1.1.12.30|4| +1.3.6.1.2.1.47.1.1.1.1.12.95|4| +1.3.6.1.2.1.47.1.1.1.1.12.96|4| +1.3.6.1.2.1.47.1.1.1.1.12.97|4| +1.3.6.1.2.1.47.1.1.1.1.12.103|4| +1.3.6.1.2.1.47.1.1.1.1.12.104|4| +1.3.6.1.2.1.47.1.1.1.1.12.105|4| +1.3.6.1.2.1.47.1.1.1.1.12.106|4| +1.3.6.1.2.1.47.1.1.1.1.12.108|4| +1.3.6.1.2.1.47.1.1.1.1.12.109|4| +1.3.6.1.2.1.47.1.1.1.1.12.111|4| +1.3.6.1.2.1.47.1.1.1.1.12.112|4| +1.3.6.1.2.1.47.1.1.1.1.12.113|4| +1.3.6.1.2.1.47.1.1.1.1.12.134|4| +1.3.6.1.2.1.47.1.1.1.1.12.167|4| +1.3.6.1.2.1.47.1.1.1.1.12.168|4| +1.3.6.1.2.1.47.1.1.1.1.12.169|4| +1.3.6.1.2.1.47.1.1.1.1.12.178|4| +1.3.6.1.2.1.47.1.1.1.1.12.179|4| +1.3.6.1.2.1.47.1.1.1.1.12.182|4| +1.3.6.1.2.1.47.1.1.1.1.12.237|4| +1.3.6.1.2.1.47.1.1.1.1.12.255|4| +1.3.6.1.2.1.47.1.1.1.1.12.290|4| +1.3.6.1.2.1.47.1.1.1.1.12.293|4| +1.3.6.1.2.1.47.1.1.1.1.12.296|4| +1.3.6.1.2.1.47.1.1.1.1.12.297|4| +1.3.6.1.2.1.47.1.1.1.1.12.298|4| +1.3.6.1.2.1.47.1.1.1.1.12.302|4| +1.3.6.1.2.1.47.1.1.1.1.12.303|4| +1.3.6.1.2.1.47.1.1.1.1.12.304|4| +1.3.6.1.2.1.47.1.1.1.1.12.305|4| +1.3.6.1.2.1.47.1.1.1.1.12.306|4| +1.3.6.1.2.1.47.1.1.1.1.12.440|4| +1.3.6.1.2.1.47.1.1.1.1.12.441|4| +1.3.6.1.2.1.47.1.1.1.1.12.442|4| +1.3.6.1.2.1.47.1.1.1.1.12.550|4| +1.3.6.1.2.1.47.1.1.1.1.12.551|4| +1.3.6.1.2.1.47.1.1.1.1.12.570|4| +1.3.6.1.2.1.47.1.1.1.1.12.600|4| +1.3.6.1.2.1.47.1.1.1.1.12.625|4| +1.3.6.1.2.1.47.1.1.1.1.12.628|4| +1.3.6.1.2.1.47.1.1.1.1.12.2401|4| +1.3.6.1.2.1.47.1.1.1.1.12.2601|4| +1.3.6.1.2.1.47.1.1.1.1.12.2602|4| +1.3.6.1.2.1.47.1.1.1.1.12.2603|4| +1.3.6.1.2.1.47.1.1.1.1.12.2604|4| +1.3.6.1.2.1.47.1.1.1.1.12.2605|4| +1.3.6.1.2.1.47.1.1.1.1.12.2606|4| +1.3.6.1.2.1.47.1.1.1.1.12.2607|4| +1.3.6.1.2.1.47.1.1.1.1.12.2608|4| +1.3.6.1.2.1.47.1.1.1.1.12.2609|4| +1.3.6.1.2.1.47.1.1.1.1.12.2610|4| +1.3.6.1.2.1.47.1.1.1.1.12.2611|4| +1.3.6.1.2.1.47.1.1.1.1.12.2612|4| +1.3.6.1.2.1.47.1.1.1.1.12.2613|4| +1.3.6.1.2.1.47.1.1.1.1.12.2614|4| +1.3.6.1.2.1.47.1.1.1.1.12.2615|4| +1.3.6.1.2.1.47.1.1.1.1.12.2616|4| +1.3.6.1.2.1.47.1.1.1.1.12.2617|4| +1.3.6.1.2.1.47.1.1.1.1.12.2618|4| +1.3.6.1.2.1.47.1.1.1.1.12.2619|4| +1.3.6.1.2.1.47.1.1.1.1.12.2620|4| +1.3.6.1.2.1.47.1.1.1.1.12.2621|4| +1.3.6.1.2.1.47.1.1.1.1.12.2622|4| +1.3.6.1.2.1.47.1.1.1.1.12.2623|4| +1.3.6.1.2.1.47.1.1.1.1.12.2624|4| +1.3.6.1.2.1.47.1.1.1.1.12.2625|4| +1.3.6.1.2.1.47.1.1.1.1.12.2626|4| +1.3.6.1.2.1.47.1.1.1.1.12.2627|4| +1.3.6.1.2.1.47.1.1.1.1.12.2628|4| +1.3.6.1.2.1.47.1.1.1.1.12.2629|4| +1.3.6.1.2.1.47.1.1.1.1.12.2630|4| +1.3.6.1.2.1.47.1.1.1.1.12.2631|4| +1.3.6.1.2.1.47.1.1.1.1.12.8193|4|CISCO SYSTEMS, INC +1.3.6.1.2.1.47.1.1.1.1.12.8194|4| +1.3.6.1.2.1.47.1.1.1.1.12.8195|4| +1.3.6.1.2.1.47.1.1.1.1.12.8196|4| +1.3.6.1.2.1.47.1.1.1.1.12.8198|4|CISCO SYSTEMS, INC +1.3.6.1.2.1.47.1.1.1.1.12.8199|4|CISCO SYSTEMS, INC +1.3.6.1.2.1.47.1.1.1.1.12.8203|4| +1.3.6.1.2.1.47.1.1.1.1.12.8204|4| +1.3.6.1.2.1.47.1.1.1.1.12.8206|4| +1.3.6.1.2.1.47.1.1.1.1.12.8222|4| +1.3.6.1.2.1.47.1.1.1.1.12.8223|4| +1.3.6.1.2.1.47.1.1.1.1.12.8227|4| +1.3.6.1.2.1.47.1.1.1.1.12.8287|4| +1.3.6.1.2.1.47.1.1.1.1.12.8288|4| +1.3.6.1.2.1.47.1.1.1.1.12.8289|4| +1.3.6.1.2.1.47.1.1.1.1.12.8357|4| +1.3.6.1.2.1.47.1.1.1.1.12.8359|4| +1.3.6.1.2.1.47.1.1.1.1.12.8360|4| +1.3.6.1.2.1.47.1.1.1.1.12.8492|4| +1.3.6.1.2.1.47.1.1.1.1.12.8493|4| +1.3.6.1.2.1.47.1.1.1.1.12.8494|4| +1.3.6.1.2.1.47.1.1.1.1.12.8495|4| +1.3.6.1.2.1.47.1.1.1.1.12.8496|4| +1.3.6.1.2.1.47.1.1.1.1.12.8497|4| +1.3.6.1.2.1.47.1.1.1.1.12.8498|4| +1.3.6.1.2.1.47.1.1.1.1.12.8499|4| +1.3.6.1.2.1.47.1.1.1.1.12.8522|4| +1.3.6.1.2.1.47.1.1.1.1.12.8592|4| +1.3.6.1.2.1.47.1.1.1.1.12.8593|4| +1.3.6.1.2.1.47.1.1.1.1.12.8594|4| +1.3.6.1.2.1.47.1.1.1.1.12.8595|4| +1.3.6.1.2.1.47.1.1.1.1.12.8596|4| +1.3.6.1.2.1.47.1.1.1.1.12.8597|4| +1.3.6.1.2.1.47.1.1.1.1.12.8599|4| +1.3.6.1.2.1.47.1.1.1.1.12.8600|4| +1.3.6.1.2.1.47.1.1.1.1.12.8601|4| +1.3.6.1.2.1.47.1.1.1.1.12.8602|4| +1.3.6.1.2.1.47.1.1.1.1.12.8603|4| +1.3.6.1.2.1.47.1.1.1.1.12.8604|4| +1.3.6.1.2.1.47.1.1.1.1.12.8762|4| +1.3.6.1.2.1.47.1.1.1.1.12.8793|4| +1.3.6.1.2.1.47.1.1.1.1.12.8794|4| +1.3.6.1.2.1.47.1.1.1.1.12.8795|4| +1.3.6.1.2.1.47.1.1.1.1.12.8796|4| +1.3.6.1.2.1.47.1.1.1.1.12.8797|4| +1.3.6.1.2.1.47.1.1.1.1.12.8798|4| +1.3.6.1.2.1.47.1.1.1.1.12.8799|4| +1.3.6.1.2.1.47.1.1.1.1.12.8800|4| +1.3.6.1.2.1.47.1.1.1.1.12.8801|4| +1.3.6.1.2.1.47.1.1.1.1.12.8802|4| +1.3.6.1.2.1.47.1.1.1.1.12.8803|4| +1.3.6.1.2.1.47.1.1.1.1.12.8804|4| +1.3.6.1.2.1.47.1.1.1.1.12.8805|4| +1.3.6.1.2.1.47.1.1.1.1.12.8806|4| +1.3.6.1.2.1.47.1.1.1.1.12.8807|4| +1.3.6.1.2.1.47.1.1.1.1.12.8808|4| +1.3.6.1.2.1.47.1.1.1.1.12.8809|4| +1.3.6.1.2.1.47.1.1.1.1.12.8810|4| +1.3.6.1.2.1.47.1.1.1.1.12.8811|4| +1.3.6.1.2.1.47.1.1.1.1.12.8812|4| +1.3.6.1.2.1.47.1.1.1.1.12.8813|4| +1.3.6.1.2.1.47.1.1.1.1.12.8814|4| +1.3.6.1.2.1.47.1.1.1.1.12.8815|4| +1.3.6.1.2.1.47.1.1.1.1.12.8816|4| +1.3.6.1.2.1.47.1.1.1.1.12.8817|4| +1.3.6.1.2.1.47.1.1.1.1.12.8818|4| +1.3.6.1.2.1.47.1.1.1.1.12.8819|4| +1.3.6.1.2.1.47.1.1.1.1.12.8820|4| +1.3.6.1.2.1.47.1.1.1.1.12.8821|4| +1.3.6.1.2.1.47.1.1.1.1.12.8822|4| +1.3.6.1.2.1.47.1.1.1.1.12.8823|4| +1.3.6.1.2.1.47.1.1.1.1.12.8824|4| +1.3.6.1.2.1.47.1.1.1.1.12.8825|4| +1.3.6.1.2.1.47.1.1.1.1.12.8826|4| +1.3.6.1.2.1.47.1.1.1.1.12.8827|4| +1.3.6.1.2.1.47.1.1.1.1.12.8828|4| +1.3.6.1.2.1.47.1.1.1.1.12.8829|4| +1.3.6.1.2.1.47.1.1.1.1.12.8830|4| +1.3.6.1.2.1.47.1.1.1.1.12.8831|4| +1.3.6.1.2.1.47.1.1.1.1.12.8832|4| +1.3.6.1.2.1.47.1.1.1.1.12.8833|4| +1.3.6.1.2.1.47.1.1.1.1.12.8834|4| +1.3.6.1.2.1.47.1.1.1.1.12.8851|4| +1.3.6.1.2.1.47.1.1.1.1.12.8852|4| +1.3.6.1.2.1.47.1.1.1.1.12.8853|4| +1.3.6.1.2.1.47.1.1.1.1.12.8854|4| +1.3.6.1.2.1.47.1.1.1.1.12.8855|4| +1.3.6.1.2.1.47.1.1.1.1.12.8856|4| +1.3.6.1.2.1.47.1.1.1.1.12.8857|4| +1.3.6.1.2.1.47.1.1.1.1.12.8858|4| +1.3.6.1.2.1.47.1.1.1.1.12.8859|4| +1.3.6.1.2.1.47.1.1.1.1.12.8860|4| +1.3.6.1.2.1.47.1.1.1.1.12.8861|4| +1.3.6.1.2.1.47.1.1.1.1.12.8862|4| +1.3.6.1.2.1.47.1.1.1.1.12.8863|4| +1.3.6.1.2.1.47.1.1.1.1.12.8864|4| +1.3.6.1.2.1.47.1.1.1.1.12.8865|4| +1.3.6.1.2.1.47.1.1.1.1.12.8866|4| +1.3.6.1.2.1.47.1.1.1.1.12.8867|4| +1.3.6.1.2.1.47.1.1.1.1.12.8868|4| +1.3.6.1.2.1.47.1.1.1.1.12.8869|4| +1.3.6.1.2.1.47.1.1.1.1.12.8870|4| +1.3.6.1.2.1.47.1.1.1.1.12.8871|4| +1.3.6.1.2.1.47.1.1.1.1.12.8872|4| +1.3.6.1.2.1.47.1.1.1.1.12.8873|4| +1.3.6.1.2.1.47.1.1.1.1.12.8874|4| +1.3.6.1.2.1.47.1.1.1.1.12.8875|4| +1.3.6.1.2.1.47.1.1.1.1.12.8876|4| +1.3.6.1.2.1.47.1.1.1.1.12.8927|4| +1.3.6.1.2.1.47.1.1.1.1.12.8928|4| +1.3.6.1.2.1.47.1.1.1.1.12.8929|4| +1.3.6.1.2.1.47.1.1.1.1.12.8930|4| +1.3.6.1.2.1.47.1.1.1.1.12.8931|4| +1.3.6.1.2.1.47.1.1.1.1.12.8932|4| +1.3.6.1.2.1.47.1.1.1.1.12.8933|4| +1.3.6.1.2.1.47.1.1.1.1.12.8934|4| +1.3.6.1.2.1.47.1.1.1.1.12.8943|4| +1.3.6.1.2.1.47.1.1.1.1.12.8944|4| +1.3.6.1.2.1.47.1.1.1.1.12.8945|4| +1.3.6.1.2.1.47.1.1.1.1.12.8946|4| +1.3.6.1.2.1.47.1.1.1.1.12.8947|4| +1.3.6.1.2.1.47.1.1.1.1.12.8948|4| +1.3.6.1.2.1.47.1.1.1.1.12.8949|4| +1.3.6.1.2.1.47.1.1.1.1.12.8950|4| +1.3.6.1.2.1.47.1.1.1.1.12.8993|4| +1.3.6.1.2.1.47.1.1.1.1.12.8994|4| +1.3.6.1.2.1.47.1.1.1.1.12.8995|4| +1.3.6.1.2.1.47.1.1.1.1.12.8996|4| +1.3.6.1.2.1.47.1.1.1.1.12.8997|4| +1.3.6.1.2.1.47.1.1.1.1.12.8998|4| +1.3.6.1.2.1.47.1.1.1.1.12.8999|4| +1.3.6.1.2.1.47.1.1.1.1.12.9000|4| +1.3.6.1.2.1.47.1.1.1.1.12.9001|4| +1.3.6.1.2.1.47.1.1.1.1.12.9002|4| +1.3.6.1.2.1.47.1.1.1.1.12.9003|4| +1.3.6.1.2.1.47.1.1.1.1.12.9004|4| +1.3.6.1.2.1.47.1.1.1.1.12.9005|4| +1.3.6.1.2.1.47.1.1.1.1.12.9006|4| +1.3.6.1.2.1.47.1.1.1.1.12.9007|4| +1.3.6.1.2.1.47.1.1.1.1.12.9008|4| +1.3.6.1.2.1.47.1.1.1.1.12.9009|4| +1.3.6.1.2.1.47.1.1.1.1.12.9010|4| +1.3.6.1.2.1.47.1.1.1.1.12.9011|4| +1.3.6.1.2.1.47.1.1.1.1.12.9012|4| +1.3.6.1.2.1.47.1.1.1.1.12.9013|4| +1.3.6.1.2.1.47.1.1.1.1.12.9014|4| +1.3.6.1.2.1.47.1.1.1.1.12.9015|4| +1.3.6.1.2.1.47.1.1.1.1.12.9016|4| +1.3.6.1.2.1.47.1.1.1.1.12.9017|4| +1.3.6.1.2.1.47.1.1.1.1.12.9018|4| +1.3.6.1.2.1.47.1.1.1.1.12.9019|4| +1.3.6.1.2.1.47.1.1.1.1.12.9020|4| +1.3.6.1.2.1.47.1.1.1.1.12.9021|4| +1.3.6.1.2.1.47.1.1.1.1.12.9022|4| +1.3.6.1.2.1.47.1.1.1.1.12.9023|4| +1.3.6.1.2.1.47.1.1.1.1.12.9024|4| +1.3.6.1.2.1.47.1.1.1.1.12.9025|4| +1.3.6.1.2.1.47.1.1.1.1.12.9026|4| +1.3.6.1.2.1.47.1.1.1.1.12.9027|4| +1.3.6.1.2.1.47.1.1.1.1.12.9028|4| +1.3.6.1.2.1.47.1.1.1.1.12.9029|4| +1.3.6.1.2.1.47.1.1.1.1.12.9030|4| +1.3.6.1.2.1.47.1.1.1.1.12.9031|4| +1.3.6.1.2.1.47.1.1.1.1.12.9032|4| +1.3.6.1.2.1.47.1.1.1.1.12.9033|4| +1.3.6.1.2.1.47.1.1.1.1.12.9034|4| +1.3.6.1.2.1.47.1.1.1.1.12.9061|4| +1.3.6.1.2.1.47.1.1.1.1.12.9062|4| +1.3.6.1.2.1.47.1.1.1.1.12.9063|4| +1.3.6.1.2.1.47.1.1.1.1.12.9064|4| +1.3.6.1.2.1.47.1.1.1.1.12.9065|4| +1.3.6.1.2.1.47.1.1.1.1.12.9066|4| +1.3.6.1.2.1.47.1.1.1.1.12.9067|4| +1.3.6.1.2.1.47.1.1.1.1.12.9068|4| +1.3.6.1.2.1.47.1.1.1.1.12.9069|4| +1.3.6.1.2.1.47.1.1.1.1.12.9070|4| +1.3.6.1.2.1.47.1.1.1.1.12.9071|4| +1.3.6.1.2.1.47.1.1.1.1.12.9072|4| +1.3.6.1.2.1.47.1.1.1.1.12.9075|4| +1.3.6.1.2.1.47.1.1.1.1.12.9076|4| +1.3.6.1.2.1.47.1.1.1.1.12.9077|4| +1.3.6.1.2.1.47.1.1.1.1.12.9078|4| +1.3.6.1.2.1.47.1.1.1.1.12.9079|4| +1.3.6.1.2.1.47.1.1.1.1.12.9080|4| +1.3.6.1.2.1.47.1.1.1.1.12.9081|4| +1.3.6.1.2.1.47.1.1.1.1.12.9082|4| +1.3.6.1.2.1.47.1.1.1.1.12.9083|4| +1.3.6.1.2.1.47.1.1.1.1.12.9084|4| +1.3.6.1.2.1.47.1.1.1.1.12.9085|4| +1.3.6.1.2.1.47.1.1.1.1.12.9086|4| +1.3.6.1.2.1.47.1.1.1.1.12.10593|4| +1.3.6.1.2.1.47.1.1.1.1.12.10793|4| +1.3.6.1.2.1.47.1.1.1.1.12.10794|4| +1.3.6.1.2.1.47.1.1.1.1.12.10795|4| +1.3.6.1.2.1.47.1.1.1.1.12.10796|4| +1.3.6.1.2.1.47.1.1.1.1.12.10797|4| +1.3.6.1.2.1.47.1.1.1.1.12.10798|4| +1.3.6.1.2.1.47.1.1.1.1.12.10799|4| +1.3.6.1.2.1.47.1.1.1.1.12.10800|4| +1.3.6.1.2.1.47.1.1.1.1.12.10801|4| +1.3.6.1.2.1.47.1.1.1.1.12.10802|4| +1.3.6.1.2.1.47.1.1.1.1.12.10803|4| +1.3.6.1.2.1.47.1.1.1.1.12.10804|4| +1.3.6.1.2.1.47.1.1.1.1.12.10805|4| +1.3.6.1.2.1.47.1.1.1.1.12.10806|4| +1.3.6.1.2.1.47.1.1.1.1.12.10807|4| +1.3.6.1.2.1.47.1.1.1.1.12.10808|4| +1.3.6.1.2.1.47.1.1.1.1.12.10809|4| +1.3.6.1.2.1.47.1.1.1.1.12.10810|4| +1.3.6.1.2.1.47.1.1.1.1.12.10811|4| +1.3.6.1.2.1.47.1.1.1.1.12.10812|4| +1.3.6.1.2.1.47.1.1.1.1.12.10813|4| +1.3.6.1.2.1.47.1.1.1.1.12.10814|4| +1.3.6.1.2.1.47.1.1.1.1.12.10815|4| +1.3.6.1.2.1.47.1.1.1.1.12.10816|4| +1.3.6.1.2.1.47.1.1.1.1.12.10817|4| +1.3.6.1.2.1.47.1.1.1.1.12.10818|4| +1.3.6.1.2.1.47.1.1.1.1.12.10819|4| +1.3.6.1.2.1.47.1.1.1.1.12.10820|4| +1.3.6.1.2.1.47.1.1.1.1.12.10821|4| +1.3.6.1.2.1.47.1.1.1.1.12.10822|4| +1.3.6.1.2.1.47.1.1.1.1.12.10823|4| +1.3.6.1.2.1.47.1.1.1.1.12.10824|4| +1.3.6.1.2.1.47.1.1.1.1.12.10825|4| +1.3.6.1.2.1.47.1.1.1.1.12.10826|4| +1.3.6.1.2.1.47.1.1.1.1.12.10827|4| +1.3.6.1.2.1.47.1.1.1.1.12.10828|4| +1.3.6.1.2.1.47.1.1.1.1.12.10829|4| +1.3.6.1.2.1.47.1.1.1.1.12.10830|4| +1.3.6.1.2.1.47.1.1.1.1.12.10831|4| +1.3.6.1.2.1.47.1.1.1.1.12.10832|4| +1.3.6.1.2.1.47.1.1.1.1.12.10833|4| +1.3.6.1.2.1.47.1.1.1.1.12.10834|4| +1.3.6.1.2.1.47.1.1.1.1.12.10835|4| +1.3.6.1.2.1.47.1.1.1.1.12.10836|4| +1.3.6.1.2.1.47.1.1.1.1.12.10837|4| +1.3.6.1.2.1.47.1.1.1.1.12.10838|4| +1.3.6.1.2.1.47.1.1.1.1.12.10839|4| +1.3.6.1.2.1.47.1.1.1.1.12.10840|4| +1.3.6.1.2.1.47.1.1.1.1.12.10841|4| +1.3.6.1.2.1.47.1.1.1.1.12.10842|4| +1.3.6.1.2.1.47.1.1.1.1.12.10843|4| +1.3.6.1.2.1.47.1.1.1.1.12.10844|4| +1.3.6.1.2.1.47.1.1.1.1.12.10845|4| +1.3.6.1.2.1.47.1.1.1.1.12.10846|4| +1.3.6.1.2.1.47.1.1.1.1.12.10847|4| +1.3.6.1.2.1.47.1.1.1.1.12.10848|4| +1.3.6.1.2.1.47.1.1.1.1.12.10849|4| +1.3.6.1.2.1.47.1.1.1.1.12.10850|4| +1.3.6.1.2.1.47.1.1.1.1.12.10851|4| +1.3.6.1.2.1.47.1.1.1.1.12.10852|4| +1.3.6.1.2.1.47.1.1.1.1.12.10853|4| +1.3.6.1.2.1.47.1.1.1.1.12.10854|4| +1.3.6.1.2.1.47.1.1.1.1.12.10855|4| +1.3.6.1.2.1.47.1.1.1.1.12.10856|4| +1.3.6.1.2.1.47.1.1.1.1.12.10857|4| +1.3.6.1.2.1.47.1.1.1.1.12.10858|4| +1.3.6.1.2.1.47.1.1.1.1.12.40961|4|CISCO SYSTEMS, INC +1.3.6.1.2.1.47.1.1.1.1.12.40967|4|CISCO SYSTEMS, INC +1.3.6.1.2.1.47.1.1.1.1.12.41810|4| +1.3.6.1.2.1.47.1.1.1.1.12.41910|4| +1.3.6.1.2.1.47.1.1.1.1.12.45057|4|CISCO SYSTEMS, INC +1.3.6.1.2.1.47.1.1.1.1.12.45063|4|CISCO SYSTEMS, INC +1.3.6.1.2.1.47.1.1.1.1.12.45906|4| +1.3.6.1.2.1.47.1.1.1.1.12.46006|4| +1.3.6.1.2.1.47.1.1.1.1.12.49153|4|CISCO SYSTEMS, INC +1.3.6.1.2.1.47.1.1.1.1.12.49159|4|CISCO SYSTEMS, INC +1.3.6.1.2.1.47.1.1.1.1.12.50002|4| +1.3.6.1.2.1.47.1.1.1.1.12.50102|4| +1.3.6.1.2.1.47.1.1.1.1.12.118785|4|CISCO SYSTEMS, INC +1.3.6.1.2.1.47.1.1.1.1.12.118790|4|CISCO SYSTEMS, INC +1.3.6.1.2.1.47.1.1.1.1.12.118894|4| +1.3.6.1.2.1.47.1.1.1.1.12.118895|4| +1.3.6.1.2.1.47.1.1.1.1.12.2375681|4|CISCO SYSTEMS, INC +1.3.6.1.2.1.47.1.1.1.1.12.2375682|4| +1.3.6.1.2.1.47.1.1.1.1.12.2375687|4|CISCO SYSTEMS, INC +1.3.6.1.2.1.47.1.1.1.1.12.2375930|4| +1.3.6.1.2.1.47.1.1.1.1.12.2375931|4| +1.3.6.1.2.1.47.1.1.1.1.12.2375940|4| +1.3.6.1.2.1.47.1.1.1.1.12.2375941|4| +1.3.6.1.2.1.47.1.1.1.1.12.2375950|4| +1.3.6.1.2.1.47.1.1.1.1.12.2375951|4| +1.3.6.1.2.1.47.1.1.1.1.12.2375970|4| +1.3.6.1.2.1.47.1.1.1.1.12.2375971|4| +1.3.6.1.2.1.47.1.1.1.1.12.2375972|4| +1.3.6.1.2.1.47.1.1.1.1.12.2376530|4| +1.3.6.1.2.1.47.1.1.1.1.12.2376531|4| +1.3.6.1.2.1.47.1.1.1.1.12.2376630|4| +1.3.6.1.2.1.47.1.1.1.1.12.2376631|4| +1.3.6.1.2.1.47.1.1.1.1.12.2379777|4|CISCO SYSTEMS, INC +1.3.6.1.2.1.47.1.1.1.1.12.2379778|4| +1.3.6.1.2.1.47.1.1.1.1.12.2379783|4|CISCO SYSTEMS, INC +1.3.6.1.2.1.47.1.1.1.1.12.2380026|4| +1.3.6.1.2.1.47.1.1.1.1.12.2380027|4| +1.3.6.1.2.1.47.1.1.1.1.12.2380036|4| +1.3.6.1.2.1.47.1.1.1.1.12.2380037|4| +1.3.6.1.2.1.47.1.1.1.1.12.2380046|4| +1.3.6.1.2.1.47.1.1.1.1.12.2380047|4| +1.3.6.1.2.1.47.1.1.1.1.12.2380066|4| +1.3.6.1.2.1.47.1.1.1.1.12.2380067|4| +1.3.6.1.2.1.47.1.1.1.1.12.2380068|4| +1.3.6.1.2.1.47.1.1.1.1.12.2380626|4| +1.3.6.1.2.1.47.1.1.1.1.12.2380627|4| +1.3.6.1.2.1.47.1.1.1.1.12.2380726|4| +1.3.6.1.2.1.47.1.1.1.1.12.2380727|4| +1.3.6.1.2.1.47.1.1.1.1.12.2990081|4|CISCO-FINISAR +1.3.6.1.2.1.47.1.1.1.1.12.2990087|4|CISCO-FINISAR +1.3.6.1.2.1.47.1.1.1.1.12.2990320|4| +1.3.6.1.2.1.47.1.1.1.1.12.2990330|4| +1.3.6.1.2.1.47.1.1.1.1.12.2990350|4| +1.3.6.1.2.1.47.1.1.1.1.12.2990362|4| +1.3.6.1.2.1.47.1.1.1.1.12.2990470|4| +1.3.6.1.2.1.47.1.1.1.1.12.2994177|4|CISCO-FINISAR +1.3.6.1.2.1.47.1.1.1.1.12.2994183|4|CISCO-FINISAR +1.3.6.1.2.1.47.1.1.1.1.12.2994416|4| +1.3.6.1.2.1.47.1.1.1.1.12.2994426|4| +1.3.6.1.2.1.47.1.1.1.1.12.2994446|4| +1.3.6.1.2.1.47.1.1.1.1.12.2994458|4| +1.3.6.1.2.1.47.1.1.1.1.12.2994566|4| +1.3.6.1.2.1.47.1.1.1.1.12.3014657|4|CISCO-FINISAR +1.3.6.1.2.1.47.1.1.1.1.12.3014663|4|CISCO-FINISAR +1.3.6.1.2.1.47.1.1.1.1.12.3014896|4| +1.3.6.1.2.1.47.1.1.1.1.12.3014906|4| +1.3.6.1.2.1.47.1.1.1.1.12.3014926|4| +1.3.6.1.2.1.47.1.1.1.1.12.3014938|4| +1.3.6.1.2.1.47.1.1.1.1.12.3015046|4| +1.3.6.1.2.1.47.1.1.1.1.12.3072001|4|CISCO-FINISAR +1.3.6.1.2.1.47.1.1.1.1.12.3072007|4|CISCO-FINISAR +1.3.6.1.2.1.47.1.1.1.1.12.3072240|4| +1.3.6.1.2.1.47.1.1.1.1.12.3072250|4| +1.3.6.1.2.1.47.1.1.1.1.12.3072270|4| +1.3.6.1.2.1.47.1.1.1.1.12.3072282|4| +1.3.6.1.2.1.47.1.1.1.1.12.3072390|4| +1.3.6.1.2.1.47.1.1.1.1.12.8384513|4|CISCO SYSTEMS, INC +1.3.6.1.2.1.47.1.1.1.1.12.8384518|4|CISCO SYSTEMS, INC +1.3.6.1.2.1.47.1.1.1.1.12.8384527|4| +1.3.6.1.2.1.47.1.1.1.1.12.8384552|4| +1.3.6.1.2.1.47.1.1.1.1.12.8384597|4| +1.3.6.1.2.1.47.1.1.1.1.12.8384598|4| +1.3.6.1.2.1.47.1.1.1.1.12.8384599|4| +1.3.6.1.2.1.47.1.1.1.1.12.8384602|4| +1.3.6.1.2.1.47.1.1.1.1.12.8384612|4| +1.3.6.1.2.1.47.1.1.1.1.13.1|4|ASR-9901-RP +1.3.6.1.2.1.47.1.1.1.1.13.2|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.3|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.4|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.7|4|ASR-9901-RP +1.3.6.1.2.1.47.1.1.1.1.13.11|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.12|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.13|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.18|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.26|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.30|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.95|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.96|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.97|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.103|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.104|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.105|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.106|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.108|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.109|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.111|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.112|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.113|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.134|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.167|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.168|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.169|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.178|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.179|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.182|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.237|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.255|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.290|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.293|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.296|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.297|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.298|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.302|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.303|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.304|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.305|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.306|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.440|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.441|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.442|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.550|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.551|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.570|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.600|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.625|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.628|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2401|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2601|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2602|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2603|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2604|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2605|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2606|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2607|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2608|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2609|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2610|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2611|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2612|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2613|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2614|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2615|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2616|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2617|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2618|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2619|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2620|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2621|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2622|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2623|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2624|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2625|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2626|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2627|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2628|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2629|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2630|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2631|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8193|4|ASR-9901-LC +1.3.6.1.2.1.47.1.1.1.1.13.8194|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8195|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8196|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8198|4|ASR-9901-LC +1.3.6.1.2.1.47.1.1.1.1.13.8199|4| +1.3.6.1.2.1.47.1.1.1.1.13.8203|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8204|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8206|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8222|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8223|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8227|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8287|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8288|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8289|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8357|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8359|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8360|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8492|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8493|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8494|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8495|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8496|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8497|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8498|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8499|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8522|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8592|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8593|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8594|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8595|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8596|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8597|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8599|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8600|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8601|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8602|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8603|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8604|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8762|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8793|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8794|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8795|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8796|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8797|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8798|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8799|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8800|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8801|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8802|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8803|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8804|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8805|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8806|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8807|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8808|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8809|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8810|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8811|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8812|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8813|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8814|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8815|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8816|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8817|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8818|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8819|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8820|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8821|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8822|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8823|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8824|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8825|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8826|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8827|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8828|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8829|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8830|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8831|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8832|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8833|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8834|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8851|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8852|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8853|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8854|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8855|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8856|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8857|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8858|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8859|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8860|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8861|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8862|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8863|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8864|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8865|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8866|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8867|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8868|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8869|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8870|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8871|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8872|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8873|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8874|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8875|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8876|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8927|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8928|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8929|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8930|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8931|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8932|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8933|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8934|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8943|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8944|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8945|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8946|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8947|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8948|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8949|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8950|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8993|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8994|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8995|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8996|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8997|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8998|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8999|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9000|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9001|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9002|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9003|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9004|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9005|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9006|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9007|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9008|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9009|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9010|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9011|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9012|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9013|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9014|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9015|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9016|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9017|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9018|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9019|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9020|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9021|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9022|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9023|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9024|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9025|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9026|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9027|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9028|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9029|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9030|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9031|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9032|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9033|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9034|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9061|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9062|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9063|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9064|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9065|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9066|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9067|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9068|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9069|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9070|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9071|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9072|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9075|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9076|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9077|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9078|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9079|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9080|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9081|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9082|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9083|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9084|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9085|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.9086|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10593|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10793|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10794|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10795|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10796|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10797|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10798|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10799|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10800|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10801|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10802|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10803|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10804|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10805|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10806|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10807|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10808|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10809|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10810|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10811|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10812|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10813|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10814|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10815|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10816|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10817|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10818|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10819|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10820|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10821|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10822|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10823|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10824|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10825|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10826|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10827|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10828|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10829|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10830|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10831|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10832|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10833|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10834|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10835|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10836|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10837|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10838|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10839|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10840|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10841|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10842|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10843|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10844|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10845|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10846|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10847|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10848|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10849|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10850|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10851|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10852|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10853|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10854|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10855|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10856|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10857|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.10858|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.40961|4|ASR-9901-FAN +1.3.6.1.2.1.47.1.1.1.1.13.40967|4|ASR-9901-FAN +1.3.6.1.2.1.47.1.1.1.1.13.41810|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.41910|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.45057|4|ASR-9901-FAN +1.3.6.1.2.1.47.1.1.1.1.13.45063|4|ASR-9901-FAN +1.3.6.1.2.1.47.1.1.1.1.13.45906|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.46006|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.49153|4|ASR-9901-FAN +1.3.6.1.2.1.47.1.1.1.1.13.49159|4|ASR-9901-FAN +1.3.6.1.2.1.47.1.1.1.1.13.50002|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.50102|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.118785|4|A9K-AC-PEM +1.3.6.1.2.1.47.1.1.1.1.13.118790|4|A9K-AC-PEM +1.3.6.1.2.1.47.1.1.1.1.13.118894|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.118895|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2375681|4|A9K-1600W-AC +1.3.6.1.2.1.47.1.1.1.1.13.2375682|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2375687|4|A9K-1600W-AC +1.3.6.1.2.1.47.1.1.1.1.13.2375930|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2375931|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2375940|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2375941|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2375950|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2375951|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2375970|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2375971|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2375972|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2376530|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2376531|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2376630|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2376631|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2379777|4|A9K-1600W-AC +1.3.6.1.2.1.47.1.1.1.1.13.2379778|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2379783|4|A9K-1600W-AC +1.3.6.1.2.1.47.1.1.1.1.13.2380026|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2380027|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2380036|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2380037|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2380046|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2380047|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2380066|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2380067|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2380068|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2380626|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2380627|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2380726|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2380727|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2990081|4|GLC-LH-SMD +1.3.6.1.2.1.47.1.1.1.1.13.2990087|4|GLC-LH-SMD +1.3.6.1.2.1.47.1.1.1.1.13.2990320|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2990330|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2990350|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2990362|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2990470|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2994177|4|SFP-GE-T +1.3.6.1.2.1.47.1.1.1.1.13.2994183|4|SFP-GE-T +1.3.6.1.2.1.47.1.1.1.1.13.2994416|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2994426|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2994446|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2994458|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.2994566|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.3014657|4|SFP-10G-LR +1.3.6.1.2.1.47.1.1.1.1.13.3014663|4|SFP-10G-LR +1.3.6.1.2.1.47.1.1.1.1.13.3014896|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.3014906|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.3014926|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.3014938|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.3015046|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.3072001|4|SFP-10G-LR +1.3.6.1.2.1.47.1.1.1.1.13.3072007|4|SFP-10G-LR +1.3.6.1.2.1.47.1.1.1.1.13.3072240|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.3072250|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.3072270|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.3072282|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.3072390|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8384513|4|ASR-9901 +1.3.6.1.2.1.47.1.1.1.1.13.8384518|4|ASR-9901 +1.3.6.1.2.1.47.1.1.1.1.13.8384527|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8384552|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8384597|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8384598|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8384599|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8384602|4|N/A +1.3.6.1.2.1.47.1.1.1.1.13.8384612|4|N/A +1.3.6.1.2.1.47.1.1.1.1.14.1|4| +1.3.6.1.2.1.47.1.1.1.1.14.2|4| +1.3.6.1.2.1.47.1.1.1.1.14.3|4| +1.3.6.1.2.1.47.1.1.1.1.14.4|4| +1.3.6.1.2.1.47.1.1.1.1.14.7|4| +1.3.6.1.2.1.47.1.1.1.1.14.11|4| +1.3.6.1.2.1.47.1.1.1.1.14.12|4| +1.3.6.1.2.1.47.1.1.1.1.14.13|4| +1.3.6.1.2.1.47.1.1.1.1.14.18|4| +1.3.6.1.2.1.47.1.1.1.1.14.26|4| +1.3.6.1.2.1.47.1.1.1.1.14.30|4| +1.3.6.1.2.1.47.1.1.1.1.14.95|4| +1.3.6.1.2.1.47.1.1.1.1.14.96|4| +1.3.6.1.2.1.47.1.1.1.1.14.97|4| +1.3.6.1.2.1.47.1.1.1.1.14.103|4| +1.3.6.1.2.1.47.1.1.1.1.14.104|4| +1.3.6.1.2.1.47.1.1.1.1.14.105|4| +1.3.6.1.2.1.47.1.1.1.1.14.106|4| +1.3.6.1.2.1.47.1.1.1.1.14.108|4| +1.3.6.1.2.1.47.1.1.1.1.14.109|4| +1.3.6.1.2.1.47.1.1.1.1.14.111|4| +1.3.6.1.2.1.47.1.1.1.1.14.112|4| +1.3.6.1.2.1.47.1.1.1.1.14.113|4| +1.3.6.1.2.1.47.1.1.1.1.14.134|4| +1.3.6.1.2.1.47.1.1.1.1.14.167|4| +1.3.6.1.2.1.47.1.1.1.1.14.168|4| +1.3.6.1.2.1.47.1.1.1.1.14.169|4| +1.3.6.1.2.1.47.1.1.1.1.14.178|4| +1.3.6.1.2.1.47.1.1.1.1.14.179|4| +1.3.6.1.2.1.47.1.1.1.1.14.182|4| +1.3.6.1.2.1.47.1.1.1.1.14.237|4| +1.3.6.1.2.1.47.1.1.1.1.14.255|4| +1.3.6.1.2.1.47.1.1.1.1.14.290|4| +1.3.6.1.2.1.47.1.1.1.1.14.293|4| +1.3.6.1.2.1.47.1.1.1.1.14.296|4| +1.3.6.1.2.1.47.1.1.1.1.14.297|4| +1.3.6.1.2.1.47.1.1.1.1.14.298|4| +1.3.6.1.2.1.47.1.1.1.1.14.302|4| +1.3.6.1.2.1.47.1.1.1.1.14.303|4| +1.3.6.1.2.1.47.1.1.1.1.14.304|4| +1.3.6.1.2.1.47.1.1.1.1.14.305|4| +1.3.6.1.2.1.47.1.1.1.1.14.306|4| +1.3.6.1.2.1.47.1.1.1.1.14.440|4| +1.3.6.1.2.1.47.1.1.1.1.14.441|4| +1.3.6.1.2.1.47.1.1.1.1.14.442|4| +1.3.6.1.2.1.47.1.1.1.1.14.550|4| +1.3.6.1.2.1.47.1.1.1.1.14.551|4| +1.3.6.1.2.1.47.1.1.1.1.14.570|4| +1.3.6.1.2.1.47.1.1.1.1.14.600|4| +1.3.6.1.2.1.47.1.1.1.1.14.625|4| +1.3.6.1.2.1.47.1.1.1.1.14.628|4| +1.3.6.1.2.1.47.1.1.1.1.14.2401|4| +1.3.6.1.2.1.47.1.1.1.1.14.2601|4| +1.3.6.1.2.1.47.1.1.1.1.14.2602|4| +1.3.6.1.2.1.47.1.1.1.1.14.2603|4| +1.3.6.1.2.1.47.1.1.1.1.14.2604|4| +1.3.6.1.2.1.47.1.1.1.1.14.2605|4| +1.3.6.1.2.1.47.1.1.1.1.14.2606|4| +1.3.6.1.2.1.47.1.1.1.1.14.2607|4| +1.3.6.1.2.1.47.1.1.1.1.14.2608|4| +1.3.6.1.2.1.47.1.1.1.1.14.2609|4| +1.3.6.1.2.1.47.1.1.1.1.14.2610|4| +1.3.6.1.2.1.47.1.1.1.1.14.2611|4| +1.3.6.1.2.1.47.1.1.1.1.14.2612|4| +1.3.6.1.2.1.47.1.1.1.1.14.2613|4| +1.3.6.1.2.1.47.1.1.1.1.14.2614|4| +1.3.6.1.2.1.47.1.1.1.1.14.2615|4| +1.3.6.1.2.1.47.1.1.1.1.14.2616|4| +1.3.6.1.2.1.47.1.1.1.1.14.2617|4| +1.3.6.1.2.1.47.1.1.1.1.14.2618|4| +1.3.6.1.2.1.47.1.1.1.1.14.2619|4| +1.3.6.1.2.1.47.1.1.1.1.14.2620|4| +1.3.6.1.2.1.47.1.1.1.1.14.2621|4| +1.3.6.1.2.1.47.1.1.1.1.14.2622|4| +1.3.6.1.2.1.47.1.1.1.1.14.2623|4| +1.3.6.1.2.1.47.1.1.1.1.14.2624|4| +1.3.6.1.2.1.47.1.1.1.1.14.2625|4| +1.3.6.1.2.1.47.1.1.1.1.14.2626|4| +1.3.6.1.2.1.47.1.1.1.1.14.2627|4| +1.3.6.1.2.1.47.1.1.1.1.14.2628|4| +1.3.6.1.2.1.47.1.1.1.1.14.2629|4| +1.3.6.1.2.1.47.1.1.1.1.14.2630|4| +1.3.6.1.2.1.47.1.1.1.1.14.2631|4| +1.3.6.1.2.1.47.1.1.1.1.14.8193|4| +1.3.6.1.2.1.47.1.1.1.1.14.8194|4| +1.3.6.1.2.1.47.1.1.1.1.14.8195|4| +1.3.6.1.2.1.47.1.1.1.1.14.8196|4| +1.3.6.1.2.1.47.1.1.1.1.14.8198|4| +1.3.6.1.2.1.47.1.1.1.1.14.8199|4| +1.3.6.1.2.1.47.1.1.1.1.14.8203|4| +1.3.6.1.2.1.47.1.1.1.1.14.8204|4| +1.3.6.1.2.1.47.1.1.1.1.14.8206|4| +1.3.6.1.2.1.47.1.1.1.1.14.8222|4| +1.3.6.1.2.1.47.1.1.1.1.14.8223|4| +1.3.6.1.2.1.47.1.1.1.1.14.8227|4| +1.3.6.1.2.1.47.1.1.1.1.14.8287|4| +1.3.6.1.2.1.47.1.1.1.1.14.8288|4| +1.3.6.1.2.1.47.1.1.1.1.14.8289|4| +1.3.6.1.2.1.47.1.1.1.1.14.8357|4| +1.3.6.1.2.1.47.1.1.1.1.14.8359|4| +1.3.6.1.2.1.47.1.1.1.1.14.8360|4| +1.3.6.1.2.1.47.1.1.1.1.14.8492|4| +1.3.6.1.2.1.47.1.1.1.1.14.8493|4| +1.3.6.1.2.1.47.1.1.1.1.14.8494|4| +1.3.6.1.2.1.47.1.1.1.1.14.8495|4| +1.3.6.1.2.1.47.1.1.1.1.14.8496|4| +1.3.6.1.2.1.47.1.1.1.1.14.8497|4| +1.3.6.1.2.1.47.1.1.1.1.14.8498|4| +1.3.6.1.2.1.47.1.1.1.1.14.8499|4| +1.3.6.1.2.1.47.1.1.1.1.14.8522|4| +1.3.6.1.2.1.47.1.1.1.1.14.8592|4| +1.3.6.1.2.1.47.1.1.1.1.14.8593|4| +1.3.6.1.2.1.47.1.1.1.1.14.8594|4| +1.3.6.1.2.1.47.1.1.1.1.14.8595|4| +1.3.6.1.2.1.47.1.1.1.1.14.8596|4| +1.3.6.1.2.1.47.1.1.1.1.14.8597|4| +1.3.6.1.2.1.47.1.1.1.1.14.8599|4| +1.3.6.1.2.1.47.1.1.1.1.14.8600|4| +1.3.6.1.2.1.47.1.1.1.1.14.8601|4| +1.3.6.1.2.1.47.1.1.1.1.14.8602|4| +1.3.6.1.2.1.47.1.1.1.1.14.8603|4| +1.3.6.1.2.1.47.1.1.1.1.14.8604|4| +1.3.6.1.2.1.47.1.1.1.1.14.8762|4| +1.3.6.1.2.1.47.1.1.1.1.14.8793|4| +1.3.6.1.2.1.47.1.1.1.1.14.8794|4| +1.3.6.1.2.1.47.1.1.1.1.14.8795|4| +1.3.6.1.2.1.47.1.1.1.1.14.8796|4| +1.3.6.1.2.1.47.1.1.1.1.14.8797|4| +1.3.6.1.2.1.47.1.1.1.1.14.8798|4| +1.3.6.1.2.1.47.1.1.1.1.14.8799|4| +1.3.6.1.2.1.47.1.1.1.1.14.8800|4| +1.3.6.1.2.1.47.1.1.1.1.14.8801|4| +1.3.6.1.2.1.47.1.1.1.1.14.8802|4| +1.3.6.1.2.1.47.1.1.1.1.14.8803|4| +1.3.6.1.2.1.47.1.1.1.1.14.8804|4| +1.3.6.1.2.1.47.1.1.1.1.14.8805|4| +1.3.6.1.2.1.47.1.1.1.1.14.8806|4| +1.3.6.1.2.1.47.1.1.1.1.14.8807|4| +1.3.6.1.2.1.47.1.1.1.1.14.8808|4| +1.3.6.1.2.1.47.1.1.1.1.14.8809|4| +1.3.6.1.2.1.47.1.1.1.1.14.8810|4| +1.3.6.1.2.1.47.1.1.1.1.14.8811|4| +1.3.6.1.2.1.47.1.1.1.1.14.8812|4| +1.3.6.1.2.1.47.1.1.1.1.14.8813|4| +1.3.6.1.2.1.47.1.1.1.1.14.8814|4| +1.3.6.1.2.1.47.1.1.1.1.14.8815|4| +1.3.6.1.2.1.47.1.1.1.1.14.8816|4| +1.3.6.1.2.1.47.1.1.1.1.14.8817|4| +1.3.6.1.2.1.47.1.1.1.1.14.8818|4| +1.3.6.1.2.1.47.1.1.1.1.14.8819|4| +1.3.6.1.2.1.47.1.1.1.1.14.8820|4| +1.3.6.1.2.1.47.1.1.1.1.14.8821|4| +1.3.6.1.2.1.47.1.1.1.1.14.8822|4| +1.3.6.1.2.1.47.1.1.1.1.14.8823|4| +1.3.6.1.2.1.47.1.1.1.1.14.8824|4| +1.3.6.1.2.1.47.1.1.1.1.14.8825|4| +1.3.6.1.2.1.47.1.1.1.1.14.8826|4| +1.3.6.1.2.1.47.1.1.1.1.14.8827|4| +1.3.6.1.2.1.47.1.1.1.1.14.8828|4| +1.3.6.1.2.1.47.1.1.1.1.14.8829|4| +1.3.6.1.2.1.47.1.1.1.1.14.8830|4| +1.3.6.1.2.1.47.1.1.1.1.14.8831|4| +1.3.6.1.2.1.47.1.1.1.1.14.8832|4| +1.3.6.1.2.1.47.1.1.1.1.14.8833|4| +1.3.6.1.2.1.47.1.1.1.1.14.8834|4| +1.3.6.1.2.1.47.1.1.1.1.14.8851|4| +1.3.6.1.2.1.47.1.1.1.1.14.8852|4| +1.3.6.1.2.1.47.1.1.1.1.14.8853|4| +1.3.6.1.2.1.47.1.1.1.1.14.8854|4| +1.3.6.1.2.1.47.1.1.1.1.14.8855|4| +1.3.6.1.2.1.47.1.1.1.1.14.8856|4| +1.3.6.1.2.1.47.1.1.1.1.14.8857|4| +1.3.6.1.2.1.47.1.1.1.1.14.8858|4| +1.3.6.1.2.1.47.1.1.1.1.14.8859|4| +1.3.6.1.2.1.47.1.1.1.1.14.8860|4| +1.3.6.1.2.1.47.1.1.1.1.14.8861|4| +1.3.6.1.2.1.47.1.1.1.1.14.8862|4| +1.3.6.1.2.1.47.1.1.1.1.14.8863|4| +1.3.6.1.2.1.47.1.1.1.1.14.8864|4| +1.3.6.1.2.1.47.1.1.1.1.14.8865|4| +1.3.6.1.2.1.47.1.1.1.1.14.8866|4| +1.3.6.1.2.1.47.1.1.1.1.14.8867|4| +1.3.6.1.2.1.47.1.1.1.1.14.8868|4| +1.3.6.1.2.1.47.1.1.1.1.14.8869|4| +1.3.6.1.2.1.47.1.1.1.1.14.8870|4| +1.3.6.1.2.1.47.1.1.1.1.14.8871|4| +1.3.6.1.2.1.47.1.1.1.1.14.8872|4| +1.3.6.1.2.1.47.1.1.1.1.14.8873|4| +1.3.6.1.2.1.47.1.1.1.1.14.8874|4| +1.3.6.1.2.1.47.1.1.1.1.14.8875|4| +1.3.6.1.2.1.47.1.1.1.1.14.8876|4| +1.3.6.1.2.1.47.1.1.1.1.14.8927|4| +1.3.6.1.2.1.47.1.1.1.1.14.8928|4| +1.3.6.1.2.1.47.1.1.1.1.14.8929|4| +1.3.6.1.2.1.47.1.1.1.1.14.8930|4| +1.3.6.1.2.1.47.1.1.1.1.14.8931|4| +1.3.6.1.2.1.47.1.1.1.1.14.8932|4| +1.3.6.1.2.1.47.1.1.1.1.14.8933|4| +1.3.6.1.2.1.47.1.1.1.1.14.8934|4| +1.3.6.1.2.1.47.1.1.1.1.14.8943|4| +1.3.6.1.2.1.47.1.1.1.1.14.8944|4| +1.3.6.1.2.1.47.1.1.1.1.14.8945|4| +1.3.6.1.2.1.47.1.1.1.1.14.8946|4| +1.3.6.1.2.1.47.1.1.1.1.14.8947|4| +1.3.6.1.2.1.47.1.1.1.1.14.8948|4| +1.3.6.1.2.1.47.1.1.1.1.14.8949|4| +1.3.6.1.2.1.47.1.1.1.1.14.8950|4| +1.3.6.1.2.1.47.1.1.1.1.14.8993|4| +1.3.6.1.2.1.47.1.1.1.1.14.8994|4| +1.3.6.1.2.1.47.1.1.1.1.14.8995|4| +1.3.6.1.2.1.47.1.1.1.1.14.8996|4| +1.3.6.1.2.1.47.1.1.1.1.14.8997|4| +1.3.6.1.2.1.47.1.1.1.1.14.8998|4| +1.3.6.1.2.1.47.1.1.1.1.14.8999|4| +1.3.6.1.2.1.47.1.1.1.1.14.9000|4| +1.3.6.1.2.1.47.1.1.1.1.14.9001|4| +1.3.6.1.2.1.47.1.1.1.1.14.9002|4| +1.3.6.1.2.1.47.1.1.1.1.14.9003|4| +1.3.6.1.2.1.47.1.1.1.1.14.9004|4| +1.3.6.1.2.1.47.1.1.1.1.14.9005|4| +1.3.6.1.2.1.47.1.1.1.1.14.9006|4| +1.3.6.1.2.1.47.1.1.1.1.14.9007|4| +1.3.6.1.2.1.47.1.1.1.1.14.9008|4| +1.3.6.1.2.1.47.1.1.1.1.14.9009|4| +1.3.6.1.2.1.47.1.1.1.1.14.9010|4| +1.3.6.1.2.1.47.1.1.1.1.14.9011|4| +1.3.6.1.2.1.47.1.1.1.1.14.9012|4| +1.3.6.1.2.1.47.1.1.1.1.14.9013|4| +1.3.6.1.2.1.47.1.1.1.1.14.9014|4| +1.3.6.1.2.1.47.1.1.1.1.14.9015|4| +1.3.6.1.2.1.47.1.1.1.1.14.9016|4| +1.3.6.1.2.1.47.1.1.1.1.14.9017|4| +1.3.6.1.2.1.47.1.1.1.1.14.9018|4| +1.3.6.1.2.1.47.1.1.1.1.14.9019|4| +1.3.6.1.2.1.47.1.1.1.1.14.9020|4| +1.3.6.1.2.1.47.1.1.1.1.14.9021|4| +1.3.6.1.2.1.47.1.1.1.1.14.9022|4| +1.3.6.1.2.1.47.1.1.1.1.14.9023|4| +1.3.6.1.2.1.47.1.1.1.1.14.9024|4| +1.3.6.1.2.1.47.1.1.1.1.14.9025|4| +1.3.6.1.2.1.47.1.1.1.1.14.9026|4| +1.3.6.1.2.1.47.1.1.1.1.14.9027|4| +1.3.6.1.2.1.47.1.1.1.1.14.9028|4| +1.3.6.1.2.1.47.1.1.1.1.14.9029|4| +1.3.6.1.2.1.47.1.1.1.1.14.9030|4| +1.3.6.1.2.1.47.1.1.1.1.14.9031|4| +1.3.6.1.2.1.47.1.1.1.1.14.9032|4| +1.3.6.1.2.1.47.1.1.1.1.14.9033|4| +1.3.6.1.2.1.47.1.1.1.1.14.9034|4| +1.3.6.1.2.1.47.1.1.1.1.14.9061|4| +1.3.6.1.2.1.47.1.1.1.1.14.9062|4| +1.3.6.1.2.1.47.1.1.1.1.14.9063|4| +1.3.6.1.2.1.47.1.1.1.1.14.9064|4| +1.3.6.1.2.1.47.1.1.1.1.14.9065|4| +1.3.6.1.2.1.47.1.1.1.1.14.9066|4| +1.3.6.1.2.1.47.1.1.1.1.14.9067|4| +1.3.6.1.2.1.47.1.1.1.1.14.9068|4| +1.3.6.1.2.1.47.1.1.1.1.14.9069|4| +1.3.6.1.2.1.47.1.1.1.1.14.9070|4| +1.3.6.1.2.1.47.1.1.1.1.14.9071|4| +1.3.6.1.2.1.47.1.1.1.1.14.9072|4| +1.3.6.1.2.1.47.1.1.1.1.14.9075|4| +1.3.6.1.2.1.47.1.1.1.1.14.9076|4| +1.3.6.1.2.1.47.1.1.1.1.14.9077|4| +1.3.6.1.2.1.47.1.1.1.1.14.9078|4| +1.3.6.1.2.1.47.1.1.1.1.14.9079|4| +1.3.6.1.2.1.47.1.1.1.1.14.9080|4| +1.3.6.1.2.1.47.1.1.1.1.14.9081|4| +1.3.6.1.2.1.47.1.1.1.1.14.9082|4| +1.3.6.1.2.1.47.1.1.1.1.14.9083|4| +1.3.6.1.2.1.47.1.1.1.1.14.9084|4| +1.3.6.1.2.1.47.1.1.1.1.14.9085|4| +1.3.6.1.2.1.47.1.1.1.1.14.9086|4| +1.3.6.1.2.1.47.1.1.1.1.14.10593|4| +1.3.6.1.2.1.47.1.1.1.1.14.10793|4| +1.3.6.1.2.1.47.1.1.1.1.14.10794|4| +1.3.6.1.2.1.47.1.1.1.1.14.10795|4| +1.3.6.1.2.1.47.1.1.1.1.14.10796|4| +1.3.6.1.2.1.47.1.1.1.1.14.10797|4| +1.3.6.1.2.1.47.1.1.1.1.14.10798|4| +1.3.6.1.2.1.47.1.1.1.1.14.10799|4| +1.3.6.1.2.1.47.1.1.1.1.14.10800|4| +1.3.6.1.2.1.47.1.1.1.1.14.10801|4| +1.3.6.1.2.1.47.1.1.1.1.14.10802|4| +1.3.6.1.2.1.47.1.1.1.1.14.10803|4| +1.3.6.1.2.1.47.1.1.1.1.14.10804|4| +1.3.6.1.2.1.47.1.1.1.1.14.10805|4| +1.3.6.1.2.1.47.1.1.1.1.14.10806|4| +1.3.6.1.2.1.47.1.1.1.1.14.10807|4| +1.3.6.1.2.1.47.1.1.1.1.14.10808|4| +1.3.6.1.2.1.47.1.1.1.1.14.10809|4| +1.3.6.1.2.1.47.1.1.1.1.14.10810|4| +1.3.6.1.2.1.47.1.1.1.1.14.10811|4| +1.3.6.1.2.1.47.1.1.1.1.14.10812|4| +1.3.6.1.2.1.47.1.1.1.1.14.10813|4| +1.3.6.1.2.1.47.1.1.1.1.14.10814|4| +1.3.6.1.2.1.47.1.1.1.1.14.10815|4| +1.3.6.1.2.1.47.1.1.1.1.14.10816|4| +1.3.6.1.2.1.47.1.1.1.1.14.10817|4| +1.3.6.1.2.1.47.1.1.1.1.14.10818|4| +1.3.6.1.2.1.47.1.1.1.1.14.10819|4| +1.3.6.1.2.1.47.1.1.1.1.14.10820|4| +1.3.6.1.2.1.47.1.1.1.1.14.10821|4| +1.3.6.1.2.1.47.1.1.1.1.14.10822|4| +1.3.6.1.2.1.47.1.1.1.1.14.10823|4| +1.3.6.1.2.1.47.1.1.1.1.14.10824|4| +1.3.6.1.2.1.47.1.1.1.1.14.10825|4| +1.3.6.1.2.1.47.1.1.1.1.14.10826|4| +1.3.6.1.2.1.47.1.1.1.1.14.10827|4| +1.3.6.1.2.1.47.1.1.1.1.14.10828|4| +1.3.6.1.2.1.47.1.1.1.1.14.10829|4| +1.3.6.1.2.1.47.1.1.1.1.14.10830|4| +1.3.6.1.2.1.47.1.1.1.1.14.10831|4| +1.3.6.1.2.1.47.1.1.1.1.14.10832|4| +1.3.6.1.2.1.47.1.1.1.1.14.10833|4| +1.3.6.1.2.1.47.1.1.1.1.14.10834|4| +1.3.6.1.2.1.47.1.1.1.1.14.10835|4| +1.3.6.1.2.1.47.1.1.1.1.14.10836|4| +1.3.6.1.2.1.47.1.1.1.1.14.10837|4| +1.3.6.1.2.1.47.1.1.1.1.14.10838|4| +1.3.6.1.2.1.47.1.1.1.1.14.10839|4| +1.3.6.1.2.1.47.1.1.1.1.14.10840|4| +1.3.6.1.2.1.47.1.1.1.1.14.10841|4| +1.3.6.1.2.1.47.1.1.1.1.14.10842|4| +1.3.6.1.2.1.47.1.1.1.1.14.10843|4| +1.3.6.1.2.1.47.1.1.1.1.14.10844|4| +1.3.6.1.2.1.47.1.1.1.1.14.10845|4| +1.3.6.1.2.1.47.1.1.1.1.14.10846|4| +1.3.6.1.2.1.47.1.1.1.1.14.10847|4| +1.3.6.1.2.1.47.1.1.1.1.14.10848|4| +1.3.6.1.2.1.47.1.1.1.1.14.10849|4| +1.3.6.1.2.1.47.1.1.1.1.14.10850|4| +1.3.6.1.2.1.47.1.1.1.1.14.10851|4| +1.3.6.1.2.1.47.1.1.1.1.14.10852|4| +1.3.6.1.2.1.47.1.1.1.1.14.10853|4| +1.3.6.1.2.1.47.1.1.1.1.14.10854|4| +1.3.6.1.2.1.47.1.1.1.1.14.10855|4| +1.3.6.1.2.1.47.1.1.1.1.14.10856|4| +1.3.6.1.2.1.47.1.1.1.1.14.10857|4| +1.3.6.1.2.1.47.1.1.1.1.14.10858|4| +1.3.6.1.2.1.47.1.1.1.1.14.40961|4| +1.3.6.1.2.1.47.1.1.1.1.14.40967|4| +1.3.6.1.2.1.47.1.1.1.1.14.41810|4| +1.3.6.1.2.1.47.1.1.1.1.14.41910|4| +1.3.6.1.2.1.47.1.1.1.1.14.45057|4| +1.3.6.1.2.1.47.1.1.1.1.14.45063|4| +1.3.6.1.2.1.47.1.1.1.1.14.45906|4| +1.3.6.1.2.1.47.1.1.1.1.14.46006|4| +1.3.6.1.2.1.47.1.1.1.1.14.49153|4| +1.3.6.1.2.1.47.1.1.1.1.14.49159|4| +1.3.6.1.2.1.47.1.1.1.1.14.50002|4| +1.3.6.1.2.1.47.1.1.1.1.14.50102|4| +1.3.6.1.2.1.47.1.1.1.1.14.118785|4| +1.3.6.1.2.1.47.1.1.1.1.14.118790|4| +1.3.6.1.2.1.47.1.1.1.1.14.118894|4| +1.3.6.1.2.1.47.1.1.1.1.14.118895|4| +1.3.6.1.2.1.47.1.1.1.1.14.2375681|4| +1.3.6.1.2.1.47.1.1.1.1.14.2375682|4| +1.3.6.1.2.1.47.1.1.1.1.14.2375687|4| +1.3.6.1.2.1.47.1.1.1.1.14.2375930|4| +1.3.6.1.2.1.47.1.1.1.1.14.2375931|4| +1.3.6.1.2.1.47.1.1.1.1.14.2375940|4| +1.3.6.1.2.1.47.1.1.1.1.14.2375941|4| +1.3.6.1.2.1.47.1.1.1.1.14.2375950|4| +1.3.6.1.2.1.47.1.1.1.1.14.2375951|4| +1.3.6.1.2.1.47.1.1.1.1.14.2375970|4| +1.3.6.1.2.1.47.1.1.1.1.14.2375971|4| +1.3.6.1.2.1.47.1.1.1.1.14.2375972|4| +1.3.6.1.2.1.47.1.1.1.1.14.2376530|4| +1.3.6.1.2.1.47.1.1.1.1.14.2376531|4| +1.3.6.1.2.1.47.1.1.1.1.14.2376630|4| +1.3.6.1.2.1.47.1.1.1.1.14.2376631|4| +1.3.6.1.2.1.47.1.1.1.1.14.2379777|4| +1.3.6.1.2.1.47.1.1.1.1.14.2379778|4| +1.3.6.1.2.1.47.1.1.1.1.14.2379783|4| +1.3.6.1.2.1.47.1.1.1.1.14.2380026|4| +1.3.6.1.2.1.47.1.1.1.1.14.2380027|4| +1.3.6.1.2.1.47.1.1.1.1.14.2380036|4| +1.3.6.1.2.1.47.1.1.1.1.14.2380037|4| +1.3.6.1.2.1.47.1.1.1.1.14.2380046|4| +1.3.6.1.2.1.47.1.1.1.1.14.2380047|4| +1.3.6.1.2.1.47.1.1.1.1.14.2380066|4| +1.3.6.1.2.1.47.1.1.1.1.14.2380067|4| +1.3.6.1.2.1.47.1.1.1.1.14.2380068|4| +1.3.6.1.2.1.47.1.1.1.1.14.2380626|4| +1.3.6.1.2.1.47.1.1.1.1.14.2380627|4| +1.3.6.1.2.1.47.1.1.1.1.14.2380726|4| +1.3.6.1.2.1.47.1.1.1.1.14.2380727|4| +1.3.6.1.2.1.47.1.1.1.1.14.2990081|4|N/A +1.3.6.1.2.1.47.1.1.1.1.14.2990087|4|N/A +1.3.6.1.2.1.47.1.1.1.1.14.2990320|4| +1.3.6.1.2.1.47.1.1.1.1.14.2990330|4| +1.3.6.1.2.1.47.1.1.1.1.14.2990350|4| +1.3.6.1.2.1.47.1.1.1.1.14.2990362|4| +1.3.6.1.2.1.47.1.1.1.1.14.2990470|4| +1.3.6.1.2.1.47.1.1.1.1.14.2994177|4|N/A +1.3.6.1.2.1.47.1.1.1.1.14.2994183|4|N/A +1.3.6.1.2.1.47.1.1.1.1.14.2994416|4| +1.3.6.1.2.1.47.1.1.1.1.14.2994426|4| +1.3.6.1.2.1.47.1.1.1.1.14.2994446|4| +1.3.6.1.2.1.47.1.1.1.1.14.2994458|4| +1.3.6.1.2.1.47.1.1.1.1.14.2994566|4| +1.3.6.1.2.1.47.1.1.1.1.14.3014657|4|N/A +1.3.6.1.2.1.47.1.1.1.1.14.3014663|4|N/A +1.3.6.1.2.1.47.1.1.1.1.14.3014896|4| +1.3.6.1.2.1.47.1.1.1.1.14.3014906|4| +1.3.6.1.2.1.47.1.1.1.1.14.3014926|4| +1.3.6.1.2.1.47.1.1.1.1.14.3014938|4| +1.3.6.1.2.1.47.1.1.1.1.14.3015046|4| +1.3.6.1.2.1.47.1.1.1.1.14.3072001|4|N/A +1.3.6.1.2.1.47.1.1.1.1.14.3072007|4|N/A +1.3.6.1.2.1.47.1.1.1.1.14.3072240|4| +1.3.6.1.2.1.47.1.1.1.1.14.3072250|4| +1.3.6.1.2.1.47.1.1.1.1.14.3072270|4| +1.3.6.1.2.1.47.1.1.1.1.14.3072282|4| +1.3.6.1.2.1.47.1.1.1.1.14.3072390|4| +1.3.6.1.2.1.47.1.1.1.1.14.8384513|4| +1.3.6.1.2.1.47.1.1.1.1.14.8384518|4| +1.3.6.1.2.1.47.1.1.1.1.14.8384527|4| +1.3.6.1.2.1.47.1.1.1.1.14.8384552|4| +1.3.6.1.2.1.47.1.1.1.1.14.8384597|4| +1.3.6.1.2.1.47.1.1.1.1.14.8384598|4| +1.3.6.1.2.1.47.1.1.1.1.14.8384599|4| +1.3.6.1.2.1.47.1.1.1.1.14.8384602|4| +1.3.6.1.2.1.47.1.1.1.1.14.8384612|4| +1.3.6.1.2.1.47.1.1.1.1.15.1|4| +1.3.6.1.2.1.47.1.1.1.1.15.2|4| +1.3.6.1.2.1.47.1.1.1.1.15.3|4| +1.3.6.1.2.1.47.1.1.1.1.15.4|4| +1.3.6.1.2.1.47.1.1.1.1.15.7|4| +1.3.6.1.2.1.47.1.1.1.1.15.11|4| +1.3.6.1.2.1.47.1.1.1.1.15.12|4| +1.3.6.1.2.1.47.1.1.1.1.15.13|4| +1.3.6.1.2.1.47.1.1.1.1.15.18|4| +1.3.6.1.2.1.47.1.1.1.1.15.26|4| +1.3.6.1.2.1.47.1.1.1.1.15.30|4| +1.3.6.1.2.1.47.1.1.1.1.15.95|4| +1.3.6.1.2.1.47.1.1.1.1.15.96|4| +1.3.6.1.2.1.47.1.1.1.1.15.97|4| +1.3.6.1.2.1.47.1.1.1.1.15.103|4| +1.3.6.1.2.1.47.1.1.1.1.15.104|4| +1.3.6.1.2.1.47.1.1.1.1.15.105|4| +1.3.6.1.2.1.47.1.1.1.1.15.106|4| +1.3.6.1.2.1.47.1.1.1.1.15.108|4| +1.3.6.1.2.1.47.1.1.1.1.15.109|4| +1.3.6.1.2.1.47.1.1.1.1.15.111|4| +1.3.6.1.2.1.47.1.1.1.1.15.112|4| +1.3.6.1.2.1.47.1.1.1.1.15.113|4| +1.3.6.1.2.1.47.1.1.1.1.15.134|4| +1.3.6.1.2.1.47.1.1.1.1.15.167|4| +1.3.6.1.2.1.47.1.1.1.1.15.168|4| +1.3.6.1.2.1.47.1.1.1.1.15.169|4| +1.3.6.1.2.1.47.1.1.1.1.15.178|4| +1.3.6.1.2.1.47.1.1.1.1.15.179|4| +1.3.6.1.2.1.47.1.1.1.1.15.182|4| +1.3.6.1.2.1.47.1.1.1.1.15.237|4| +1.3.6.1.2.1.47.1.1.1.1.15.255|4| +1.3.6.1.2.1.47.1.1.1.1.15.290|4| +1.3.6.1.2.1.47.1.1.1.1.15.293|4| +1.3.6.1.2.1.47.1.1.1.1.15.296|4| +1.3.6.1.2.1.47.1.1.1.1.15.297|4| +1.3.6.1.2.1.47.1.1.1.1.15.298|4| +1.3.6.1.2.1.47.1.1.1.1.15.302|4| +1.3.6.1.2.1.47.1.1.1.1.15.303|4| +1.3.6.1.2.1.47.1.1.1.1.15.304|4| +1.3.6.1.2.1.47.1.1.1.1.15.305|4| +1.3.6.1.2.1.47.1.1.1.1.15.306|4| +1.3.6.1.2.1.47.1.1.1.1.15.440|4| +1.3.6.1.2.1.47.1.1.1.1.15.441|4| +1.3.6.1.2.1.47.1.1.1.1.15.442|4| +1.3.6.1.2.1.47.1.1.1.1.15.550|4| +1.3.6.1.2.1.47.1.1.1.1.15.551|4| +1.3.6.1.2.1.47.1.1.1.1.15.570|4| +1.3.6.1.2.1.47.1.1.1.1.15.600|4| +1.3.6.1.2.1.47.1.1.1.1.15.625|4| +1.3.6.1.2.1.47.1.1.1.1.15.628|4| +1.3.6.1.2.1.47.1.1.1.1.15.2401|4| +1.3.6.1.2.1.47.1.1.1.1.15.2601|4| +1.3.6.1.2.1.47.1.1.1.1.15.2602|4| +1.3.6.1.2.1.47.1.1.1.1.15.2603|4| +1.3.6.1.2.1.47.1.1.1.1.15.2604|4| +1.3.6.1.2.1.47.1.1.1.1.15.2605|4| +1.3.6.1.2.1.47.1.1.1.1.15.2606|4| +1.3.6.1.2.1.47.1.1.1.1.15.2607|4| +1.3.6.1.2.1.47.1.1.1.1.15.2608|4| +1.3.6.1.2.1.47.1.1.1.1.15.2609|4| +1.3.6.1.2.1.47.1.1.1.1.15.2610|4| +1.3.6.1.2.1.47.1.1.1.1.15.2611|4| +1.3.6.1.2.1.47.1.1.1.1.15.2612|4| +1.3.6.1.2.1.47.1.1.1.1.15.2613|4| +1.3.6.1.2.1.47.1.1.1.1.15.2614|4| +1.3.6.1.2.1.47.1.1.1.1.15.2615|4| +1.3.6.1.2.1.47.1.1.1.1.15.2616|4| +1.3.6.1.2.1.47.1.1.1.1.15.2617|4| +1.3.6.1.2.1.47.1.1.1.1.15.2618|4| +1.3.6.1.2.1.47.1.1.1.1.15.2619|4| +1.3.6.1.2.1.47.1.1.1.1.15.2620|4| +1.3.6.1.2.1.47.1.1.1.1.15.2621|4| +1.3.6.1.2.1.47.1.1.1.1.15.2622|4| +1.3.6.1.2.1.47.1.1.1.1.15.2623|4| +1.3.6.1.2.1.47.1.1.1.1.15.2624|4| +1.3.6.1.2.1.47.1.1.1.1.15.2625|4| +1.3.6.1.2.1.47.1.1.1.1.15.2626|4| +1.3.6.1.2.1.47.1.1.1.1.15.2627|4| +1.3.6.1.2.1.47.1.1.1.1.15.2628|4| +1.3.6.1.2.1.47.1.1.1.1.15.2629|4| +1.3.6.1.2.1.47.1.1.1.1.15.2630|4| +1.3.6.1.2.1.47.1.1.1.1.15.2631|4| +1.3.6.1.2.1.47.1.1.1.1.15.8193|4| +1.3.6.1.2.1.47.1.1.1.1.15.8194|4| +1.3.6.1.2.1.47.1.1.1.1.15.8195|4| +1.3.6.1.2.1.47.1.1.1.1.15.8196|4| +1.3.6.1.2.1.47.1.1.1.1.15.8198|4| +1.3.6.1.2.1.47.1.1.1.1.15.8199|4| +1.3.6.1.2.1.47.1.1.1.1.15.8203|4| +1.3.6.1.2.1.47.1.1.1.1.15.8204|4| +1.3.6.1.2.1.47.1.1.1.1.15.8206|4| +1.3.6.1.2.1.47.1.1.1.1.15.8222|4| +1.3.6.1.2.1.47.1.1.1.1.15.8223|4| +1.3.6.1.2.1.47.1.1.1.1.15.8227|4| +1.3.6.1.2.1.47.1.1.1.1.15.8287|4| +1.3.6.1.2.1.47.1.1.1.1.15.8288|4| +1.3.6.1.2.1.47.1.1.1.1.15.8289|4| +1.3.6.1.2.1.47.1.1.1.1.15.8357|4| +1.3.6.1.2.1.47.1.1.1.1.15.8359|4| +1.3.6.1.2.1.47.1.1.1.1.15.8360|4| +1.3.6.1.2.1.47.1.1.1.1.15.8492|4| +1.3.6.1.2.1.47.1.1.1.1.15.8493|4| +1.3.6.1.2.1.47.1.1.1.1.15.8494|4| +1.3.6.1.2.1.47.1.1.1.1.15.8495|4| +1.3.6.1.2.1.47.1.1.1.1.15.8496|4| +1.3.6.1.2.1.47.1.1.1.1.15.8497|4| +1.3.6.1.2.1.47.1.1.1.1.15.8498|4| +1.3.6.1.2.1.47.1.1.1.1.15.8499|4| +1.3.6.1.2.1.47.1.1.1.1.15.8522|4| +1.3.6.1.2.1.47.1.1.1.1.15.8592|4| +1.3.6.1.2.1.47.1.1.1.1.15.8593|4| +1.3.6.1.2.1.47.1.1.1.1.15.8594|4| +1.3.6.1.2.1.47.1.1.1.1.15.8595|4| +1.3.6.1.2.1.47.1.1.1.1.15.8596|4| +1.3.6.1.2.1.47.1.1.1.1.15.8597|4| +1.3.6.1.2.1.47.1.1.1.1.15.8599|4| +1.3.6.1.2.1.47.1.1.1.1.15.8600|4| +1.3.6.1.2.1.47.1.1.1.1.15.8601|4| +1.3.6.1.2.1.47.1.1.1.1.15.8602|4| +1.3.6.1.2.1.47.1.1.1.1.15.8603|4| +1.3.6.1.2.1.47.1.1.1.1.15.8604|4| +1.3.6.1.2.1.47.1.1.1.1.15.8762|4| +1.3.6.1.2.1.47.1.1.1.1.15.8793|4| +1.3.6.1.2.1.47.1.1.1.1.15.8794|4| +1.3.6.1.2.1.47.1.1.1.1.15.8795|4| +1.3.6.1.2.1.47.1.1.1.1.15.8796|4| +1.3.6.1.2.1.47.1.1.1.1.15.8797|4| +1.3.6.1.2.1.47.1.1.1.1.15.8798|4| +1.3.6.1.2.1.47.1.1.1.1.15.8799|4| +1.3.6.1.2.1.47.1.1.1.1.15.8800|4| +1.3.6.1.2.1.47.1.1.1.1.15.8801|4| +1.3.6.1.2.1.47.1.1.1.1.15.8802|4| +1.3.6.1.2.1.47.1.1.1.1.15.8803|4| +1.3.6.1.2.1.47.1.1.1.1.15.8804|4| +1.3.6.1.2.1.47.1.1.1.1.15.8805|4| +1.3.6.1.2.1.47.1.1.1.1.15.8806|4| +1.3.6.1.2.1.47.1.1.1.1.15.8807|4| +1.3.6.1.2.1.47.1.1.1.1.15.8808|4| +1.3.6.1.2.1.47.1.1.1.1.15.8809|4| +1.3.6.1.2.1.47.1.1.1.1.15.8810|4| +1.3.6.1.2.1.47.1.1.1.1.15.8811|4| +1.3.6.1.2.1.47.1.1.1.1.15.8812|4| +1.3.6.1.2.1.47.1.1.1.1.15.8813|4| +1.3.6.1.2.1.47.1.1.1.1.15.8814|4| +1.3.6.1.2.1.47.1.1.1.1.15.8815|4| +1.3.6.1.2.1.47.1.1.1.1.15.8816|4| +1.3.6.1.2.1.47.1.1.1.1.15.8817|4| +1.3.6.1.2.1.47.1.1.1.1.15.8818|4| +1.3.6.1.2.1.47.1.1.1.1.15.8819|4| +1.3.6.1.2.1.47.1.1.1.1.15.8820|4| +1.3.6.1.2.1.47.1.1.1.1.15.8821|4| +1.3.6.1.2.1.47.1.1.1.1.15.8822|4| +1.3.6.1.2.1.47.1.1.1.1.15.8823|4| +1.3.6.1.2.1.47.1.1.1.1.15.8824|4| +1.3.6.1.2.1.47.1.1.1.1.15.8825|4| +1.3.6.1.2.1.47.1.1.1.1.15.8826|4| +1.3.6.1.2.1.47.1.1.1.1.15.8827|4| +1.3.6.1.2.1.47.1.1.1.1.15.8828|4| +1.3.6.1.2.1.47.1.1.1.1.15.8829|4| +1.3.6.1.2.1.47.1.1.1.1.15.8830|4| +1.3.6.1.2.1.47.1.1.1.1.15.8831|4| +1.3.6.1.2.1.47.1.1.1.1.15.8832|4| +1.3.6.1.2.1.47.1.1.1.1.15.8833|4| +1.3.6.1.2.1.47.1.1.1.1.15.8834|4| +1.3.6.1.2.1.47.1.1.1.1.15.8851|4| +1.3.6.1.2.1.47.1.1.1.1.15.8852|4| +1.3.6.1.2.1.47.1.1.1.1.15.8853|4| +1.3.6.1.2.1.47.1.1.1.1.15.8854|4| +1.3.6.1.2.1.47.1.1.1.1.15.8855|4| +1.3.6.1.2.1.47.1.1.1.1.15.8856|4| +1.3.6.1.2.1.47.1.1.1.1.15.8857|4| +1.3.6.1.2.1.47.1.1.1.1.15.8858|4| +1.3.6.1.2.1.47.1.1.1.1.15.8859|4| +1.3.6.1.2.1.47.1.1.1.1.15.8860|4| +1.3.6.1.2.1.47.1.1.1.1.15.8861|4| +1.3.6.1.2.1.47.1.1.1.1.15.8862|4| +1.3.6.1.2.1.47.1.1.1.1.15.8863|4| +1.3.6.1.2.1.47.1.1.1.1.15.8864|4| +1.3.6.1.2.1.47.1.1.1.1.15.8865|4| +1.3.6.1.2.1.47.1.1.1.1.15.8866|4| +1.3.6.1.2.1.47.1.1.1.1.15.8867|4| +1.3.6.1.2.1.47.1.1.1.1.15.8868|4| +1.3.6.1.2.1.47.1.1.1.1.15.8869|4| +1.3.6.1.2.1.47.1.1.1.1.15.8870|4| +1.3.6.1.2.1.47.1.1.1.1.15.8871|4| +1.3.6.1.2.1.47.1.1.1.1.15.8872|4| +1.3.6.1.2.1.47.1.1.1.1.15.8873|4| +1.3.6.1.2.1.47.1.1.1.1.15.8874|4| +1.3.6.1.2.1.47.1.1.1.1.15.8875|4| +1.3.6.1.2.1.47.1.1.1.1.15.8876|4| +1.3.6.1.2.1.47.1.1.1.1.15.8927|4| +1.3.6.1.2.1.47.1.1.1.1.15.8928|4| +1.3.6.1.2.1.47.1.1.1.1.15.8929|4| +1.3.6.1.2.1.47.1.1.1.1.15.8930|4| +1.3.6.1.2.1.47.1.1.1.1.15.8931|4| +1.3.6.1.2.1.47.1.1.1.1.15.8932|4| +1.3.6.1.2.1.47.1.1.1.1.15.8933|4| +1.3.6.1.2.1.47.1.1.1.1.15.8934|4| +1.3.6.1.2.1.47.1.1.1.1.15.8943|4| +1.3.6.1.2.1.47.1.1.1.1.15.8944|4| +1.3.6.1.2.1.47.1.1.1.1.15.8945|4| +1.3.6.1.2.1.47.1.1.1.1.15.8946|4| +1.3.6.1.2.1.47.1.1.1.1.15.8947|4| +1.3.6.1.2.1.47.1.1.1.1.15.8948|4| +1.3.6.1.2.1.47.1.1.1.1.15.8949|4| +1.3.6.1.2.1.47.1.1.1.1.15.8950|4| +1.3.6.1.2.1.47.1.1.1.1.15.8993|4| +1.3.6.1.2.1.47.1.1.1.1.15.8994|4| +1.3.6.1.2.1.47.1.1.1.1.15.8995|4| +1.3.6.1.2.1.47.1.1.1.1.15.8996|4| +1.3.6.1.2.1.47.1.1.1.1.15.8997|4| +1.3.6.1.2.1.47.1.1.1.1.15.8998|4| +1.3.6.1.2.1.47.1.1.1.1.15.8999|4| +1.3.6.1.2.1.47.1.1.1.1.15.9000|4| +1.3.6.1.2.1.47.1.1.1.1.15.9001|4| +1.3.6.1.2.1.47.1.1.1.1.15.9002|4| +1.3.6.1.2.1.47.1.1.1.1.15.9003|4| +1.3.6.1.2.1.47.1.1.1.1.15.9004|4| +1.3.6.1.2.1.47.1.1.1.1.15.9005|4| +1.3.6.1.2.1.47.1.1.1.1.15.9006|4| +1.3.6.1.2.1.47.1.1.1.1.15.9007|4| +1.3.6.1.2.1.47.1.1.1.1.15.9008|4| +1.3.6.1.2.1.47.1.1.1.1.15.9009|4| +1.3.6.1.2.1.47.1.1.1.1.15.9010|4| +1.3.6.1.2.1.47.1.1.1.1.15.9011|4| +1.3.6.1.2.1.47.1.1.1.1.15.9012|4| +1.3.6.1.2.1.47.1.1.1.1.15.9013|4| +1.3.6.1.2.1.47.1.1.1.1.15.9014|4| +1.3.6.1.2.1.47.1.1.1.1.15.9015|4| +1.3.6.1.2.1.47.1.1.1.1.15.9016|4| +1.3.6.1.2.1.47.1.1.1.1.15.9017|4| +1.3.6.1.2.1.47.1.1.1.1.15.9018|4| +1.3.6.1.2.1.47.1.1.1.1.15.9019|4| +1.3.6.1.2.1.47.1.1.1.1.15.9020|4| +1.3.6.1.2.1.47.1.1.1.1.15.9021|4| +1.3.6.1.2.1.47.1.1.1.1.15.9022|4| +1.3.6.1.2.1.47.1.1.1.1.15.9023|4| +1.3.6.1.2.1.47.1.1.1.1.15.9024|4| +1.3.6.1.2.1.47.1.1.1.1.15.9025|4| +1.3.6.1.2.1.47.1.1.1.1.15.9026|4| +1.3.6.1.2.1.47.1.1.1.1.15.9027|4| +1.3.6.1.2.1.47.1.1.1.1.15.9028|4| +1.3.6.1.2.1.47.1.1.1.1.15.9029|4| +1.3.6.1.2.1.47.1.1.1.1.15.9030|4| +1.3.6.1.2.1.47.1.1.1.1.15.9031|4| +1.3.6.1.2.1.47.1.1.1.1.15.9032|4| +1.3.6.1.2.1.47.1.1.1.1.15.9033|4| +1.3.6.1.2.1.47.1.1.1.1.15.9034|4| +1.3.6.1.2.1.47.1.1.1.1.15.9061|4| +1.3.6.1.2.1.47.1.1.1.1.15.9062|4| +1.3.6.1.2.1.47.1.1.1.1.15.9063|4| +1.3.6.1.2.1.47.1.1.1.1.15.9064|4| +1.3.6.1.2.1.47.1.1.1.1.15.9065|4| +1.3.6.1.2.1.47.1.1.1.1.15.9066|4| +1.3.6.1.2.1.47.1.1.1.1.15.9067|4| +1.3.6.1.2.1.47.1.1.1.1.15.9068|4| +1.3.6.1.2.1.47.1.1.1.1.15.9069|4| +1.3.6.1.2.1.47.1.1.1.1.15.9070|4| +1.3.6.1.2.1.47.1.1.1.1.15.9071|4| +1.3.6.1.2.1.47.1.1.1.1.15.9072|4| +1.3.6.1.2.1.47.1.1.1.1.15.9075|4| +1.3.6.1.2.1.47.1.1.1.1.15.9076|4| +1.3.6.1.2.1.47.1.1.1.1.15.9077|4| +1.3.6.1.2.1.47.1.1.1.1.15.9078|4| +1.3.6.1.2.1.47.1.1.1.1.15.9079|4| +1.3.6.1.2.1.47.1.1.1.1.15.9080|4| +1.3.6.1.2.1.47.1.1.1.1.15.9081|4| +1.3.6.1.2.1.47.1.1.1.1.15.9082|4| +1.3.6.1.2.1.47.1.1.1.1.15.9083|4| +1.3.6.1.2.1.47.1.1.1.1.15.9084|4| +1.3.6.1.2.1.47.1.1.1.1.15.9085|4| +1.3.6.1.2.1.47.1.1.1.1.15.9086|4| +1.3.6.1.2.1.47.1.1.1.1.15.10593|4| +1.3.6.1.2.1.47.1.1.1.1.15.10793|4| +1.3.6.1.2.1.47.1.1.1.1.15.10794|4| +1.3.6.1.2.1.47.1.1.1.1.15.10795|4| +1.3.6.1.2.1.47.1.1.1.1.15.10796|4| +1.3.6.1.2.1.47.1.1.1.1.15.10797|4| +1.3.6.1.2.1.47.1.1.1.1.15.10798|4| +1.3.6.1.2.1.47.1.1.1.1.15.10799|4| +1.3.6.1.2.1.47.1.1.1.1.15.10800|4| +1.3.6.1.2.1.47.1.1.1.1.15.10801|4| +1.3.6.1.2.1.47.1.1.1.1.15.10802|4| +1.3.6.1.2.1.47.1.1.1.1.15.10803|4| +1.3.6.1.2.1.47.1.1.1.1.15.10804|4| +1.3.6.1.2.1.47.1.1.1.1.15.10805|4| +1.3.6.1.2.1.47.1.1.1.1.15.10806|4| +1.3.6.1.2.1.47.1.1.1.1.15.10807|4| +1.3.6.1.2.1.47.1.1.1.1.15.10808|4| +1.3.6.1.2.1.47.1.1.1.1.15.10809|4| +1.3.6.1.2.1.47.1.1.1.1.15.10810|4| +1.3.6.1.2.1.47.1.1.1.1.15.10811|4| +1.3.6.1.2.1.47.1.1.1.1.15.10812|4| +1.3.6.1.2.1.47.1.1.1.1.15.10813|4| +1.3.6.1.2.1.47.1.1.1.1.15.10814|4| +1.3.6.1.2.1.47.1.1.1.1.15.10815|4| +1.3.6.1.2.1.47.1.1.1.1.15.10816|4| +1.3.6.1.2.1.47.1.1.1.1.15.10817|4| +1.3.6.1.2.1.47.1.1.1.1.15.10818|4| +1.3.6.1.2.1.47.1.1.1.1.15.10819|4| +1.3.6.1.2.1.47.1.1.1.1.15.10820|4| +1.3.6.1.2.1.47.1.1.1.1.15.10821|4| +1.3.6.1.2.1.47.1.1.1.1.15.10822|4| +1.3.6.1.2.1.47.1.1.1.1.15.10823|4| +1.3.6.1.2.1.47.1.1.1.1.15.10824|4| +1.3.6.1.2.1.47.1.1.1.1.15.10825|4| +1.3.6.1.2.1.47.1.1.1.1.15.10826|4| +1.3.6.1.2.1.47.1.1.1.1.15.10827|4| +1.3.6.1.2.1.47.1.1.1.1.15.10828|4| +1.3.6.1.2.1.47.1.1.1.1.15.10829|4| +1.3.6.1.2.1.47.1.1.1.1.15.10830|4| +1.3.6.1.2.1.47.1.1.1.1.15.10831|4| +1.3.6.1.2.1.47.1.1.1.1.15.10832|4| +1.3.6.1.2.1.47.1.1.1.1.15.10833|4| +1.3.6.1.2.1.47.1.1.1.1.15.10834|4| +1.3.6.1.2.1.47.1.1.1.1.15.10835|4| +1.3.6.1.2.1.47.1.1.1.1.15.10836|4| +1.3.6.1.2.1.47.1.1.1.1.15.10837|4| +1.3.6.1.2.1.47.1.1.1.1.15.10838|4| +1.3.6.1.2.1.47.1.1.1.1.15.10839|4| +1.3.6.1.2.1.47.1.1.1.1.15.10840|4| +1.3.6.1.2.1.47.1.1.1.1.15.10841|4| +1.3.6.1.2.1.47.1.1.1.1.15.10842|4| +1.3.6.1.2.1.47.1.1.1.1.15.10843|4| +1.3.6.1.2.1.47.1.1.1.1.15.10844|4| +1.3.6.1.2.1.47.1.1.1.1.15.10845|4| +1.3.6.1.2.1.47.1.1.1.1.15.10846|4| +1.3.6.1.2.1.47.1.1.1.1.15.10847|4| +1.3.6.1.2.1.47.1.1.1.1.15.10848|4| +1.3.6.1.2.1.47.1.1.1.1.15.10849|4| +1.3.6.1.2.1.47.1.1.1.1.15.10850|4| +1.3.6.1.2.1.47.1.1.1.1.15.10851|4| +1.3.6.1.2.1.47.1.1.1.1.15.10852|4| +1.3.6.1.2.1.47.1.1.1.1.15.10853|4| +1.3.6.1.2.1.47.1.1.1.1.15.10854|4| +1.3.6.1.2.1.47.1.1.1.1.15.10855|4| +1.3.6.1.2.1.47.1.1.1.1.15.10856|4| +1.3.6.1.2.1.47.1.1.1.1.15.10857|4| +1.3.6.1.2.1.47.1.1.1.1.15.10858|4| +1.3.6.1.2.1.47.1.1.1.1.15.40961|4| +1.3.6.1.2.1.47.1.1.1.1.15.40967|4| +1.3.6.1.2.1.47.1.1.1.1.15.41810|4| +1.3.6.1.2.1.47.1.1.1.1.15.41910|4| +1.3.6.1.2.1.47.1.1.1.1.15.45057|4| +1.3.6.1.2.1.47.1.1.1.1.15.45063|4| +1.3.6.1.2.1.47.1.1.1.1.15.45906|4| +1.3.6.1.2.1.47.1.1.1.1.15.46006|4| +1.3.6.1.2.1.47.1.1.1.1.15.49153|4| +1.3.6.1.2.1.47.1.1.1.1.15.49159|4| +1.3.6.1.2.1.47.1.1.1.1.15.50002|4| +1.3.6.1.2.1.47.1.1.1.1.15.50102|4| +1.3.6.1.2.1.47.1.1.1.1.15.118785|4| +1.3.6.1.2.1.47.1.1.1.1.15.118790|4| +1.3.6.1.2.1.47.1.1.1.1.15.118894|4| +1.3.6.1.2.1.47.1.1.1.1.15.118895|4| +1.3.6.1.2.1.47.1.1.1.1.15.2375681|4| +1.3.6.1.2.1.47.1.1.1.1.15.2375682|4| +1.3.6.1.2.1.47.1.1.1.1.15.2375687|4| +1.3.6.1.2.1.47.1.1.1.1.15.2375930|4| +1.3.6.1.2.1.47.1.1.1.1.15.2375931|4| +1.3.6.1.2.1.47.1.1.1.1.15.2375940|4| +1.3.6.1.2.1.47.1.1.1.1.15.2375941|4| +1.3.6.1.2.1.47.1.1.1.1.15.2375950|4| +1.3.6.1.2.1.47.1.1.1.1.15.2375951|4| +1.3.6.1.2.1.47.1.1.1.1.15.2375970|4| +1.3.6.1.2.1.47.1.1.1.1.15.2375971|4| +1.3.6.1.2.1.47.1.1.1.1.15.2375972|4| +1.3.6.1.2.1.47.1.1.1.1.15.2376530|4| +1.3.6.1.2.1.47.1.1.1.1.15.2376531|4| +1.3.6.1.2.1.47.1.1.1.1.15.2376630|4| +1.3.6.1.2.1.47.1.1.1.1.15.2376631|4| +1.3.6.1.2.1.47.1.1.1.1.15.2379777|4| +1.3.6.1.2.1.47.1.1.1.1.15.2379778|4| +1.3.6.1.2.1.47.1.1.1.1.15.2379783|4| +1.3.6.1.2.1.47.1.1.1.1.15.2380026|4| +1.3.6.1.2.1.47.1.1.1.1.15.2380027|4| +1.3.6.1.2.1.47.1.1.1.1.15.2380036|4| +1.3.6.1.2.1.47.1.1.1.1.15.2380037|4| +1.3.6.1.2.1.47.1.1.1.1.15.2380046|4| +1.3.6.1.2.1.47.1.1.1.1.15.2380047|4| +1.3.6.1.2.1.47.1.1.1.1.15.2380066|4| +1.3.6.1.2.1.47.1.1.1.1.15.2380067|4| +1.3.6.1.2.1.47.1.1.1.1.15.2380068|4| +1.3.6.1.2.1.47.1.1.1.1.15.2380626|4| +1.3.6.1.2.1.47.1.1.1.1.15.2380627|4| +1.3.6.1.2.1.47.1.1.1.1.15.2380726|4| +1.3.6.1.2.1.47.1.1.1.1.15.2380727|4| +1.3.6.1.2.1.47.1.1.1.1.15.2990081|4| +1.3.6.1.2.1.47.1.1.1.1.15.2990087|4| +1.3.6.1.2.1.47.1.1.1.1.15.2990320|4| +1.3.6.1.2.1.47.1.1.1.1.15.2990330|4| +1.3.6.1.2.1.47.1.1.1.1.15.2990350|4| +1.3.6.1.2.1.47.1.1.1.1.15.2990362|4| +1.3.6.1.2.1.47.1.1.1.1.15.2990470|4| +1.3.6.1.2.1.47.1.1.1.1.15.2994177|4| +1.3.6.1.2.1.47.1.1.1.1.15.2994183|4| +1.3.6.1.2.1.47.1.1.1.1.15.2994416|4| +1.3.6.1.2.1.47.1.1.1.1.15.2994426|4| +1.3.6.1.2.1.47.1.1.1.1.15.2994446|4| +1.3.6.1.2.1.47.1.1.1.1.15.2994458|4| +1.3.6.1.2.1.47.1.1.1.1.15.2994566|4| +1.3.6.1.2.1.47.1.1.1.1.15.3014657|4| +1.3.6.1.2.1.47.1.1.1.1.15.3014663|4| +1.3.6.1.2.1.47.1.1.1.1.15.3014896|4| +1.3.6.1.2.1.47.1.1.1.1.15.3014906|4| +1.3.6.1.2.1.47.1.1.1.1.15.3014926|4| +1.3.6.1.2.1.47.1.1.1.1.15.3014938|4| +1.3.6.1.2.1.47.1.1.1.1.15.3015046|4| +1.3.6.1.2.1.47.1.1.1.1.15.3072001|4| +1.3.6.1.2.1.47.1.1.1.1.15.3072007|4| +1.3.6.1.2.1.47.1.1.1.1.15.3072240|4| +1.3.6.1.2.1.47.1.1.1.1.15.3072250|4| +1.3.6.1.2.1.47.1.1.1.1.15.3072270|4| +1.3.6.1.2.1.47.1.1.1.1.15.3072282|4| +1.3.6.1.2.1.47.1.1.1.1.15.3072390|4| +1.3.6.1.2.1.47.1.1.1.1.15.8384513|4| +1.3.6.1.2.1.47.1.1.1.1.15.8384518|4| +1.3.6.1.2.1.47.1.1.1.1.15.8384527|4| +1.3.6.1.2.1.47.1.1.1.1.15.8384552|4| +1.3.6.1.2.1.47.1.1.1.1.15.8384597|4| +1.3.6.1.2.1.47.1.1.1.1.15.8384598|4| +1.3.6.1.2.1.47.1.1.1.1.15.8384599|4| +1.3.6.1.2.1.47.1.1.1.1.15.8384602|4| +1.3.6.1.2.1.47.1.1.1.1.15.8384612|4| +1.3.6.1.2.1.47.1.1.1.1.16.1|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.2|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.4|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.7|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.11|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.12|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.13|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.18|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.26|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.30|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.95|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.96|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.97|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.103|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.104|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.105|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.106|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.108|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.109|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.111|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.112|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.113|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.134|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.167|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.168|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.169|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.178|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.179|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.182|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.237|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.255|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.290|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.293|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.296|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.297|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.298|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.302|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.303|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.304|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.305|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.306|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.440|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.441|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.442|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.550|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.551|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.570|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.600|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.625|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.628|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2401|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2601|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2602|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2603|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2604|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2605|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2606|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2607|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2608|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2609|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2610|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2611|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2612|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2613|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2614|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2615|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2616|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2617|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2618|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2619|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2620|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2621|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2622|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2623|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2624|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2625|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2626|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2627|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2628|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2629|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2630|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2631|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8193|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.8194|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8195|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8196|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8198|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8199|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8203|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8204|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8206|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8222|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8223|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8227|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8287|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8288|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8289|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8357|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8359|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8360|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8492|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8493|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8494|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8495|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8496|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8497|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8498|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8499|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8522|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8592|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8593|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8594|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8595|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8596|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8597|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8599|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8600|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8601|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8602|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8603|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8604|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8762|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8793|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8794|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8795|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8796|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8797|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8798|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8799|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8800|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8801|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8802|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8803|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8804|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8805|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8806|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8807|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8808|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8809|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8810|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8811|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8812|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8813|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8814|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8815|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8816|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8817|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8818|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8819|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8820|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8821|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8822|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8823|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8824|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8825|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8826|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8827|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8828|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8829|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8830|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8831|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8832|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8833|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8834|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8851|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8852|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8853|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8854|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8855|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8856|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8857|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8858|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8859|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8860|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8861|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8862|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8863|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8864|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8865|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8866|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8867|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8868|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8869|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8870|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8871|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8872|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8873|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8874|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8875|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8876|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8927|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8928|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8929|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8930|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8931|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8932|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8933|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8934|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8943|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8944|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8945|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8946|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8947|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8948|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8949|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8950|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8993|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8994|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8995|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8996|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8997|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8998|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8999|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9000|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9001|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9002|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9003|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9004|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9005|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9006|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9007|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9008|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9009|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9010|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9011|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9012|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9013|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9014|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9015|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9016|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9017|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9018|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9019|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9020|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9021|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9022|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9023|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9024|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9025|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9026|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9027|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9028|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9029|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9030|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9031|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9032|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9033|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9034|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9061|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9062|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9063|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9064|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9065|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9066|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9067|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9068|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9069|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9070|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9071|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9072|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9075|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9076|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9077|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9078|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9079|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9080|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9081|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9082|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9083|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9084|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9085|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9086|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10593|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10793|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10794|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10795|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10796|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10797|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10798|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10799|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10800|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10801|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10802|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10803|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10804|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10805|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10806|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10807|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10808|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10809|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10810|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10811|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10812|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10813|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10814|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10815|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10816|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10817|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10818|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10819|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10820|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10821|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10822|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10823|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10824|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10825|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10826|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10827|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10828|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10829|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10830|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10831|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10832|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10833|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10834|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10835|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10836|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10837|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10838|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10839|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10840|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10841|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10842|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10843|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10844|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10845|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10846|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10847|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10848|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10849|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10850|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10851|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10852|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10853|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10854|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10855|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10856|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10857|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10858|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.40961|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.40967|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.41810|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.41910|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.45057|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.45063|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.45906|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.46006|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.49153|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.49159|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.50002|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.50102|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.118785|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.118790|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.118894|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.118895|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2375681|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.2375682|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2375687|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2375930|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2375931|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2375940|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2375941|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2375950|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2375951|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2375970|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2375971|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2375972|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2376530|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2376531|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2376630|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2376631|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2379777|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.2379778|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2379783|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2380026|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2380027|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2380036|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2380037|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2380046|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2380047|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2380066|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2380067|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2380068|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2380626|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2380627|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2380726|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2380727|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2990081|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.2990087|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2990320|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2990330|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2990350|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2990362|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2990470|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2994177|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.2994183|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2994416|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2994426|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2994446|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2994458|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2994566|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3014657|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.3014663|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3014896|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3014906|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3014926|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3014938|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3015046|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3072001|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.3072007|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3072240|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3072250|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3072270|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3072282|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3072390|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8384513|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.8384518|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8384527|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8384552|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8384597|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8384598|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8384599|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8384602|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8384612|2|2 +1.3.6.1.2.1.47.1.3.2.1.2.237.0|6|1.3.6.1.2.1.2.2.1.1.3 +1.3.6.1.2.1.47.1.3.2.1.2.440.0|6|1.3.6.1.2.1.2.2.1.1.61 +1.3.6.1.2.1.47.1.3.2.1.2.441.0|6|1.3.6.1.2.1.2.2.1.1.62 +1.3.6.1.2.1.47.1.3.2.1.2.442.0|6|1.3.6.1.2.1.2.2.1.1.63 +1.3.6.1.2.1.47.1.3.2.1.2.8851.0|6|1.3.6.1.2.1.2.2.1.1.12 +1.3.6.1.2.1.47.1.3.2.1.2.8852.0|6|1.3.6.1.2.1.2.2.1.1.13 +1.3.6.1.2.1.47.1.3.2.1.2.8853.0|6|1.3.6.1.2.1.2.2.1.1.10 +1.3.6.1.2.1.47.1.3.2.1.2.8854.0|6|1.3.6.1.2.1.2.2.1.1.11 +1.3.6.1.2.1.47.1.3.2.1.2.8855.0|6|1.3.6.1.2.1.2.2.1.1.14 +1.3.6.1.2.1.47.1.3.2.1.2.8856.0|6|1.3.6.1.2.1.2.2.1.1.15 +1.3.6.1.2.1.47.1.3.2.1.2.8857.0|6|1.3.6.1.2.1.2.2.1.1.16 +1.3.6.1.2.1.47.1.3.2.1.2.8858.0|6|1.3.6.1.2.1.2.2.1.1.17 +1.3.6.1.2.1.47.1.3.2.1.2.8859.0|6|1.3.6.1.2.1.2.2.1.1.18 +1.3.6.1.2.1.47.1.3.2.1.2.8860.0|6|1.3.6.1.2.1.2.2.1.1.19 +1.3.6.1.2.1.47.1.3.2.1.2.8861.0|6|1.3.6.1.2.1.2.2.1.1.20 +1.3.6.1.2.1.47.1.3.2.1.2.8862.0|6|1.3.6.1.2.1.2.2.1.1.21 +1.3.6.1.2.1.47.1.3.2.1.2.8863.0|6|1.3.6.1.2.1.2.2.1.1.9 +1.3.6.1.2.1.47.1.3.2.1.2.8864.0|6|1.3.6.1.2.1.2.2.1.1.22 +1.3.6.1.2.1.47.1.3.2.1.2.8865.0|6|1.3.6.1.2.1.2.2.1.1.31 +1.3.6.1.2.1.47.1.3.2.1.2.8866.0|6|1.3.6.1.2.1.2.2.1.1.32 +1.3.6.1.2.1.47.1.3.2.1.2.8867.0|6|1.3.6.1.2.1.2.2.1.1.33 +1.3.6.1.2.1.47.1.3.2.1.2.8868.0|6|1.3.6.1.2.1.2.2.1.1.34 +1.3.6.1.2.1.47.1.3.2.1.2.8869.0|6|1.3.6.1.2.1.2.2.1.1.35 +1.3.6.1.2.1.47.1.3.2.1.2.8870.0|6|1.3.6.1.2.1.2.2.1.1.36 +1.3.6.1.2.1.47.1.3.2.1.2.8871.0|6|1.3.6.1.2.1.2.2.1.1.37 +1.3.6.1.2.1.47.1.3.2.1.2.8872.0|6|1.3.6.1.2.1.2.2.1.1.38 +1.3.6.1.2.1.47.1.3.2.1.2.8873.0|6|1.3.6.1.2.1.2.2.1.1.39 +1.3.6.1.2.1.47.1.3.2.1.2.8874.0|6|1.3.6.1.2.1.2.2.1.1.40 +1.3.6.1.2.1.47.1.3.2.1.2.8875.0|6|1.3.6.1.2.1.2.2.1.1.41 +1.3.6.1.2.1.47.1.3.2.1.2.8876.0|6|1.3.6.1.2.1.2.2.1.1.42 +1.3.6.1.2.1.47.1.3.2.1.2.8927.0|6|1.3.6.1.2.1.2.2.1.1.43 +1.3.6.1.2.1.47.1.3.2.1.2.8928.0|6|1.3.6.1.2.1.2.2.1.1.44 +1.3.6.1.2.1.47.1.3.2.1.2.8929.0|6|1.3.6.1.2.1.2.2.1.1.45 +1.3.6.1.2.1.47.1.3.2.1.2.8930.0|6|1.3.6.1.2.1.2.2.1.1.46 +1.3.6.1.2.1.47.1.3.2.1.2.8931.0|6|1.3.6.1.2.1.2.2.1.1.47 +1.3.6.1.2.1.47.1.3.2.1.2.8932.0|6|1.3.6.1.2.1.2.2.1.1.48 +1.3.6.1.2.1.47.1.3.2.1.2.8933.0|6|1.3.6.1.2.1.2.2.1.1.49 +1.3.6.1.2.1.47.1.3.2.1.2.8934.0|6|1.3.6.1.2.1.2.2.1.1.50 +1.3.6.1.2.1.47.1.3.2.1.2.8943.0|6|1.3.6.1.2.1.2.2.1.1.23 +1.3.6.1.2.1.47.1.3.2.1.2.8944.0|6|1.3.6.1.2.1.2.2.1.1.24 +1.3.6.1.2.1.47.1.3.2.1.2.8945.0|6|1.3.6.1.2.1.2.2.1.1.25 +1.3.6.1.2.1.47.1.3.2.1.2.8946.0|6|1.3.6.1.2.1.2.2.1.1.26 +1.3.6.1.2.1.47.1.3.2.1.2.8947.0|6|1.3.6.1.2.1.2.2.1.1.27 +1.3.6.1.2.1.47.1.3.2.1.2.8948.0|6|1.3.6.1.2.1.2.2.1.1.28 +1.3.6.1.2.1.47.1.3.2.1.2.8949.0|6|1.3.6.1.2.1.2.2.1.1.29 +1.3.6.1.2.1.47.1.3.2.1.2.8950.0|6|1.3.6.1.2.1.2.2.1.1.30 +1.3.6.1.2.1.47.1.3.2.1.2.2990081.0|6|1.3.6.1.2.1.2.2.1.1.64 +1.3.6.1.2.1.47.1.3.2.1.2.2994177.0|6|1.3.6.1.2.1.2.2.1.1.81 +1.3.6.1.2.1.47.1.3.2.1.2.3014657.0|6|1.3.6.1.2.1.2.2.1.1.65 +1.3.6.1.2.1.47.1.3.2.1.2.3072001.0|6|1.3.6.1.2.1.2.2.1.1.67 +1.3.6.1.2.1.131.1.1.1.2.1|2|4 +1.3.6.1.2.1.131.1.1.1.2.2|2|1 +1.3.6.1.2.1.131.1.1.1.2.3|2|1 +1.3.6.1.2.1.131.1.1.1.2.4|2|1 +1.3.6.1.2.1.131.1.1.1.2.7|2|1 +1.3.6.1.2.1.131.1.1.1.2.11|2|1 +1.3.6.1.2.1.131.1.1.1.2.12|2|1 +1.3.6.1.2.1.131.1.1.1.2.13|2|1 +1.3.6.1.2.1.131.1.1.1.2.18|2|1 +1.3.6.1.2.1.131.1.1.1.2.26|2|1 +1.3.6.1.2.1.131.1.1.1.2.30|2|1 +1.3.6.1.2.1.131.1.1.1.2.95|2|1 +1.3.6.1.2.1.131.1.1.1.2.96|2|1 +1.3.6.1.2.1.131.1.1.1.2.97|2|1 +1.3.6.1.2.1.131.1.1.1.2.167|2|1 +1.3.6.1.2.1.131.1.1.1.2.168|2|1 +1.3.6.1.2.1.131.1.1.1.2.169|2|1 +1.3.6.1.2.1.131.1.1.1.2.570|2|1 +1.3.6.1.2.1.131.1.1.1.2.625|2|1 +1.3.6.1.2.1.131.1.1.1.2.628|2|1 +1.3.6.1.2.1.131.1.1.1.2.8193|2|4 +1.3.6.1.2.1.131.1.1.1.2.8194|2|1 +1.3.6.1.2.1.131.1.1.1.2.8195|2|1 +1.3.6.1.2.1.131.1.1.1.2.8196|2|1 +1.3.6.1.2.1.131.1.1.1.2.8198|2|1 +1.3.6.1.2.1.131.1.1.1.2.8199|2|1 +1.3.6.1.2.1.131.1.1.1.2.8203|2|1 +1.3.6.1.2.1.131.1.1.1.2.8204|2|1 +1.3.6.1.2.1.131.1.1.1.2.8206|2|1 +1.3.6.1.2.1.131.1.1.1.2.8222|2|1 +1.3.6.1.2.1.131.1.1.1.2.8223|2|1 +1.3.6.1.2.1.131.1.1.1.2.8227|2|1 +1.3.6.1.2.1.131.1.1.1.2.8287|2|1 +1.3.6.1.2.1.131.1.1.1.2.8288|2|1 +1.3.6.1.2.1.131.1.1.1.2.8289|2|1 +1.3.6.1.2.1.131.1.1.1.2.8357|2|1 +1.3.6.1.2.1.131.1.1.1.2.8359|2|1 +1.3.6.1.2.1.131.1.1.1.2.8360|2|1 +1.3.6.1.2.1.131.1.1.1.2.8522|2|1 +1.3.6.1.2.1.131.1.1.1.2.8762|2|1 +1.3.6.1.2.1.131.1.1.1.2.8793|2|1 +1.3.6.1.2.1.131.1.1.1.2.8794|2|1 +1.3.6.1.2.1.131.1.1.1.2.8795|2|1 +1.3.6.1.2.1.131.1.1.1.2.8796|2|1 +1.3.6.1.2.1.131.1.1.1.2.8797|2|1 +1.3.6.1.2.1.131.1.1.1.2.8798|2|1 +1.3.6.1.2.1.131.1.1.1.2.8799|2|1 +1.3.6.1.2.1.131.1.1.1.2.8800|2|1 +1.3.6.1.2.1.131.1.1.1.2.8801|2|1 +1.3.6.1.2.1.131.1.1.1.2.8802|2|1 +1.3.6.1.2.1.131.1.1.1.2.8803|2|1 +1.3.6.1.2.1.131.1.1.1.2.8804|2|1 +1.3.6.1.2.1.131.1.1.1.2.8805|2|1 +1.3.6.1.2.1.131.1.1.1.2.8806|2|1 +1.3.6.1.2.1.131.1.1.1.2.8807|2|1 +1.3.6.1.2.1.131.1.1.1.2.8808|2|1 +1.3.6.1.2.1.131.1.1.1.2.8809|2|1 +1.3.6.1.2.1.131.1.1.1.2.8810|2|1 +1.3.6.1.2.1.131.1.1.1.2.8811|2|1 +1.3.6.1.2.1.131.1.1.1.2.8812|2|1 +1.3.6.1.2.1.131.1.1.1.2.8813|2|1 +1.3.6.1.2.1.131.1.1.1.2.8814|2|1 +1.3.6.1.2.1.131.1.1.1.2.8815|2|1 +1.3.6.1.2.1.131.1.1.1.2.8816|2|1 +1.3.6.1.2.1.131.1.1.1.2.8817|2|1 +1.3.6.1.2.1.131.1.1.1.2.8818|2|1 +1.3.6.1.2.1.131.1.1.1.2.8819|2|1 +1.3.6.1.2.1.131.1.1.1.2.8820|2|1 +1.3.6.1.2.1.131.1.1.1.2.8821|2|1 +1.3.6.1.2.1.131.1.1.1.2.8822|2|1 +1.3.6.1.2.1.131.1.1.1.2.8823|2|1 +1.3.6.1.2.1.131.1.1.1.2.8824|2|1 +1.3.6.1.2.1.131.1.1.1.2.8825|2|1 +1.3.6.1.2.1.131.1.1.1.2.8826|2|1 +1.3.6.1.2.1.131.1.1.1.2.8827|2|1 +1.3.6.1.2.1.131.1.1.1.2.8828|2|1 +1.3.6.1.2.1.131.1.1.1.2.8829|2|1 +1.3.6.1.2.1.131.1.1.1.2.8830|2|1 +1.3.6.1.2.1.131.1.1.1.2.8831|2|1 +1.3.6.1.2.1.131.1.1.1.2.8832|2|1 +1.3.6.1.2.1.131.1.1.1.2.8833|2|1 +1.3.6.1.2.1.131.1.1.1.2.8834|2|1 +1.3.6.1.2.1.131.1.1.1.2.40967|2|1 +1.3.6.1.2.1.131.1.1.1.2.45063|2|1 +1.3.6.1.2.1.131.1.1.1.2.49159|2|1 +1.3.6.1.2.1.131.1.1.1.2.118790|2|1 +1.3.6.1.2.1.131.1.1.1.2.2375682|2|1 +1.3.6.1.2.1.131.1.1.1.2.2375687|2|1 +1.3.6.1.2.1.131.1.1.1.2.2379778|2|1 +1.3.6.1.2.1.131.1.1.1.2.2379783|2|1 +1.3.6.1.2.1.131.1.1.1.2.2990081|2|4 +1.3.6.1.2.1.131.1.1.1.2.2990087|2|1 +1.3.6.1.2.1.131.1.1.1.2.2994177|2|4 +1.3.6.1.2.1.131.1.1.1.2.2994183|2|1 +1.3.6.1.2.1.131.1.1.1.2.3014657|2|4 +1.3.6.1.2.1.131.1.1.1.2.3014663|2|1 +1.3.6.1.2.1.131.1.1.1.2.3072001|2|4 +1.3.6.1.2.1.131.1.1.1.2.3072007|2|1 +1.3.6.1.2.1.131.1.1.1.2.8384513|2|4 +1.3.6.1.2.1.131.1.1.1.2.8384518|2|1 +1.3.6.1.2.1.131.1.1.1.3.1|2|3 +1.3.6.1.2.1.131.1.1.1.3.2|2|1 +1.3.6.1.2.1.131.1.1.1.3.3|2|1 +1.3.6.1.2.1.131.1.1.1.3.4|2|1 +1.3.6.1.2.1.131.1.1.1.3.7|2|1 +1.3.6.1.2.1.131.1.1.1.3.11|2|1 +1.3.6.1.2.1.131.1.1.1.3.12|2|1 +1.3.6.1.2.1.131.1.1.1.3.13|2|1 +1.3.6.1.2.1.131.1.1.1.3.18|2|1 +1.3.6.1.2.1.131.1.1.1.3.26|2|1 +1.3.6.1.2.1.131.1.1.1.3.30|2|1 +1.3.6.1.2.1.131.1.1.1.3.95|2|1 +1.3.6.1.2.1.131.1.1.1.3.96|2|1 +1.3.6.1.2.1.131.1.1.1.3.97|2|1 +1.3.6.1.2.1.131.1.1.1.3.167|2|1 +1.3.6.1.2.1.131.1.1.1.3.168|2|1 +1.3.6.1.2.1.131.1.1.1.3.169|2|1 +1.3.6.1.2.1.131.1.1.1.3.570|2|1 +1.3.6.1.2.1.131.1.1.1.3.625|2|1 +1.3.6.1.2.1.131.1.1.1.3.628|2|1 +1.3.6.1.2.1.131.1.1.1.3.8193|2|3 +1.3.6.1.2.1.131.1.1.1.3.8194|2|1 +1.3.6.1.2.1.131.1.1.1.3.8195|2|1 +1.3.6.1.2.1.131.1.1.1.3.8196|2|1 +1.3.6.1.2.1.131.1.1.1.3.8198|2|1 +1.3.6.1.2.1.131.1.1.1.3.8199|2|1 +1.3.6.1.2.1.131.1.1.1.3.8203|2|1 +1.3.6.1.2.1.131.1.1.1.3.8204|2|1 +1.3.6.1.2.1.131.1.1.1.3.8206|2|1 +1.3.6.1.2.1.131.1.1.1.3.8222|2|1 +1.3.6.1.2.1.131.1.1.1.3.8223|2|1 +1.3.6.1.2.1.131.1.1.1.3.8227|2|1 +1.3.6.1.2.1.131.1.1.1.3.8287|2|1 +1.3.6.1.2.1.131.1.1.1.3.8288|2|1 +1.3.6.1.2.1.131.1.1.1.3.8289|2|1 +1.3.6.1.2.1.131.1.1.1.3.8357|2|1 +1.3.6.1.2.1.131.1.1.1.3.8359|2|1 +1.3.6.1.2.1.131.1.1.1.3.8360|2|1 +1.3.6.1.2.1.131.1.1.1.3.8522|2|1 +1.3.6.1.2.1.131.1.1.1.3.8762|2|1 +1.3.6.1.2.1.131.1.1.1.3.8793|2|1 +1.3.6.1.2.1.131.1.1.1.3.8794|2|1 +1.3.6.1.2.1.131.1.1.1.3.8795|2|1 +1.3.6.1.2.1.131.1.1.1.3.8796|2|1 +1.3.6.1.2.1.131.1.1.1.3.8797|2|1 +1.3.6.1.2.1.131.1.1.1.3.8798|2|1 +1.3.6.1.2.1.131.1.1.1.3.8799|2|1 +1.3.6.1.2.1.131.1.1.1.3.8800|2|1 +1.3.6.1.2.1.131.1.1.1.3.8801|2|1 +1.3.6.1.2.1.131.1.1.1.3.8802|2|1 +1.3.6.1.2.1.131.1.1.1.3.8803|2|1 +1.3.6.1.2.1.131.1.1.1.3.8804|2|1 +1.3.6.1.2.1.131.1.1.1.3.8805|2|1 +1.3.6.1.2.1.131.1.1.1.3.8806|2|1 +1.3.6.1.2.1.131.1.1.1.3.8807|2|1 +1.3.6.1.2.1.131.1.1.1.3.8808|2|1 +1.3.6.1.2.1.131.1.1.1.3.8809|2|1 +1.3.6.1.2.1.131.1.1.1.3.8810|2|1 +1.3.6.1.2.1.131.1.1.1.3.8811|2|1 +1.3.6.1.2.1.131.1.1.1.3.8812|2|1 +1.3.6.1.2.1.131.1.1.1.3.8813|2|1 +1.3.6.1.2.1.131.1.1.1.3.8814|2|1 +1.3.6.1.2.1.131.1.1.1.3.8815|2|1 +1.3.6.1.2.1.131.1.1.1.3.8816|2|1 +1.3.6.1.2.1.131.1.1.1.3.8817|2|1 +1.3.6.1.2.1.131.1.1.1.3.8818|2|1 +1.3.6.1.2.1.131.1.1.1.3.8819|2|1 +1.3.6.1.2.1.131.1.1.1.3.8820|2|1 +1.3.6.1.2.1.131.1.1.1.3.8821|2|1 +1.3.6.1.2.1.131.1.1.1.3.8822|2|1 +1.3.6.1.2.1.131.1.1.1.3.8823|2|1 +1.3.6.1.2.1.131.1.1.1.3.8824|2|1 +1.3.6.1.2.1.131.1.1.1.3.8825|2|1 +1.3.6.1.2.1.131.1.1.1.3.8826|2|1 +1.3.6.1.2.1.131.1.1.1.3.8827|2|1 +1.3.6.1.2.1.131.1.1.1.3.8828|2|1 +1.3.6.1.2.1.131.1.1.1.3.8829|2|1 +1.3.6.1.2.1.131.1.1.1.3.8830|2|1 +1.3.6.1.2.1.131.1.1.1.3.8831|2|1 +1.3.6.1.2.1.131.1.1.1.3.8832|2|1 +1.3.6.1.2.1.131.1.1.1.3.8833|2|1 +1.3.6.1.2.1.131.1.1.1.3.8834|2|1 +1.3.6.1.2.1.131.1.1.1.3.40967|2|1 +1.3.6.1.2.1.131.1.1.1.3.45063|2|1 +1.3.6.1.2.1.131.1.1.1.3.49159|2|1 +1.3.6.1.2.1.131.1.1.1.3.118790|2|1 +1.3.6.1.2.1.131.1.1.1.3.2375682|2|1 +1.3.6.1.2.1.131.1.1.1.3.2375687|2|1 +1.3.6.1.2.1.131.1.1.1.3.2379778|2|1 +1.3.6.1.2.1.131.1.1.1.3.2379783|2|1 +1.3.6.1.2.1.131.1.1.1.3.2990081|2|3 +1.3.6.1.2.1.131.1.1.1.3.2990087|2|1 +1.3.6.1.2.1.131.1.1.1.3.2994177|2|3 +1.3.6.1.2.1.131.1.1.1.3.2994183|2|1 +1.3.6.1.2.1.131.1.1.1.3.3014657|2|3 +1.3.6.1.2.1.131.1.1.1.3.3014663|2|1 +1.3.6.1.2.1.131.1.1.1.3.3072001|2|3 +1.3.6.1.2.1.131.1.1.1.3.3072007|2|1 +1.3.6.1.2.1.131.1.1.1.3.8384513|2|3 +1.3.6.1.2.1.131.1.1.1.3.8384518|2|1 +1.3.6.1.2.1.131.1.1.1.4.1|2|1 +1.3.6.1.2.1.131.1.1.1.4.2|2|1 +1.3.6.1.2.1.131.1.1.1.4.3|2|1 +1.3.6.1.2.1.131.1.1.1.4.4|2|1 +1.3.6.1.2.1.131.1.1.1.4.7|2|1 +1.3.6.1.2.1.131.1.1.1.4.11|2|1 +1.3.6.1.2.1.131.1.1.1.4.12|2|1 +1.3.6.1.2.1.131.1.1.1.4.13|2|1 +1.3.6.1.2.1.131.1.1.1.4.18|2|1 +1.3.6.1.2.1.131.1.1.1.4.26|2|1 +1.3.6.1.2.1.131.1.1.1.4.30|2|1 +1.3.6.1.2.1.131.1.1.1.4.95|2|1 +1.3.6.1.2.1.131.1.1.1.4.96|2|1 +1.3.6.1.2.1.131.1.1.1.4.97|2|1 +1.3.6.1.2.1.131.1.1.1.4.167|2|1 +1.3.6.1.2.1.131.1.1.1.4.168|2|1 +1.3.6.1.2.1.131.1.1.1.4.169|2|1 +1.3.6.1.2.1.131.1.1.1.4.570|2|1 +1.3.6.1.2.1.131.1.1.1.4.625|2|1 +1.3.6.1.2.1.131.1.1.1.4.628|2|1 +1.3.6.1.2.1.131.1.1.1.4.8193|2|1 +1.3.6.1.2.1.131.1.1.1.4.8194|2|1 +1.3.6.1.2.1.131.1.1.1.4.8195|2|1 +1.3.6.1.2.1.131.1.1.1.4.8196|2|1 +1.3.6.1.2.1.131.1.1.1.4.8198|2|1 +1.3.6.1.2.1.131.1.1.1.4.8199|2|1 +1.3.6.1.2.1.131.1.1.1.4.8203|2|1 +1.3.6.1.2.1.131.1.1.1.4.8204|2|1 +1.3.6.1.2.1.131.1.1.1.4.8206|2|1 +1.3.6.1.2.1.131.1.1.1.4.8222|2|1 +1.3.6.1.2.1.131.1.1.1.4.8223|2|1 +1.3.6.1.2.1.131.1.1.1.4.8227|2|1 +1.3.6.1.2.1.131.1.1.1.4.8287|2|1 +1.3.6.1.2.1.131.1.1.1.4.8288|2|1 +1.3.6.1.2.1.131.1.1.1.4.8289|2|1 +1.3.6.1.2.1.131.1.1.1.4.8357|2|1 +1.3.6.1.2.1.131.1.1.1.4.8359|2|1 +1.3.6.1.2.1.131.1.1.1.4.8360|2|1 +1.3.6.1.2.1.131.1.1.1.4.8522|2|1 +1.3.6.1.2.1.131.1.1.1.4.8762|2|1 +1.3.6.1.2.1.131.1.1.1.4.8793|2|1 +1.3.6.1.2.1.131.1.1.1.4.8794|2|1 +1.3.6.1.2.1.131.1.1.1.4.8795|2|1 +1.3.6.1.2.1.131.1.1.1.4.8796|2|1 +1.3.6.1.2.1.131.1.1.1.4.8797|2|1 +1.3.6.1.2.1.131.1.1.1.4.8798|2|1 +1.3.6.1.2.1.131.1.1.1.4.8799|2|1 +1.3.6.1.2.1.131.1.1.1.4.8800|2|1 +1.3.6.1.2.1.131.1.1.1.4.8801|2|1 +1.3.6.1.2.1.131.1.1.1.4.8802|2|1 +1.3.6.1.2.1.131.1.1.1.4.8803|2|1 +1.3.6.1.2.1.131.1.1.1.4.8804|2|1 +1.3.6.1.2.1.131.1.1.1.4.8805|2|1 +1.3.6.1.2.1.131.1.1.1.4.8806|2|1 +1.3.6.1.2.1.131.1.1.1.4.8807|2|1 +1.3.6.1.2.1.131.1.1.1.4.8808|2|1 +1.3.6.1.2.1.131.1.1.1.4.8809|2|1 +1.3.6.1.2.1.131.1.1.1.4.8810|2|1 +1.3.6.1.2.1.131.1.1.1.4.8811|2|1 +1.3.6.1.2.1.131.1.1.1.4.8812|2|1 +1.3.6.1.2.1.131.1.1.1.4.8813|2|1 +1.3.6.1.2.1.131.1.1.1.4.8814|2|1 +1.3.6.1.2.1.131.1.1.1.4.8815|2|1 +1.3.6.1.2.1.131.1.1.1.4.8816|2|1 +1.3.6.1.2.1.131.1.1.1.4.8817|2|1 +1.3.6.1.2.1.131.1.1.1.4.8818|2|1 +1.3.6.1.2.1.131.1.1.1.4.8819|2|1 +1.3.6.1.2.1.131.1.1.1.4.8820|2|1 +1.3.6.1.2.1.131.1.1.1.4.8821|2|1 +1.3.6.1.2.1.131.1.1.1.4.8822|2|1 +1.3.6.1.2.1.131.1.1.1.4.8823|2|1 +1.3.6.1.2.1.131.1.1.1.4.8824|2|1 +1.3.6.1.2.1.131.1.1.1.4.8825|2|1 +1.3.6.1.2.1.131.1.1.1.4.8826|2|1 +1.3.6.1.2.1.131.1.1.1.4.8827|2|1 +1.3.6.1.2.1.131.1.1.1.4.8828|2|1 +1.3.6.1.2.1.131.1.1.1.4.8829|2|1 +1.3.6.1.2.1.131.1.1.1.4.8830|2|1 +1.3.6.1.2.1.131.1.1.1.4.8831|2|1 +1.3.6.1.2.1.131.1.1.1.4.8832|2|1 +1.3.6.1.2.1.131.1.1.1.4.8833|2|1 +1.3.6.1.2.1.131.1.1.1.4.8834|2|1 +1.3.6.1.2.1.131.1.1.1.4.40967|2|1 +1.3.6.1.2.1.131.1.1.1.4.45063|2|1 +1.3.6.1.2.1.131.1.1.1.4.49159|2|1 +1.3.6.1.2.1.131.1.1.1.4.118790|2|1 +1.3.6.1.2.1.131.1.1.1.4.2375682|2|1 +1.3.6.1.2.1.131.1.1.1.4.2375687|2|1 +1.3.6.1.2.1.131.1.1.1.4.2379778|2|1 +1.3.6.1.2.1.131.1.1.1.4.2379783|2|1 +1.3.6.1.2.1.131.1.1.1.4.2990081|2|1 +1.3.6.1.2.1.131.1.1.1.4.2990087|2|1 +1.3.6.1.2.1.131.1.1.1.4.2994177|2|1 +1.3.6.1.2.1.131.1.1.1.4.2994183|2|1 +1.3.6.1.2.1.131.1.1.1.4.3014657|2|1 +1.3.6.1.2.1.131.1.1.1.4.3014663|2|1 +1.3.6.1.2.1.131.1.1.1.4.3072001|2|1 +1.3.6.1.2.1.131.1.1.1.4.3072007|2|1 +1.3.6.1.2.1.131.1.1.1.4.8384513|2|1 +1.3.6.1.2.1.131.1.1.1.4.8384518|2|1 +1.3.6.1.2.1.131.1.1.1.5.1|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.2|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.3|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.4|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.7|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.11|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.12|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.13|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.18|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.26|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.30|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.95|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.96|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.97|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.167|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.168|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.169|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.570|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.625|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.628|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8193|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8194|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8195|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8196|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8198|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8199|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8203|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8204|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8206|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8222|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8223|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8227|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8287|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8288|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8289|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8357|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8359|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8360|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8522|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8762|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8793|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8794|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8795|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8796|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8797|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8798|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8799|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8800|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8801|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8802|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8803|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8804|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8805|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8806|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8807|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8808|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8809|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8810|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8811|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8812|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8813|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8814|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8815|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8816|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8817|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8818|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8819|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8820|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8821|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8822|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8823|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8824|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8825|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8826|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8827|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8828|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8829|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8830|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8831|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8832|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8833|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8834|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.40967|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.45063|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.49159|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.118790|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.2375682|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.2375687|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.2379778|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.2379783|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.2990081|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.2990087|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.2994177|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.2994183|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.3014657|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.3014663|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.3072001|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.3072007|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8384513|4|80 0 +1.3.6.1.2.1.131.1.1.1.5.8384518|4|80 0 +1.3.6.1.2.1.131.1.1.1.6.1|2|1 +1.3.6.1.2.1.131.1.1.1.6.2|2|1 +1.3.6.1.2.1.131.1.1.1.6.3|2|1 +1.3.6.1.2.1.131.1.1.1.6.4|2|1 +1.3.6.1.2.1.131.1.1.1.6.7|2|1 +1.3.6.1.2.1.131.1.1.1.6.11|2|1 +1.3.6.1.2.1.131.1.1.1.6.12|2|1 +1.3.6.1.2.1.131.1.1.1.6.13|2|1 +1.3.6.1.2.1.131.1.1.1.6.18|2|1 +1.3.6.1.2.1.131.1.1.1.6.26|2|1 +1.3.6.1.2.1.131.1.1.1.6.30|2|1 +1.3.6.1.2.1.131.1.1.1.6.95|2|4 +1.3.6.1.2.1.131.1.1.1.6.96|2|1 +1.3.6.1.2.1.131.1.1.1.6.97|2|1 +1.3.6.1.2.1.131.1.1.1.6.167|2|1 +1.3.6.1.2.1.131.1.1.1.6.168|2|1 +1.3.6.1.2.1.131.1.1.1.6.169|2|1 +1.3.6.1.2.1.131.1.1.1.6.570|2|1 +1.3.6.1.2.1.131.1.1.1.6.625|2|1 +1.3.6.1.2.1.131.1.1.1.6.628|2|1 +1.3.6.1.2.1.131.1.1.1.6.8193|2|1 +1.3.6.1.2.1.131.1.1.1.6.8194|2|1 +1.3.6.1.2.1.131.1.1.1.6.8195|2|1 +1.3.6.1.2.1.131.1.1.1.6.8196|2|1 +1.3.6.1.2.1.131.1.1.1.6.8198|2|1 +1.3.6.1.2.1.131.1.1.1.6.8199|2|1 +1.3.6.1.2.1.131.1.1.1.6.8203|2|1 +1.3.6.1.2.1.131.1.1.1.6.8204|2|1 +1.3.6.1.2.1.131.1.1.1.6.8206|2|1 +1.3.6.1.2.1.131.1.1.1.6.8222|2|1 +1.3.6.1.2.1.131.1.1.1.6.8223|2|1 +1.3.6.1.2.1.131.1.1.1.6.8227|2|1 +1.3.6.1.2.1.131.1.1.1.6.8287|2|1 +1.3.6.1.2.1.131.1.1.1.6.8288|2|1 +1.3.6.1.2.1.131.1.1.1.6.8289|2|1 +1.3.6.1.2.1.131.1.1.1.6.8357|2|1 +1.3.6.1.2.1.131.1.1.1.6.8359|2|1 +1.3.6.1.2.1.131.1.1.1.6.8360|2|1 +1.3.6.1.2.1.131.1.1.1.6.8522|2|1 +1.3.6.1.2.1.131.1.1.1.6.8762|2|1 +1.3.6.1.2.1.131.1.1.1.6.8793|2|1 +1.3.6.1.2.1.131.1.1.1.6.8794|2|1 +1.3.6.1.2.1.131.1.1.1.6.8795|2|1 +1.3.6.1.2.1.131.1.1.1.6.8796|2|1 +1.3.6.1.2.1.131.1.1.1.6.8797|2|1 +1.3.6.1.2.1.131.1.1.1.6.8798|2|1 +1.3.6.1.2.1.131.1.1.1.6.8799|2|1 +1.3.6.1.2.1.131.1.1.1.6.8800|2|1 +1.3.6.1.2.1.131.1.1.1.6.8801|2|1 +1.3.6.1.2.1.131.1.1.1.6.8802|2|1 +1.3.6.1.2.1.131.1.1.1.6.8803|2|1 +1.3.6.1.2.1.131.1.1.1.6.8804|2|1 +1.3.6.1.2.1.131.1.1.1.6.8805|2|1 +1.3.6.1.2.1.131.1.1.1.6.8806|2|1 +1.3.6.1.2.1.131.1.1.1.6.8807|2|1 +1.3.6.1.2.1.131.1.1.1.6.8808|2|1 +1.3.6.1.2.1.131.1.1.1.6.8809|2|1 +1.3.6.1.2.1.131.1.1.1.6.8810|2|1 +1.3.6.1.2.1.131.1.1.1.6.8811|2|1 +1.3.6.1.2.1.131.1.1.1.6.8812|2|1 +1.3.6.1.2.1.131.1.1.1.6.8813|2|1 +1.3.6.1.2.1.131.1.1.1.6.8814|2|1 +1.3.6.1.2.1.131.1.1.1.6.8815|2|1 +1.3.6.1.2.1.131.1.1.1.6.8816|2|1 +1.3.6.1.2.1.131.1.1.1.6.8817|2|1 +1.3.6.1.2.1.131.1.1.1.6.8818|2|1 +1.3.6.1.2.1.131.1.1.1.6.8819|2|1 +1.3.6.1.2.1.131.1.1.1.6.8820|2|1 +1.3.6.1.2.1.131.1.1.1.6.8821|2|1 +1.3.6.1.2.1.131.1.1.1.6.8822|2|1 +1.3.6.1.2.1.131.1.1.1.6.8823|2|1 +1.3.6.1.2.1.131.1.1.1.6.8824|2|1 +1.3.6.1.2.1.131.1.1.1.6.8825|2|1 +1.3.6.1.2.1.131.1.1.1.6.8826|2|1 +1.3.6.1.2.1.131.1.1.1.6.8827|2|1 +1.3.6.1.2.1.131.1.1.1.6.8828|2|1 +1.3.6.1.2.1.131.1.1.1.6.8829|2|1 +1.3.6.1.2.1.131.1.1.1.6.8830|2|1 +1.3.6.1.2.1.131.1.1.1.6.8831|2|1 +1.3.6.1.2.1.131.1.1.1.6.8832|2|1 +1.3.6.1.2.1.131.1.1.1.6.8833|2|1 +1.3.6.1.2.1.131.1.1.1.6.8834|2|1 +1.3.6.1.2.1.131.1.1.1.6.40967|2|1 +1.3.6.1.2.1.131.1.1.1.6.45063|2|1 +1.3.6.1.2.1.131.1.1.1.6.49159|2|1 +1.3.6.1.2.1.131.1.1.1.6.118790|2|1 +1.3.6.1.2.1.131.1.1.1.6.2375682|2|1 +1.3.6.1.2.1.131.1.1.1.6.2375687|2|1 +1.3.6.1.2.1.131.1.1.1.6.2379778|2|1 +1.3.6.1.2.1.131.1.1.1.6.2379783|2|1 +1.3.6.1.2.1.131.1.1.1.6.2990081|2|1 +1.3.6.1.2.1.131.1.1.1.6.2990087|2|1 +1.3.6.1.2.1.131.1.1.1.6.2994177|2|1 +1.3.6.1.2.1.131.1.1.1.6.2994183|2|1 +1.3.6.1.2.1.131.1.1.1.6.3014657|2|1 +1.3.6.1.2.1.131.1.1.1.6.3014663|2|1 +1.3.6.1.2.1.131.1.1.1.6.3072001|2|1 +1.3.6.1.2.1.131.1.1.1.6.3072007|2|1 +1.3.6.1.2.1.131.1.1.1.6.8384513|2|1 +1.3.6.1.2.1.131.1.1.1.6.8384518|2|1 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.178|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.179|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.182|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.290|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.293|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.296|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.297|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.298|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.302|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.303|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.304|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.305|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.306|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2401|2|5 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2601|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2602|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2603|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2604|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2605|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2606|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2607|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2608|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2609|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2610|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2611|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2612|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2613|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2614|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2615|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2616|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2617|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2618|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2619|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2620|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2621|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2622|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2623|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2624|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2625|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2626|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2627|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2628|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2629|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2630|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2631|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.8492|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.8493|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.8494|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.8495|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.8496|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.8497|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.8498|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.8499|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.8592|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.8593|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.8594|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.8595|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.8596|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.8597|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.8599|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.8600|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.8601|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.8602|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.8603|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.8604|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10593|2|5 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10793|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10794|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10795|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10796|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10797|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10798|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10799|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10800|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10801|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10802|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10803|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10804|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10805|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10806|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10807|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10808|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10809|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10810|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10811|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10812|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10813|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10814|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10815|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10816|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10817|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10818|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10819|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10820|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10821|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10822|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10823|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10824|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10825|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10826|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10827|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10828|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10829|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10830|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10831|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10832|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10833|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10834|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10835|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10836|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10837|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10838|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10839|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10840|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10841|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10842|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10843|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10844|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10845|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10846|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10847|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10848|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10849|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10850|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10851|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10852|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10853|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10854|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10855|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10856|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10857|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.10858|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.41910|2|10 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.46006|2|10 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.50102|2|10 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2375930|2|5 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2375931|2|5 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2375940|2|3 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2375941|2|3 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2375950|2|6 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2375951|2|6 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2375970|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2375971|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2375972|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2376630|2|10 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2376631|2|10 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2380026|2|5 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2380027|2|5 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2380036|2|3 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2380037|2|3 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2380046|2|6 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2380047|2|6 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2380066|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2380067|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2380068|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2380726|2|10 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2380727|2|10 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2990320|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2990330|2|5 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2990350|2|6 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2990362|2|6 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2990470|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2994416|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2994426|2|5 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2994446|2|6 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2994458|2|6 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2994566|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.3014896|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.3014906|2|5 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.3014926|2|6 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.3014938|2|6 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.3015046|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.3072240|2|4 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.3072250|2|5 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.3072270|2|6 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.3072282|2|6 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.3072390|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.178|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.179|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.182|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.290|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.293|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.296|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.297|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.298|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.302|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.303|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.304|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.305|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.306|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2401|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2601|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2602|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2603|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2604|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2605|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2606|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2607|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2608|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2609|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2610|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2611|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2612|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2613|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2614|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2615|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2616|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2617|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2618|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2619|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2620|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2621|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2622|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2623|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2624|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2625|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2626|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2627|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2628|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2629|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2630|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2631|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.8492|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.8493|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.8494|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.8495|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.8496|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.8497|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.8498|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.8499|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.8592|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.8593|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.8594|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.8595|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.8596|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.8597|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.8599|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.8600|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.8601|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.8602|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.8603|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.8604|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10593|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10793|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10794|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10795|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10796|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10797|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10798|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10799|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10800|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10801|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10802|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10803|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10804|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10805|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10806|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10807|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10808|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10809|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10810|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10811|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10812|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10813|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10814|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10815|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10816|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10817|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10818|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10819|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10820|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10821|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10822|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10823|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10824|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10825|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10826|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10827|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10828|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10829|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10830|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10831|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10832|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10833|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10834|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10835|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10836|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10837|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10838|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10839|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10840|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10841|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10842|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10843|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10844|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10845|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10846|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10847|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10848|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10849|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10850|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10851|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10852|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10853|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10854|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10855|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10856|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10857|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.10858|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.41910|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.46006|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.50102|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2375930|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2375931|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2375940|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2375941|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2375950|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2375951|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2375970|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2375971|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2375972|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2376630|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2376631|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2380026|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2380027|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2380036|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2380037|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2380046|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2380047|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2380066|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2380067|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2380068|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2380726|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2380727|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2990320|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2990330|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2990350|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2990362|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2990470|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2994416|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2994426|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2994446|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2994458|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2994566|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.3014896|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.3014906|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.3014926|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.3014938|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.3015046|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.3072240|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.3072250|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.3072270|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.3072282|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.3072390|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.178|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.179|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.182|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.290|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.293|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.296|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.297|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.298|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.302|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.303|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.304|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.305|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.306|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2401|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2601|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2602|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2603|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2604|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2605|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2606|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2607|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2608|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2609|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2610|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2611|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2612|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2613|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2614|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2615|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2616|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2617|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2618|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2619|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2620|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2621|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2622|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2623|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2624|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2625|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2626|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2627|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2628|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2629|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2630|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2631|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.8492|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.8493|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.8494|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.8495|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.8496|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.8497|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.8498|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.8499|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.8592|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.8593|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.8594|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.8595|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.8596|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.8597|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.8599|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.8600|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.8601|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.8602|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.8603|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.8604|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10593|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10793|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10794|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10795|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10796|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10797|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10798|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10799|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10800|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10801|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10802|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10803|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10804|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10805|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10806|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10807|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10808|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10809|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10810|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10811|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10812|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10813|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10814|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10815|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10816|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10817|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10818|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10819|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10820|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10821|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10822|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10823|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10824|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10825|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10826|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10827|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10828|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10829|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10830|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10831|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10832|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10833|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10834|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10835|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10836|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10837|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10838|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10839|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10840|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10841|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10842|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10843|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10844|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10845|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10846|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10847|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10848|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10849|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10850|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10851|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10852|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10853|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10854|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10855|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10856|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10857|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.10858|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.41910|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.46006|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.50102|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2375930|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2375931|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2375940|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2375941|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2375950|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2375951|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2375970|2|3 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2375971|2|3 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2375972|2|3 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2376630|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2376631|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2380026|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2380027|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2380036|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2380037|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2380046|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2380047|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2380066|2|3 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2380067|2|3 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2380068|2|3 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2380726|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2380727|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2990320|2|3 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2990330|2|3 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2990350|2|5 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2990362|2|5 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2990470|2|3 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2994416|2|3 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2994426|2|3 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2994446|2|5 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2994458|2|5 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2994566|2|3 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.3014896|2|3 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.3014906|2|3 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.3014926|2|5 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.3014938|2|5 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.3015046|2|3 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.3072240|2|3 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.3072250|2|3 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.3072270|2|5 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.3072282|2|5 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.3072390|2|3 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.178|2|22 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.179|2|22 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.182|2|27 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.290|2|27 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.293|2|22 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.296|2|20 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.297|2|17 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.298|2|23 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.302|2|25 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.303|2|26 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.304|2|25 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.305|2|26 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.306|2|18 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2401|2|5285 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2601|2|5002 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2602|2|6999 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2603|2|3299 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2604|2|1799 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2605|2|2500 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2606|2|985 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2607|2|1211 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2608|2|3299 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2609|2|1500 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2610|2|1699 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2611|2|3297 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2612|2|1052 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2613|2|1788 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2614|2|1300 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2615|2|604 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2616|2|1799 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2617|2|3300 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2618|2|900 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2619|2|1000 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2620|2|1800 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2621|2|1800 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2622|2|1200 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2623|2|605 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2624|2|1199 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2625|2|1000 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2626|2|999 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2627|2|1500 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2628|2|1000 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2629|2|1200 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2630|2|1799 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2631|2|12049 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.8492|2|22 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.8493|2|21 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.8494|2|23 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.8495|2|31 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.8496|2|35 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.8497|2|34 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.8498|2|33 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.8499|2|31 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.8592|2|37 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.8593|2|34 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.8594|2|34 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.8595|2|42 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.8596|2|40 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.8597|2|34 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.8599|2|27 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.8600|2|23 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.8601|2|23 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.8602|2|23 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.8603|2|21 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.8604|2|36 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10593|2|29345 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10793|2|1202 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10794|2|1199 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10795|2|3299 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10796|2|1800 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10797|2|2499 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10798|2|1500 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10799|2|606 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10800|2|1210 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10801|2|3300 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10802|2|1500 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10803|2|1700 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10804|2|3300 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10805|2|1050 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10806|2|1787 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10807|2|1300 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10808|2|606 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10809|2|999 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10810|2|999 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10811|2|1000 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10812|2|1199 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10813|2|1800 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10814|2|3299 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10815|2|2500 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10816|2|6999 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10817|2|5000 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10818|2|900 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10819|2|1799 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10820|2|1000 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10821|2|999 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10822|2|999 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10823|2|1000 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10824|2|1000 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10825|2|999 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10826|2|1799 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10827|2|1499 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10828|2|979 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10829|2|748 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10830|2|2499 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10831|2|1500 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10832|2|999 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10833|2|924 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10834|2|750 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10835|2|1000 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10836|2|999 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10837|2|825 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10838|2|998 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10839|2|900 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10840|2|1800 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10841|2|899 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10842|2|900 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10843|2|900 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10844|2|3299 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10845|2|1800 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10846|2|3300 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10847|2|3280 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10848|2|1799 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10849|2|1500 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10850|2|977 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10851|2|749 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10852|2|2510 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10853|2|1500 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10854|2|1000 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10855|2|925 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10856|2|750 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10857|2|999 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.10858|2|12021 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.41910|2|6990 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.46006|2|6990 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.50102|2|7050 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2375930|2|1125 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2375931|2|17843 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2375940|2|232500 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2375941|2|12043 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2375950|2|250250 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2375951|2|216000 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2375970|2|22000 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2375971|2|30250 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2375972|2|30750 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2376630|2|10432000 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2376631|2|10016000 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2380026|2|1095 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2380027|2|17531 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2380036|2|232500 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2380037|2|12044 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2380046|2|244750 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2380047|2|211250 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2380066|2|20500 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2380067|2|28750 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2380068|2|30000 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2380726|2|11136000 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2380727|2|9984000 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2990320|2|3380 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2990330|2|25012 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2990350|2|33210 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2990362|2|46320 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2990470|2|18394 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2994416|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2994426|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2994446|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2994458|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2994566|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.3014896|2|3359 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.3014906|2|29282 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.3014926|2|178640 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.3014938|2|61480 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.3015046|2|29812 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.3072240|2|3265 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.3072250|2|34000 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.3072270|2|59370 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.3072282|2|81900 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.3072390|2|31300 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.178|2|30 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.179|2|30 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.182|2|30 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.290|2|30 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.293|2|30 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.296|2|30 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.297|2|30 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.298|2|30 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.302|2|30 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.303|2|30 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.304|2|30 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.305|2|30 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.306|2|30 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2401|2|30 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2601|2|30 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2602|2|30 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2603|2|30 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2604|2|30 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2605|2|30 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2606|2|30 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2607|2|30 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2608|2|30 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2609|2|30 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2610|2|30 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2611|2|30 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2612|2|30 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2613|2|30 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2614|2|30 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2615|2|30 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2616|2|30 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2617|2|30 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2618|2|30 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2619|2|30 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2620|2|30 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2621|2|30 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2622|2|30 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2623|2|30 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2624|2|30 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2625|2|30 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2626|2|30 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2627|2|30 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2628|2|30 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2629|2|30 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2630|2|30 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2631|2|30 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.8492|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.8493|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.8494|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.8495|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.8496|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.8497|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.8498|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.8499|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.8592|2|8222 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.8593|2|8222 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.8594|2|8222 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.8595|2|8222 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.8596|2|8222 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.8597|2|8222 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.8599|2|8222 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.8600|2|8222 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.8601|2|8222 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.8602|2|8222 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.8603|2|8222 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.8604|2|8222 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10593|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10793|2|8222 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10794|2|8222 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10795|2|8222 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10796|2|8222 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10797|2|8222 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10798|2|8222 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10799|2|8222 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10800|2|8222 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10801|2|8222 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10802|2|8222 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10803|2|8222 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10804|2|8222 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10805|2|8222 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10806|2|8222 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10807|2|8222 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10808|2|8222 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10809|2|8222 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10810|2|8222 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10811|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10812|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10813|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10814|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10815|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10816|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10817|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10818|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10819|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10820|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10821|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10822|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10823|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10824|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10825|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10826|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10827|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10828|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10829|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10830|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10831|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10832|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10833|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10834|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10835|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10836|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10837|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10838|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10839|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10840|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10841|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10842|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10843|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10844|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10845|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10846|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10847|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10848|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10849|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10850|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10851|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10852|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10853|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10854|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10855|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10856|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10857|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.10858|2|8223 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.41910|2|41810 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.46006|2|45906 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.50102|2|50002 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2375930|2|2375681 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2375931|2|2375681 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2375940|2|2375681 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2375941|2|2375681 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2375950|2|2375681 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2375951|2|2375681 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2375970|2|2375681 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2375971|2|2375681 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2375972|2|2375681 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2376630|2|2376530 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2376631|2|2376531 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2380026|2|2379777 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2380027|2|2379777 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2380036|2|2379777 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2380037|2|2379777 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2380046|2|2379777 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2380047|2|2379777 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2380066|2|2379777 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2380067|2|2379777 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2380068|2|2379777 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2380726|2|2380626 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2380727|2|2380627 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2990320|2|2990081 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2990330|2|2990081 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2990350|2|2990081 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2990362|2|2990081 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2990470|2|2990081 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2994416|2|2994177 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2994426|2|2994177 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2994446|2|2994177 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2994458|2|2994177 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2994566|2|2994177 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.3014896|2|3014657 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.3014906|2|3014657 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.3014926|2|3014657 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.3014938|2|3014657 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.3015046|2|3014657 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.3072240|2|3072001 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.3072250|2|3072001 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.3072270|2|3072001 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.3072282|2|3072001 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.3072390|2|3072001 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.178.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.178.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.178.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.178.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.178.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.178.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.179.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.179.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.179.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.179.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.179.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.179.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.182.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.182.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.182.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.182.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.182.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.182.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.290.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.290.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.290.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.290.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.290.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.290.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.293.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.293.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.293.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.293.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.293.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.293.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.296.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.296.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.296.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.296.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.296.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.296.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.297.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.297.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.297.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.297.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.297.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.297.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.298.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.298.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.298.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.298.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.298.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.298.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.302.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.302.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.302.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.302.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.302.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.302.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.303.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.303.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.303.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.303.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.303.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.303.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.304.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.304.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.304.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.304.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.304.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.304.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.305.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.305.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.305.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.305.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.305.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.305.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.306.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.306.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.306.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.306.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.306.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.306.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2601.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2601.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2601.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2601.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2601.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2601.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2602.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2602.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2602.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2602.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2602.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2602.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2603.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2603.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2603.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2603.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2603.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2603.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2604.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2604.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2604.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2604.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2604.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2604.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2605.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2605.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2605.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2605.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2605.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2605.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2606.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2606.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2606.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2606.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2606.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2606.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2607.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2607.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2607.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2607.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2607.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2607.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2608.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2608.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2608.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2608.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2608.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2608.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2609.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2609.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2609.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2609.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2609.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2609.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2610.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2610.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2610.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2610.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2610.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2610.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2611.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2611.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2611.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2611.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2611.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2611.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2612.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2612.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2612.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2612.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2612.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2612.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2613.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2613.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2613.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2613.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2613.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2613.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2614.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2614.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2614.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2614.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2614.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2614.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2615.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2615.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2615.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2615.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2615.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2615.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2616.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2616.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2616.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2616.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2616.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2616.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2617.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2617.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2617.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2617.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2617.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2617.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2618.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2618.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2618.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2618.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2618.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2618.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2619.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2619.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2619.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2619.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2619.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2619.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2620.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2620.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2620.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2620.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2620.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2620.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2621.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2621.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2621.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2621.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2621.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2621.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2622.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2622.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2622.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2622.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2622.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2622.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2623.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2623.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2623.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2623.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2623.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2623.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2624.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2624.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2624.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2624.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2624.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2624.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2625.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2625.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2625.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2625.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2625.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2625.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2626.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2626.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2626.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2626.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2626.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2626.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2627.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2627.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2627.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2627.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2627.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2627.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2628.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2628.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2628.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2628.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2628.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2628.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2629.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2629.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2629.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2629.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2629.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2629.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2630.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2630.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2630.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2630.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2630.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2630.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2631.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2631.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2631.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2631.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2631.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2631.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8492.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8492.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8492.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8492.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8492.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8492.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8493.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8493.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8493.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8493.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8493.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8493.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8494.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8494.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8494.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8494.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8494.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8494.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8495.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8495.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8495.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8495.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8495.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8495.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8496.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8496.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8496.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8496.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8496.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8496.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8497.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8497.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8497.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8497.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8497.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8497.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8498.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8498.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8498.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8498.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8498.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8498.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8499.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8499.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8499.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8499.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8499.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8499.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8592.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8592.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8592.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8592.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8592.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8592.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8593.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8593.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8593.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8593.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8593.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8593.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8594.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8594.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8594.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8594.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8594.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8594.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8595.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8595.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8595.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8595.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8595.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8595.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8596.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8596.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8596.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8596.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8596.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8596.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8597.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8597.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8597.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8597.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8597.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8597.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8599.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8599.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8599.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8599.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8599.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8599.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8600.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8600.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8600.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8600.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8600.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8600.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8601.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8601.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8601.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8601.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8601.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8601.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8602.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8602.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8602.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8602.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8602.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8602.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8603.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8603.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8603.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8603.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8603.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8603.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8604.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8604.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8604.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8604.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8604.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.8604.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10793.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10793.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10793.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10793.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10793.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10793.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10794.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10794.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10794.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10794.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10794.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10794.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10795.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10795.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10795.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10795.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10795.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10795.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10796.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10796.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10796.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10796.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10796.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10796.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10797.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10797.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10797.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10797.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10797.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10797.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10798.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10798.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10798.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10798.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10798.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10798.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10799.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10799.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10799.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10799.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10799.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10799.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10800.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10800.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10800.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10800.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10800.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10800.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10801.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10801.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10801.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10801.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10801.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10801.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10802.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10802.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10802.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10802.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10802.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10802.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10803.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10803.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10803.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10803.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10803.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10803.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10804.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10804.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10804.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10804.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10804.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10804.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10805.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10805.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10805.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10805.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10805.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10805.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10806.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10806.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10806.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10806.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10806.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10806.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10807.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10807.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10807.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10807.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10807.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10807.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10808.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10808.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10808.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10808.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10808.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10808.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10809.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10809.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10809.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10809.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10809.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10809.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10810.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10810.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10810.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10810.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10810.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10810.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10811.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10811.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10811.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10811.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10811.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10811.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10812.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10812.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10812.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10812.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10812.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10812.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10813.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10813.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10813.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10813.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10813.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10813.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10814.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10814.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10814.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10814.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10814.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10814.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10815.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10815.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10815.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10815.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10815.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10815.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10816.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10816.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10816.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10816.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10816.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10816.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10817.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10817.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10817.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10817.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10817.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10817.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10818.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10818.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10818.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10818.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10818.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10818.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10819.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10819.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10819.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10819.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10819.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10819.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10820.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10820.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10820.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10820.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10820.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10820.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10821.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10821.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10821.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10821.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10821.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10821.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10822.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10822.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10822.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10822.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10822.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10822.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10823.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10823.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10823.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10823.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10823.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10823.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10824.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10824.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10824.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10824.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10824.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10824.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10825.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10825.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10825.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10825.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10825.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10825.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10826.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10826.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10826.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10826.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10826.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10826.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10827.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10827.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10827.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10827.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10827.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10827.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10828.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10828.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10828.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10828.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10828.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10828.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10829.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10829.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10829.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10829.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10829.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10829.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10830.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10830.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10830.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10830.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10830.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10830.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10831.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10831.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10831.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10831.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10831.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10831.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10832.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10832.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10832.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10832.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10832.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10832.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10833.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10833.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10833.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10833.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10833.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10833.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10834.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10834.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10834.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10834.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10834.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10834.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10835.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10835.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10835.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10835.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10835.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10835.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10836.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10836.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10836.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10836.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10836.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10836.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10837.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10837.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10837.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10837.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10837.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10837.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10838.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10838.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10838.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10838.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10838.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10838.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10839.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10839.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10839.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10839.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10839.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10839.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10840.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10840.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10840.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10840.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10840.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10840.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10841.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10841.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10841.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10841.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10841.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10841.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10842.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10842.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10842.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10842.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10842.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10842.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10843.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10843.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10843.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10843.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10843.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10843.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10844.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10844.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10844.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10844.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10844.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10844.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10845.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10845.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10845.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10845.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10845.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10845.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10846.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10846.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10846.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10846.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10846.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10846.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10847.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10847.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10847.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10847.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10847.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10847.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10848.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10848.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10848.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10848.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10848.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10848.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10849.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10849.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10849.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10849.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10849.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10849.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10850.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10850.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10850.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10850.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10850.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10850.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10851.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10851.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10851.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10851.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10851.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10851.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10852.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10852.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10852.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10852.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10852.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10852.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10853.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10853.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10853.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10853.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10853.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10853.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10854.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10854.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10854.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10854.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10854.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10854.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10855.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10855.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10855.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10855.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10855.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10855.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10856.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10856.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10856.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10856.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10856.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10856.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10857.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10857.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10857.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10857.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10857.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10857.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10858.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10858.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10858.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10858.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10858.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.10858.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2375930.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2375930.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2375930.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2375930.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2375930.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2375930.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2375931.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2375931.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2375931.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2375931.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2375931.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2375931.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2375940.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2375940.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2375940.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2375940.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2375940.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2375940.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2375941.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2375941.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2375941.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2375941.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2375941.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2375941.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2375970.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2375970.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2375970.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2375970.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2375970.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2375970.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2375971.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2375971.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2375971.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2375971.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2375971.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2375971.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2375972.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2375972.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2375972.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2375972.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2375972.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2375972.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2376630.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2376630.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2376630.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2376630.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2376630.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2376630.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2376631.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2376631.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2376631.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2376631.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2376631.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2376631.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380026.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380026.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380026.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380026.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380026.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380026.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380027.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380027.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380027.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380027.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380027.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380027.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380036.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380036.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380036.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380036.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380036.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380036.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380037.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380037.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380037.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380037.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380037.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380037.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380066.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380066.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380066.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380066.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380066.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380066.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380067.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380067.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380067.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380067.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380067.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380067.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380068.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380068.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380068.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380068.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380068.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380068.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380726.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380726.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380726.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380726.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380726.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380726.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380727.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380727.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380727.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380727.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380727.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2380727.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2990320.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2990320.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2990320.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2990320.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2990320.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2990320.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2990330.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2990330.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2990330.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2990330.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2990330.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2990330.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2990350.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2990350.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2990350.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2990350.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2990350.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2990350.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2990362.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2990362.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2990362.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2990362.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2990362.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2990362.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2990470.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2990470.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2990470.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2990470.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2990470.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2990470.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2994416.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2994416.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2994416.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2994416.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2994416.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2994416.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2994426.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2994426.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2994426.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2994426.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2994426.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2994426.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2994446.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2994446.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2994446.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2994446.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2994446.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2994446.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2994458.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2994458.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2994458.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2994458.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2994458.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2994458.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2994566.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2994566.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2994566.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2994566.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2994566.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2994566.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3014896.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3014896.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3014896.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3014896.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3014896.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3014896.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3014906.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3014906.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3014906.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3014906.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3014906.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3014906.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3014926.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3014926.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3014926.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3014926.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3014926.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3014926.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3014938.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3014938.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3014938.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3014938.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3014938.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3014938.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3015046.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3015046.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3015046.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3015046.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3015046.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3015046.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3072240.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3072240.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3072240.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3072240.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3072240.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3072240.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3072250.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3072250.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3072250.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3072250.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3072250.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3072250.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3072270.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3072270.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3072270.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3072270.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3072270.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3072270.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3072282.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3072282.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3072282.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3072282.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3072282.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3072282.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3072390.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3072390.2|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3072390.3|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3072390.4|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3072390.5|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.3072390.6|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.178.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.178.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.178.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.178.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.178.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.178.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.179.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.179.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.179.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.179.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.179.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.179.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.182.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.182.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.182.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.182.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.182.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.182.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.290.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.290.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.290.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.290.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.290.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.290.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.293.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.293.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.293.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.293.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.293.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.293.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.296.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.296.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.296.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.296.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.296.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.296.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.297.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.297.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.297.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.297.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.297.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.297.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.298.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.298.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.298.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.298.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.298.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.298.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.302.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.302.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.302.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.302.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.302.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.302.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.303.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.303.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.303.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.303.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.303.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.303.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.304.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.304.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.304.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.304.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.304.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.304.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.305.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.305.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.305.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.305.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.305.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.305.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.306.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.306.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.306.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.306.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.306.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.306.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2601.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2601.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2601.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2601.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2601.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2601.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2602.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2602.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2602.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2602.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2602.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2602.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2603.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2603.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2603.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2603.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2603.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2603.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2604.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2604.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2604.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2604.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2604.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2604.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2605.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2605.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2605.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2605.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2605.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2605.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2606.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2606.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2606.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2606.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2606.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2606.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2607.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2607.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2607.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2607.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2607.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2607.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2608.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2608.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2608.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2608.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2608.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2608.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2609.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2609.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2609.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2609.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2609.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2609.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2610.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2610.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2610.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2610.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2610.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2610.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2611.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2611.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2611.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2611.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2611.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2611.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2612.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2612.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2612.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2612.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2612.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2612.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2613.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2613.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2613.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2613.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2613.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2613.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2614.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2614.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2614.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2614.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2614.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2614.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2615.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2615.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2615.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2615.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2615.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2615.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2616.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2616.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2616.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2616.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2616.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2616.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2617.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2617.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2617.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2617.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2617.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2617.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2618.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2618.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2618.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2618.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2618.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2618.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2619.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2619.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2619.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2619.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2619.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2619.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2620.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2620.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2620.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2620.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2620.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2620.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2621.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2621.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2621.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2621.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2621.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2621.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2622.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2622.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2622.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2622.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2622.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2622.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2623.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2623.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2623.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2623.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2623.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2623.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2624.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2624.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2624.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2624.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2624.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2624.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2625.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2625.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2625.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2625.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2625.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2625.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2626.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2626.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2626.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2626.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2626.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2626.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2627.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2627.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2627.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2627.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2627.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2627.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2628.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2628.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2628.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2628.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2628.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2628.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2629.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2629.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2629.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2629.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2629.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2629.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2630.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2630.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2630.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2630.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2630.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2630.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2631.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2631.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2631.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2631.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2631.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2631.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8492.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8492.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8492.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8492.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8492.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8492.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8493.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8493.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8493.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8493.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8493.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8493.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8494.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8494.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8494.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8494.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8494.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8494.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8495.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8495.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8495.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8495.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8495.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8495.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8496.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8496.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8496.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8496.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8496.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8496.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8497.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8497.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8497.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8497.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8497.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8497.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8498.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8498.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8498.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8498.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8498.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8498.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8499.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8499.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8499.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8499.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8499.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8499.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8592.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8592.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8592.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8592.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8592.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8592.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8593.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8593.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8593.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8593.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8593.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8593.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8594.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8594.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8594.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8594.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8594.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8594.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8595.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8595.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8595.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8595.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8595.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8595.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8596.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8596.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8596.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8596.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8596.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8596.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8597.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8597.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8597.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8597.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8597.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8597.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8599.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8599.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8599.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8599.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8599.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8599.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8600.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8600.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8600.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8600.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8600.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8600.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8601.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8601.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8601.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8601.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8601.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8601.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8602.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8602.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8602.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8602.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8602.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8602.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8603.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8603.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8603.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8603.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8603.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8603.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8604.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8604.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8604.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8604.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8604.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.8604.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10793.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10793.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10793.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10793.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10793.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10793.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10794.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10794.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10794.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10794.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10794.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10794.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10795.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10795.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10795.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10795.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10795.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10795.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10796.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10796.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10796.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10796.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10796.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10796.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10797.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10797.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10797.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10797.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10797.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10797.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10798.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10798.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10798.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10798.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10798.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10798.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10799.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10799.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10799.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10799.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10799.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10799.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10800.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10800.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10800.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10800.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10800.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10800.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10801.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10801.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10801.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10801.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10801.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10801.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10802.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10802.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10802.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10802.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10802.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10802.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10803.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10803.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10803.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10803.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10803.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10803.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10804.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10804.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10804.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10804.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10804.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10804.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10805.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10805.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10805.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10805.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10805.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10805.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10806.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10806.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10806.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10806.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10806.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10806.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10807.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10807.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10807.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10807.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10807.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10807.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10808.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10808.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10808.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10808.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10808.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10808.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10809.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10809.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10809.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10809.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10809.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10809.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10810.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10810.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10810.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10810.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10810.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10810.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10811.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10811.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10811.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10811.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10811.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10811.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10812.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10812.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10812.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10812.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10812.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10812.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10813.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10813.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10813.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10813.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10813.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10813.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10814.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10814.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10814.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10814.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10814.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10814.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10815.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10815.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10815.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10815.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10815.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10815.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10816.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10816.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10816.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10816.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10816.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10816.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10817.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10817.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10817.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10817.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10817.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10817.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10818.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10818.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10818.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10818.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10818.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10818.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10819.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10819.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10819.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10819.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10819.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10819.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10820.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10820.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10820.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10820.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10820.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10820.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10821.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10821.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10821.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10821.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10821.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10821.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10822.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10822.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10822.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10822.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10822.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10822.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10823.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10823.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10823.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10823.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10823.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10823.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10824.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10824.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10824.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10824.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10824.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10824.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10825.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10825.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10825.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10825.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10825.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10825.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10826.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10826.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10826.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10826.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10826.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10826.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10827.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10827.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10827.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10827.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10827.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10827.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10828.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10828.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10828.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10828.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10828.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10828.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10829.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10829.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10829.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10829.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10829.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10829.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10830.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10830.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10830.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10830.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10830.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10830.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10831.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10831.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10831.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10831.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10831.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10831.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10832.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10832.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10832.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10832.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10832.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10832.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10833.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10833.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10833.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10833.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10833.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10833.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10834.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10834.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10834.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10834.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10834.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10834.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10835.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10835.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10835.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10835.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10835.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10835.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10836.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10836.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10836.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10836.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10836.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10836.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10837.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10837.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10837.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10837.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10837.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10837.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10838.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10838.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10838.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10838.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10838.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10838.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10839.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10839.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10839.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10839.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10839.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10839.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10840.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10840.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10840.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10840.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10840.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10840.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10841.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10841.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10841.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10841.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10841.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10841.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10842.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10842.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10842.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10842.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10842.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10842.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10843.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10843.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10843.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10843.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10843.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10843.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10844.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10844.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10844.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10844.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10844.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10844.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10845.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10845.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10845.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10845.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10845.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10845.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10846.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10846.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10846.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10846.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10846.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10846.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10847.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10847.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10847.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10847.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10847.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10847.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10848.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10848.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10848.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10848.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10848.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10848.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10849.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10849.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10849.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10849.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10849.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10849.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10850.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10850.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10850.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10850.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10850.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10850.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10851.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10851.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10851.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10851.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10851.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10851.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10852.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10852.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10852.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10852.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10852.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10852.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10853.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10853.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10853.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10853.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10853.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10853.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10854.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10854.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10854.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10854.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10854.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10854.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10855.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10855.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10855.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10855.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10855.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10855.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10856.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10856.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10856.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10856.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10856.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10856.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10857.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10857.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10857.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10857.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10857.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10857.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10858.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10858.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10858.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10858.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10858.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.10858.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2375930.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2375930.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2375930.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2375930.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2375930.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2375930.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2375931.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2375931.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2375931.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2375931.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2375931.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2375931.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2375940.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2375940.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2375940.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2375940.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2375940.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2375940.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2375941.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2375941.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2375941.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2375941.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2375941.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2375941.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2375970.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2375970.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2375970.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2375970.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2375970.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2375970.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2375971.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2375971.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2375971.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2375971.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2375971.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2375971.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2375972.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2375972.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2375972.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2375972.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2375972.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2375972.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2376630.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2376630.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2376630.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2376630.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2376630.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2376630.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2376631.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2376631.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2376631.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2376631.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2376631.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2376631.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380026.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380026.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380026.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380026.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380026.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380026.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380027.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380027.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380027.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380027.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380027.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380027.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380036.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380036.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380036.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380036.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380036.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380036.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380037.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380037.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380037.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380037.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380037.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380037.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380066.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380066.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380066.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380066.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380066.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380066.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380067.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380067.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380067.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380067.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380067.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380067.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380068.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380068.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380068.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380068.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380068.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380068.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380726.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380726.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380726.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380726.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380726.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380726.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380727.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380727.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380727.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380727.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380727.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2380727.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2990320.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2990320.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2990320.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2990320.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2990320.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2990320.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2990330.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2990330.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2990330.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2990330.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2990330.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2990330.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2990350.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2990350.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2990350.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2990350.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2990350.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2990350.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2990362.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2990362.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2990362.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2990362.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2990362.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2990362.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2990470.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2990470.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2990470.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2990470.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2990470.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2990470.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2994416.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2994416.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2994416.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2994416.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2994416.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2994416.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2994426.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2994426.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2994426.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2994426.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2994426.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2994426.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2994446.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2994446.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2994446.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2994446.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2994446.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2994446.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2994458.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2994458.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2994458.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2994458.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2994458.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2994458.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2994566.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2994566.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2994566.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2994566.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2994566.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2994566.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3014896.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3014896.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3014896.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3014896.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3014896.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3014896.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3014906.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3014906.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3014906.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3014906.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3014906.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3014906.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3014926.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3014926.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3014926.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3014926.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3014926.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3014926.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3014938.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3014938.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3014938.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3014938.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3014938.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3014938.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3015046.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3015046.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3015046.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3015046.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3015046.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3015046.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3072240.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3072240.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3072240.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3072240.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3072240.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3072240.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3072250.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3072250.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3072250.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3072250.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3072250.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3072250.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3072270.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3072270.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3072270.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3072270.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3072270.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3072270.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3072282.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3072282.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3072282.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3072282.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3072282.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3072282.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3072390.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3072390.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3072390.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3072390.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3072390.5|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.3072390.6|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.178.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.178.2|2|80 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.178.3|2|-5 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.178.4|2|82 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.178.5|2|-10 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.178.6|2|85 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.179.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.179.2|2|80 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.179.3|2|-5 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.179.4|2|82 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.179.5|2|-10 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.179.6|2|85 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.182.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.182.2|2|75 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.182.3|2|-5 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.182.4|2|80 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.182.5|2|-10 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.182.6|2|85 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.290.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.290.2|2|77 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.290.3|2|-5 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.290.4|2|80 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.290.5|2|-10 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.290.6|2|89 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.293.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.293.2|2|88 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.293.3|2|-5 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.293.4|2|93 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.293.5|2|-10 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.293.6|2|98 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.296.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.296.2|2|60 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.296.3|2|-5 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.296.4|2|65 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.296.5|2|-10 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.296.6|2|68 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.297.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.297.2|2|60 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.297.3|2|-5 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.297.4|2|65 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.297.5|2|-10 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.297.6|2|68 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.298.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.298.2|2|60 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.298.3|2|-5 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.298.4|2|65 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.298.5|2|-10 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.298.6|2|68 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.302.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.302.2|2|75 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.302.3|2|-5 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.302.4|2|80 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.302.5|2|-10 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.302.6|2|85 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.303.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.303.2|2|75 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.303.3|2|-5 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.303.4|2|80 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.303.5|2|-10 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.303.6|2|85 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.304.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.304.2|2|70 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.304.3|2|-5 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.304.4|2|75 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.304.5|2|-10 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.304.6|2|80 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.305.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.305.2|2|70 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.305.3|2|-5 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.305.4|2|75 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.305.5|2|-10 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.305.6|2|80 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.306.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.306.2|2|60 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.306.3|2|-5 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.306.4|2|65 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.306.5|2|-10 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.306.6|2|68 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2601.1|2|4550 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2601.2|2|5450 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2601.3|2|4525 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2601.4|2|5475 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2601.5|2|4500 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2601.6|2|5500 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2602.1|2|6370 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2602.2|2|7630 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2602.3|2|6335 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2602.4|2|7665 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2602.5|2|6300 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2602.6|2|7700 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2603.1|2|3003 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2603.2|2|3597 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2603.3|2|2986 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2603.4|2|3613 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2603.5|2|2970 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2603.6|2|3630 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2604.1|2|1638 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2604.2|2|1962 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2604.3|2|1629 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2604.4|2|1971 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2604.5|2|1620 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2604.6|2|1980 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2605.1|2|2275 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2605.2|2|2725 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2605.3|2|2262 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2605.4|2|2737 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2605.5|2|2250 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2605.6|2|2750 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2606.1|2|910 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2606.2|2|1090 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2606.3|2|905 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2606.4|2|1095 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2606.5|2|900 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2606.6|2|1100 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2607.1|2|1092 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2607.2|2|1308 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2607.3|2|1086 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2607.4|2|1314 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2607.5|2|1080 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2607.6|2|1320 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2608.1|2|3003 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2608.2|2|3597 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2608.3|2|2986 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2608.4|2|3613 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2608.5|2|2970 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2608.6|2|3630 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2609.1|2|1365 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2609.2|2|1635 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2609.3|2|1357 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2609.4|2|1642 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2609.5|2|1350 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2609.6|2|1650 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2610.1|2|1547 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2610.2|2|1853 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2610.3|2|1538 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2610.4|2|1861 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2610.5|2|1530 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2610.6|2|1870 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2611.1|2|3003 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2611.2|2|3597 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2611.3|2|2986 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2611.4|2|3613 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2611.5|2|2970 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2611.6|2|3630 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2612.1|2|955 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2612.2|2|1144 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2612.3|2|950 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2612.4|2|1149 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2612.5|2|945 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2612.6|2|1155 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2613.1|2|1638 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2613.2|2|1962 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2613.3|2|1629 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2613.4|2|1971 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2613.5|2|1620 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2613.6|2|1980 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2614.1|2|1183 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2614.2|2|1417 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2614.3|2|1176 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2614.4|2|1423 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2614.5|2|1170 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2614.6|2|1430 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2615.1|2|546 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2615.2|2|654 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2615.3|2|543 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2615.4|2|657 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2615.5|2|540 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2615.6|2|660 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2616.1|2|1638 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2616.2|2|1962 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2616.3|2|1629 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2616.4|2|1971 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2616.5|2|1620 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2616.6|2|1980 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2617.1|2|3003 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2617.2|2|3597 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2617.3|2|2986 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2617.4|2|3613 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2617.5|2|2970 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2617.6|2|3630 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2618.1|2|819 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2618.2|2|981 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2618.3|2|814 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2618.4|2|985 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2618.5|2|810 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2618.6|2|990 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2619.1|2|910 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2619.2|2|1090 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2619.3|2|905 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2619.4|2|1095 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2619.5|2|900 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2619.6|2|1100 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2620.1|2|1638 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2620.2|2|1962 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2620.3|2|1629 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2620.4|2|1971 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2620.5|2|1620 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2620.6|2|1980 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2621.1|2|1638 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2621.2|2|1962 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2621.3|2|1629 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2621.4|2|1971 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2621.5|2|1620 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2621.6|2|1980 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2622.1|2|1092 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2622.2|2|1308 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2622.3|2|1086 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2622.4|2|1314 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2622.5|2|1080 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2622.6|2|1320 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2623.1|2|546 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2623.2|2|654 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2623.3|2|543 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2623.4|2|657 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2623.5|2|540 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2623.6|2|660 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2624.1|2|1092 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2624.2|2|1308 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2624.3|2|1086 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2624.4|2|1314 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2624.5|2|1080 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2624.6|2|1320 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2625.1|2|910 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2625.2|2|1090 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2625.3|2|905 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2625.4|2|1095 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2625.5|2|900 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2625.6|2|1100 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2626.1|2|910 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2626.2|2|1090 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2626.3|2|905 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2626.4|2|1095 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2626.5|2|900 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2626.6|2|1100 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2627.1|2|1365 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2627.2|2|1635 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2627.3|2|1357 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2627.4|2|1642 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2627.5|2|1350 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2627.6|2|1650 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2628.1|2|910 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2628.2|2|1090 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2628.3|2|905 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2628.4|2|1095 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2628.5|2|900 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2628.6|2|1100 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2629.1|2|1092 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2629.2|2|1308 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2629.3|2|1086 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2629.4|2|1314 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2629.5|2|1080 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2629.6|2|1320 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2630.1|2|1638 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2630.2|2|2030 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2630.3|2|1629 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2630.4|2|2048 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2630.5|2|1620 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2630.6|2|2068 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2631.1|2|11400 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2631.2|2|12960 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2631.3|2|11100 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2631.4|2|13080 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2631.5|2|10800 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2631.6|2|13200 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8492.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8492.2|2|60 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8492.3|2|-5 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8492.4|2|65 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8492.5|2|-10 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8492.6|2|68 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8493.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8493.2|2|60 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8493.3|2|-5 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8493.4|2|65 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8493.5|2|-10 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8493.6|2|68 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8494.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8494.2|2|60 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8494.3|2|-5 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8494.4|2|65 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8494.5|2|-10 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8494.6|2|68 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8495.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8495.2|2|75 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8495.3|2|-5 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8495.4|2|80 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8495.5|2|-10 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8495.6|2|85 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8496.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8496.2|2|75 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8496.3|2|-5 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8496.4|2|80 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8496.5|2|-10 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8496.6|2|85 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8497.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8497.2|2|75 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8497.3|2|-5 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8497.4|2|80 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8497.5|2|-10 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8497.6|2|85 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8498.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8498.2|2|70 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8498.3|2|-5 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8498.4|2|75 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8498.5|2|-10 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8498.6|2|80 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8499.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8499.2|2|70 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8499.3|2|-5 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8499.4|2|75 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8499.5|2|-10 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8499.6|2|80 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8592.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8592.2|2|100 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8592.3|2|-5 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8592.4|2|105 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8592.5|2|-10 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8592.6|2|110 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8593.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8593.2|2|100 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8593.3|2|-5 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8593.4|2|105 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8593.5|2|-10 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8593.6|2|110 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8594.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8594.2|2|107 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8594.3|2|-5 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8594.4|2|113 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8594.5|2|-10 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8594.6|2|122 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8595.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8595.2|2|107 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8595.3|2|-5 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8595.4|2|113 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8595.5|2|-10 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8595.6|2|122 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8596.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8596.2|2|107 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8596.3|2|-5 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8596.4|2|113 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8596.5|2|-10 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8596.6|2|122 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8597.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8597.2|2|107 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8597.3|2|-5 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8597.4|2|113 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8597.5|2|-10 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8597.6|2|122 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8599.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8599.2|2|77 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8599.3|2|-5 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8599.4|2|80 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8599.5|2|-10 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8599.6|2|89 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8600.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8600.2|2|88 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8600.3|2|-5 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8600.4|2|93 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8600.5|2|-10 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8600.6|2|98 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8601.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8601.2|2|80 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8601.3|2|-5 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8601.4|2|82 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8601.5|2|-10 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8601.6|2|85 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8602.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8602.2|2|80 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8602.3|2|-5 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8602.4|2|82 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8602.5|2|-10 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8602.6|2|85 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8603.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8603.2|2|60 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8603.3|2|-5 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8603.4|2|65 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8603.5|2|-10 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8603.6|2|68 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8604.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8604.2|2|75 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8604.3|2|-5 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8604.4|2|80 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8604.5|2|-10 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.8604.6|2|85 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10793.1|2|1092 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10793.2|2|1308 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10793.3|2|1086 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10793.4|2|1314 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10793.5|2|1080 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10793.6|2|1320 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10794.1|2|1092 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10794.2|2|1308 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10794.3|2|1086 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10794.4|2|1314 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10794.5|2|1080 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10794.6|2|1320 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10795.1|2|3001 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10795.2|2|3594 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10795.3|2|2985 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10795.4|2|3612 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10795.5|2|2970 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10795.6|2|3630 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10796.1|2|1638 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10796.2|2|1962 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10796.3|2|1629 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10796.4|2|1971 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10796.5|2|1620 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10796.6|2|1980 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10797.1|2|2275 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10797.2|2|2725 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10797.3|2|2262 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10797.4|2|2737 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10797.5|2|2250 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10797.6|2|2750 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10798.1|2|1365 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10798.2|2|1635 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10798.3|2|1357 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10798.4|2|1642 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10798.5|2|1350 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10798.6|2|1650 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10799.1|2|546 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10799.2|2|654 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10799.3|2|543 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10799.4|2|657 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10799.5|2|540 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10799.6|2|660 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10800.1|2|1092 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10800.2|2|1308 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10800.3|2|1086 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10800.4|2|1314 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10800.5|2|1080 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10800.6|2|1332 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10801.1|2|3003 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10801.2|2|3597 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10801.3|2|2986 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10801.4|2|3613 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10801.5|2|2970 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10801.6|2|3630 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10802.1|2|1365 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10802.2|2|1635 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10802.3|2|1357 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10802.4|2|1642 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10802.5|2|1350 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10802.6|2|1650 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10803.1|2|1547 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10803.2|2|1853 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10803.3|2|1538 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10803.4|2|1861 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10803.5|2|1530 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10803.6|2|1870 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10804.1|2|3003 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10804.2|2|3597 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10804.3|2|2986 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10804.4|2|3613 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10804.5|2|2970 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10804.6|2|3630 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10805.1|2|955 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10805.2|2|1144 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10805.3|2|950 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10805.4|2|1149 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10805.5|2|945 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10805.6|2|1155 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10806.1|2|1638 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10806.2|2|1960 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10806.3|2|1629 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10806.4|2|1971 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10806.5|2|1620 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10806.6|2|1980 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10807.1|2|1183 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10807.2|2|1417 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10807.3|2|1176 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10807.4|2|1423 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10807.5|2|1170 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10807.6|2|1430 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10808.1|2|546 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10808.2|2|654 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10808.3|2|543 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10808.4|2|657 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10808.5|2|540 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10808.6|2|660 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10809.1|2|910 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10809.2|2|1090 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10809.3|2|905 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10809.4|2|1095 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10809.5|2|900 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10809.6|2|1100 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10810.1|2|909 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10810.2|2|1090 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10810.3|2|905 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10810.4|2|1095 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10810.5|2|900 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10810.6|2|1100 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10811.1|2|910 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10811.2|2|1090 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10811.3|2|905 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10811.4|2|1095 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10811.5|2|900 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10811.6|2|1100 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10812.1|2|1092 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10812.2|2|1308 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10812.3|2|1086 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10812.4|2|1314 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10812.5|2|1080 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10812.6|2|1320 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10813.1|2|1638 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10813.2|2|1962 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10813.3|2|1629 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10813.4|2|1971 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10813.5|2|1620 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10813.6|2|1981 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10814.1|2|3003 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10814.2|2|3597 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10814.3|2|2986 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10814.4|2|3613 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10814.5|2|2970 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10814.6|2|3630 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10815.1|2|2275 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10815.2|2|2725 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10815.3|2|2262 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10815.4|2|2737 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10815.5|2|2250 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10815.6|2|2750 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10816.1|2|6370 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10816.2|2|7630 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10816.3|2|6335 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10816.4|2|7665 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10816.5|2|6300 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10816.6|2|7700 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10817.1|2|4550 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10817.2|2|5450 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10817.3|2|4525 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10817.4|2|5475 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10817.5|2|4500 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10817.6|2|5500 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10818.1|2|819 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10818.2|2|981 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10818.3|2|814 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10818.4|2|985 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10818.5|2|810 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10818.6|2|990 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10819.1|2|1637 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10819.2|2|1962 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10819.3|2|1629 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10819.4|2|1971 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10819.5|2|1620 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10819.6|2|1980 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10820.1|2|910 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10820.2|2|1090 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10820.3|2|905 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10820.4|2|1095 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10820.5|2|900 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10820.6|2|1100 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10821.1|2|910 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10821.2|2|1095 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10821.3|2|905 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10821.4|2|1095 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10821.5|2|900 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10821.6|2|1100 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10822.1|2|910 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10822.2|2|1090 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10822.3|2|905 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10822.4|2|1095 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10822.5|2|900 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10822.6|2|1100 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10823.1|2|910 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10823.2|2|1095 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10823.3|2|905 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10823.4|2|1095 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10823.5|2|900 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10823.6|2|1100 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10824.1|2|910 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10824.2|2|1090 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10824.3|2|905 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10824.4|2|1095 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10824.5|2|900 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10824.6|2|1100 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10825.1|2|910 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10825.2|2|1090 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10825.3|2|905 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10825.4|2|1095 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10825.5|2|900 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10825.6|2|1100 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10826.1|2|1638 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10826.2|2|1962 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10826.3|2|1629 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10826.4|2|1971 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10826.5|2|1620 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10826.6|2|1980 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10827.1|2|1365 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10827.2|2|1635 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10827.3|2|1357 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10827.4|2|1642 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10827.5|2|1350 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10827.6|2|1650 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10828.1|2|910 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10828.2|2|1090 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10828.3|2|905 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10828.4|2|1095 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10828.5|2|900 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10828.6|2|1100 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10829.1|2|682 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10829.2|2|817 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10829.3|2|678 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10829.4|2|821 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10829.5|2|675 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10829.6|2|825 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10830.1|2|2275 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10830.2|2|2725 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10830.3|2|2262 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10830.4|2|2337 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10830.5|2|2250 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10830.6|2|2350 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10831.1|2|1365 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10831.2|2|1635 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10831.3|2|1357 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10831.4|2|1642 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10831.5|2|1350 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10831.6|2|1650 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10832.1|2|910 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10832.2|2|1090 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10832.3|2|905 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10832.4|2|1095 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10832.5|2|900 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10832.6|2|1100 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10833.1|2|819 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10833.2|2|980 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10833.3|2|814 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10833.4|2|985 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10833.5|2|810 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10833.6|2|990 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10834.1|2|682 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10834.2|2|817 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10834.3|2|678 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10834.4|2|821 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10834.5|2|675 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10834.6|2|825 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10835.1|2|910 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10835.2|2|1090 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10835.3|2|905 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10835.4|2|1095 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10835.5|2|900 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10835.6|2|1100 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10836.1|2|910 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10836.2|2|1090 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10836.3|2|905 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10836.4|2|1095 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10836.5|2|900 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10836.6|2|1100 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10837.1|2|819 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10837.2|2|981 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10837.3|2|814 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10837.4|2|985 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10837.5|2|810 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10837.6|2|990 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10838.1|2|910 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10838.2|2|1090 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10838.3|2|905 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10838.4|2|1095 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10838.5|2|900 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10838.6|2|1100 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10839.1|2|819 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10839.2|2|981 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10839.3|2|814 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10839.4|2|985 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10839.5|2|810 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10839.6|2|990 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10840.1|2|1638 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10840.2|2|1962 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10840.3|2|1629 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10840.4|2|1971 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10840.5|2|1620 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10840.6|2|1980 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10841.1|2|819 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10841.2|2|981 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10841.3|2|814 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10841.4|2|985 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10841.5|2|810 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10841.6|2|990 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10842.1|2|819 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10842.2|2|981 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10842.3|2|814 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10842.4|2|985 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10842.5|2|810 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10842.6|2|990 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10843.1|2|819 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10843.2|2|981 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10843.3|2|814 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10843.4|2|985 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10843.5|2|810 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10843.6|2|990 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10844.1|2|3003 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10844.2|2|3597 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10844.3|2|2986 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10844.4|2|3613 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10844.5|2|2970 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10844.6|2|3630 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10845.1|2|1638 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10845.2|2|1960 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10845.3|2|1629 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10845.4|2|1971 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10845.5|2|1620 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10845.6|2|1980 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10846.1|2|3003 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10846.2|2|3597 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10846.3|2|2986 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10846.4|2|3613 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10846.5|2|2970 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10846.6|2|3630 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10847.1|2|3003 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10847.2|2|3597 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10847.3|2|2986 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10847.4|2|3613 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10847.5|2|2970 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10847.6|2|3630 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10848.1|2|1638 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10848.2|2|1962 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10848.3|2|1629 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10848.4|2|1971 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10848.5|2|1620 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10848.6|2|1980 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10849.1|2|1365 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10849.2|2|1634 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10849.3|2|1357 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10849.4|2|1642 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10849.5|2|1350 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10849.6|2|1650 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10850.1|2|910 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10850.2|2|1090 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10850.3|2|905 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10850.4|2|1095 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10850.5|2|900 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10850.6|2|1100 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10851.1|2|682 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10851.2|2|817 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10851.3|2|678 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10851.4|2|821 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10851.5|2|675 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10851.6|2|825 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10852.1|2|2275 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10852.2|2|2725 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10852.3|2|2262 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10852.4|2|2737 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10852.5|2|2250 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10852.6|2|2750 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10853.1|2|1365 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10853.2|2|1635 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10853.3|2|1357 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10853.4|2|1642 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10853.5|2|1350 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10853.6|2|1650 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10854.1|2|910 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10854.2|2|1090 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10854.3|2|905 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10854.4|2|1095 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10854.5|2|900 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10854.6|2|1100 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10855.1|2|819 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10855.2|2|981 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10855.3|2|814 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10855.4|2|985 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10855.5|2|810 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10855.6|2|990 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10856.1|2|682 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10856.2|2|817 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10856.3|2|678 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10856.4|2|821 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10856.5|2|675 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10856.6|2|825 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10857.1|2|910 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10857.2|2|1090 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10857.3|2|905 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10857.4|2|1095 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10857.5|2|900 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10857.6|2|1100 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10858.1|2|11400 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10858.2|2|12960 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10858.3|2|11100 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10858.4|2|13080 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10858.5|2|10800 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.10858.6|2|13200 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2375930.1|2|2500 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2375930.2|2|22500 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2375930.3|2|1750 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2375930.4|2|23250 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2375930.5|2|1250 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2375930.6|2|23750 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2375931.1|2|30000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2375931.2|2|270000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2375931.3|2|21000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2375931.4|2|279000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2375931.5|2|15000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2375931.6|2|285000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2375940.1|2|30000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2375940.2|2|270000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2375940.3|2|21000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2375940.4|2|279000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2375940.5|2|15000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2375940.6|2|285000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2375941.1|2|1500 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2375941.2|2|13500 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2375941.3|2|1050 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2375941.4|2|13950 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2375941.5|2|750 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2375941.6|2|14250 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2375970.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2375970.2|2|75000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2375970.3|2|-5000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2375970.4|2|80000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2375970.5|2|-10000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2375970.6|2|85000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2375971.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2375971.2|2|115000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2375971.3|2|-5000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2375971.4|2|120000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2375971.5|2|-10000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2375971.6|2|125000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2375972.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2375972.2|2|115000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2375972.3|2|-5000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2375972.4|2|120000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2375972.5|2|-10000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2375972.6|2|125000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2376630.1|2|2200 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2376630.2|2|19800 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2376630.3|2|-1 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2376630.4|2|2147483647 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2376630.5|2|-1 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2376630.6|2|2147483647 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2376631.1|2|2200 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2376631.2|2|19800 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2376631.3|2|-1 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2376631.4|2|2147483647 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2376631.5|2|-1 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2376631.6|2|2147483647 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380026.1|2|2500 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380026.2|2|22500 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380026.3|2|1750 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380026.4|2|23250 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380026.5|2|1250 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380026.6|2|23750 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380027.1|2|30000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380027.2|2|270000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380027.3|2|21000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380027.4|2|279000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380027.5|2|15000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380027.6|2|285000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380036.1|2|30000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380036.2|2|270000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380036.3|2|21000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380036.4|2|279000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380036.5|2|15000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380036.6|2|285000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380037.1|2|1500 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380037.2|2|13500 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380037.3|2|1050 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380037.4|2|13950 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380037.5|2|750 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380037.6|2|14250 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380066.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380066.2|2|75000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380066.3|2|-5000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380066.4|2|80000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380066.5|2|-10000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380066.6|2|85000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380067.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380067.2|2|115000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380067.3|2|-5000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380067.4|2|120000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380067.5|2|-10000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380067.6|2|125000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380068.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380068.2|2|115000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380068.3|2|-5000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380068.4|2|120000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380068.5|2|-10000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380068.6|2|125000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380726.1|2|2200 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380726.2|2|19800 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380726.3|2|-1 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380726.4|2|2147483647 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380726.5|2|-1 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380726.6|2|2147483647 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380727.1|2|2200 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380727.2|2|19800 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380727.3|2|-1 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380727.4|2|2147483647 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380727.5|2|-1 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2380727.6|2|2147483647 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2990320.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2990320.2|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2990320.3|2|3100 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2990320.4|2|3500 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2990320.5|2|3000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2990320.6|2|3600 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2990330.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2990330.2|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2990330.3|2|4000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2990330.4|2|70000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2990330.5|2|3000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2990330.6|2|75000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2990350.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2990350.2|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2990350.3|2|11220 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2990350.4|2|79430 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2990350.5|2|4470 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2990350.6|2|125890 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2990362.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2990362.2|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2990362.3|2|1260 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2990362.4|2|50120 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2990362.5|2|500 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2990362.6|2|125890 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2990470.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2990470.2|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2990470.3|2|-5000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2990470.4|2|85000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2990470.5|2|-10000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2990470.6|2|90000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2994416.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2994416.2|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2994416.3|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2994416.4|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2994416.5|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2994416.6|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2994426.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2994426.2|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2994426.3|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2994426.4|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2994426.5|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2994426.6|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2994446.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2994446.2|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2994446.3|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2994446.4|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2994446.5|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2994446.6|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2994458.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2994458.2|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2994458.3|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2994458.4|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2994458.5|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2994458.6|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2994566.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2994566.2|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2994566.3|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2994566.4|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2994566.5|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2994566.6|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3014896.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3014896.2|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3014896.3|2|2996 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3014896.4|2|3604 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3014896.5|2|2897 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3014896.6|2|3701 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3014906.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3014906.2|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3014906.3|2|20000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3014906.4|2|80002 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3014906.5|2|15000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3014906.6|2|85002 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3014926.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3014926.2|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3014926.3|2|63040 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3014926.4|2|315880 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3014926.5|2|50140 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3014926.6|2|398300 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3014938.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3014938.2|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3014938.3|2|1590 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3014938.4|2|199520 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3014938.5|2|1000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3014938.6|2|250980 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3015046.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3015046.2|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3015046.3|2|-5000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3015046.4|2|70000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3015046.5|2|-10000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3015046.6|2|75000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3072240.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3072240.2|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3072240.3|2|2800 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3072240.4|2|3700 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3072240.5|2|2700 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3072240.6|2|3800 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3072250.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3072250.2|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3072250.3|2|100 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3072250.4|2|90000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3072250.5|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3072250.6|2|100000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3072270.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3072270.2|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3072270.3|2|25120 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3072270.4|2|100000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3072270.5|2|19950 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3072270.6|2|125890 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3072282.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3072282.2|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3072282.3|2|2510 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3072282.4|2|100000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3072282.5|2|2000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3072282.6|2|125890 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3072390.1|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3072390.2|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3072390.3|2|0 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3072390.4|2|85000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3072390.5|2|-5000 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.3072390.6|2|90000 +1.3.6.1.4.1.9.9.109.1.1.1.1.2.33|2|97 +1.3.6.1.4.1.9.9.109.1.1.1.1.2.65|2|96 +1.3.6.1.4.1.9.9.109.1.1.1.1.2.33313|2|8289 +1.3.6.1.4.1.9.9.109.1.1.1.1.2.33345|2|8288 +1.3.6.1.4.1.9.9.109.1.1.1.1.7.33|66|4 +1.3.6.1.4.1.9.9.109.1.1.1.1.7.65|66|2 +1.3.6.1.4.1.9.9.109.1.1.1.1.7.33313|66|2 +1.3.6.1.4.1.9.9.109.1.1.1.1.7.33345|66|1 +1.3.6.1.4.1.9.9.109.1.1.1.1.8.33|66|5 +1.3.6.1.4.1.9.9.109.1.1.1.1.8.65|66|1 +1.3.6.1.4.1.9.9.109.1.1.1.1.8.33313|66|2 +1.3.6.1.4.1.9.9.109.1.1.1.1.8.33345|66|1 +1.3.6.1.4.1.9.9.109.1.1.1.1.31.33|66|6 +1.3.6.1.4.1.9.9.109.1.1.1.1.31.65|66|1 +1.3.6.1.4.1.9.9.109.1.1.1.1.31.33313|66|2 +1.3.6.1.4.1.9.9.109.1.1.1.1.31.33345|66|1 +1.3.6.1.4.1.9.9.117.1.1.2.1.1.1|2|1 +1.3.6.1.4.1.9.9.117.1.1.2.1.1.8193|2|1 +1.3.6.1.4.1.9.9.117.1.1.2.1.1.40961|2|1 +1.3.6.1.4.1.9.9.117.1.1.2.1.1.45057|2|1 +1.3.6.1.4.1.9.9.117.1.1.2.1.1.49153|2|1 +1.3.6.1.4.1.9.9.117.1.1.2.1.1.118785|2|1 +1.3.6.1.4.1.9.9.117.1.1.2.1.1.2375681|2|1 +1.3.6.1.4.1.9.9.117.1.1.2.1.1.2379777|2|1 +1.3.6.1.4.1.9.9.117.1.1.2.1.1.2990081|2|1 +1.3.6.1.4.1.9.9.117.1.1.2.1.1.2994177|2|1 +1.3.6.1.4.1.9.9.117.1.1.2.1.1.3014657|2|1 +1.3.6.1.4.1.9.9.117.1.1.2.1.1.3072001|2|1 +1.3.6.1.4.1.9.9.117.1.1.2.1.2.1|2|2 +1.3.6.1.4.1.9.9.117.1.1.2.1.2.8193|2|2 +1.3.6.1.4.1.9.9.117.1.1.2.1.2.40961|2|2 +1.3.6.1.4.1.9.9.117.1.1.2.1.2.45057|2|2 +1.3.6.1.4.1.9.9.117.1.1.2.1.2.49153|2|2 +1.3.6.1.4.1.9.9.117.1.1.2.1.2.118785|2|2 +1.3.6.1.4.1.9.9.117.1.1.2.1.2.2375681|2|2 +1.3.6.1.4.1.9.9.117.1.1.2.1.2.2379777|2|2 +1.3.6.1.4.1.9.9.117.1.1.2.1.2.2990081|2|2 +1.3.6.1.4.1.9.9.117.1.1.2.1.2.2994177|2|2 +1.3.6.1.4.1.9.9.117.1.1.2.1.2.3014657|2|2 +1.3.6.1.4.1.9.9.117.1.1.2.1.2.3072001|2|2 +1.3.6.1.4.1.9.9.117.1.1.2.1.3.1|2|4875 +1.3.6.1.4.1.9.9.117.1.1.2.1.3.8193|2|22100 +1.3.6.1.4.1.9.9.117.1.1.2.1.3.40961|2|0 +1.3.6.1.4.1.9.9.117.1.1.2.1.3.45057|2|0 +1.3.6.1.4.1.9.9.117.1.1.2.1.3.49153|2|0 +1.3.6.1.4.1.9.9.117.1.1.2.1.3.118785|2|0 +1.3.6.1.4.1.9.9.117.1.1.2.1.3.2375681|2|13343 +1.3.6.1.4.1.9.9.117.1.1.2.1.3.2379777|2|14734 +1.3.6.1.4.1.9.9.117.1.1.2.1.3.2990081|2|0 +1.3.6.1.4.1.9.9.117.1.1.2.1.3.2994177|2|0 +1.3.6.1.4.1.9.9.117.1.1.2.1.3.3014657|2|0 +1.3.6.1.4.1.9.9.117.1.1.2.1.3.3072001|2|0 +1.3.6.1.4.1.9.9.176.1.1.2.0|2|14 +1.3.6.1.4.1.9.9.176.1.1.4.0|2|2 +1.3.6.1.4.1.9.9.176.1.2.16.0|2|1 +1.3.6.1.4.1.9.9.187.1.2.5.1.3.1.4.10.246.0.1|2|6 +1.3.6.1.4.1.9.9.187.1.2.5.1.3.1.4.10.246.0.4|2|1 +1.3.6.1.4.1.9.9.187.1.2.5.1.4.1.4.10.246.0.1|2|2 +1.3.6.1.4.1.9.9.187.1.2.5.1.4.1.4.10.246.0.4|2|2 +1.3.6.1.4.1.9.9.187.1.2.5.1.6.1.4.10.246.0.1|4x|0AF60003 +1.3.6.1.4.1.9.9.187.1.2.5.1.6.1.4.10.246.0.4|4x|00000000 +1.3.6.1.4.1.9.9.187.1.2.5.1.11.1.4.10.246.0.1|66|65056 +1.3.6.1.4.1.9.9.187.1.2.5.1.11.1.4.10.246.0.4|66|65056 +1.3.6.1.4.1.9.9.187.1.2.5.1.13.1.4.10.246.0.1|65|68 +1.3.6.1.4.1.9.9.187.1.2.5.1.13.1.4.10.246.0.4|65|0 +1.3.6.1.4.1.9.9.187.1.2.5.1.14.1.4.10.246.0.1|65|31 +1.3.6.1.4.1.9.9.187.1.2.5.1.14.1.4.10.246.0.4|65|0 +1.3.6.1.4.1.9.9.187.1.2.5.1.15.1.4.10.246.0.1|65|360026 +1.3.6.1.4.1.9.9.187.1.2.5.1.15.1.4.10.246.0.4|65|0 +1.3.6.1.4.1.9.9.187.1.2.5.1.16.1.4.10.246.0.1|65|360018 +1.3.6.1.4.1.9.9.187.1.2.5.1.16.1.4.10.246.0.4|65|0 +1.3.6.1.4.1.9.9.187.1.2.5.1.17.1.4.10.246.0.1|4x|0000 +1.3.6.1.4.1.9.9.187.1.2.5.1.17.1.4.10.246.0.4|4x|0000 +1.3.6.1.4.1.9.9.187.1.2.5.1.19.1.4.10.246.0.1|66|5399904 +1.3.6.1.4.1.9.9.187.1.2.5.1.19.1.4.10.246.0.4|66|0 +1.3.6.1.4.1.9.9.187.1.2.5.1.27.1.4.10.246.0.1|66|1028915 +1.3.6.1.4.1.9.9.187.1.2.5.1.27.1.4.10.246.0.4|66|0 +1.3.6.1.4.1.9.9.187.1.2.5.1.28.1.4.10.246.0.1|4| +1.3.6.1.4.1.9.9.187.1.2.5.1.28.1.4.10.246.0.4|4| +1.3.6.1.4.1.9.9.187.1.2.7.1.3.1.4.10.246.0.1.1.128|4|VPNv4 Unicast +1.3.6.1.4.1.9.9.187.1.2.7.1.3.1.4.10.246.0.1.2.128|4|VPNv6 Unicast +1.3.6.1.4.1.9.9.187.1.2.7.1.3.1.4.10.246.0.4.1.128|4|VPNv4 Unicast +1.3.6.1.4.1.9.9.187.1.2.7.1.3.1.4.10.246.0.4.2.128|4|VPNv6 Unicast +1.3.6.1.4.1.9.9.187.1.2.8.1.1.1.4.10.246.0.1.1.128|65|5 +1.3.6.1.4.1.9.9.187.1.2.8.1.1.1.4.10.246.0.4.1.128|65|0 +1.3.6.1.4.1.9.9.187.1.2.8.1.2.1.4.10.246.0.1.1.128|66|0 +1.3.6.1.4.1.9.9.187.1.2.8.1.2.1.4.10.246.0.4.1.128|66|0 +1.3.6.1.4.1.9.9.187.1.2.8.1.3.1.4.10.246.0.1.1.128|66|2097152 +1.3.6.1.4.1.9.9.187.1.2.8.1.3.1.4.10.246.0.4.1.128|66|2097152 +1.3.6.1.4.1.9.9.187.1.2.8.1.4.1.4.10.246.0.1.1.128|66|75 +1.3.6.1.4.1.9.9.187.1.2.8.1.4.1.4.10.246.0.4.1.128|66|75 +1.3.6.1.4.1.9.9.187.1.2.8.1.5.1.4.10.246.0.1.1.128|66|75 +1.3.6.1.4.1.9.9.187.1.2.8.1.5.1.4.10.246.0.4.1.128|66|75 +1.3.6.1.4.1.9.9.187.1.2.8.1.6.1.4.10.246.0.1.1.128|66|12 +1.3.6.1.4.1.9.9.187.1.2.8.1.6.1.4.10.246.0.4.1.128|66|0 +1.3.6.1.4.1.9.9.187.1.2.8.1.7.1.4.10.246.0.1.1.128|66|0 +1.3.6.1.4.1.9.9.187.1.2.8.1.7.1.4.10.246.0.4.1.128|66|0 +1.3.6.1.4.1.9.9.187.1.2.8.1.8.1.4.10.246.0.1.1.128|66|2 +1.3.6.1.4.1.9.9.187.1.2.8.1.8.1.4.10.246.0.4.1.128|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.2.96.1|2|2 +1.3.6.1.4.1.9.9.221.1.1.1.1.2.96.2|2|11 +1.3.6.1.4.1.9.9.221.1.1.1.1.2.96.3|2|12 +1.3.6.1.4.1.9.9.221.1.1.1.1.2.97.1|2|2 +1.3.6.1.4.1.9.9.221.1.1.1.1.2.97.2|2|11 +1.3.6.1.4.1.9.9.221.1.1.1.1.2.97.3|2|12 +1.3.6.1.4.1.9.9.221.1.1.1.1.2.8288.1|2|2 +1.3.6.1.4.1.9.9.221.1.1.1.1.2.8288.2|2|11 +1.3.6.1.4.1.9.9.221.1.1.1.1.2.8288.3|2|12 +1.3.6.1.4.1.9.9.221.1.1.1.1.2.8289.1|2|2 +1.3.6.1.4.1.9.9.221.1.1.1.1.2.8289.2|2|11 +1.3.6.1.4.1.9.9.221.1.1.1.1.2.8289.3|2|12 +1.3.6.1.4.1.9.9.221.1.1.1.1.3.96.1|4|processor +1.3.6.1.4.1.9.9.221.1.1.1.1.3.96.2|4|reserved +1.3.6.1.4.1.9.9.221.1.1.1.1.3.96.3|4|image +1.3.6.1.4.1.9.9.221.1.1.1.1.3.97.1|4|processor +1.3.6.1.4.1.9.9.221.1.1.1.1.3.97.2|4|reserved +1.3.6.1.4.1.9.9.221.1.1.1.1.3.97.3|4|image +1.3.6.1.4.1.9.9.221.1.1.1.1.3.8288.1|4|processor +1.3.6.1.4.1.9.9.221.1.1.1.1.3.8288.2|4|reserved +1.3.6.1.4.1.9.9.221.1.1.1.1.3.8288.3|4|image +1.3.6.1.4.1.9.9.221.1.1.1.1.3.8289.1|4|processor +1.3.6.1.4.1.9.9.221.1.1.1.1.3.8289.2|4|reserved +1.3.6.1.4.1.9.9.221.1.1.1.1.3.8289.3|4|image +1.3.6.1.4.1.9.9.221.1.1.1.1.5.96.1|2|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.5.96.2|2|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.5.96.3|2|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.5.97.1|2|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.5.97.2|2|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.5.97.3|2|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.5.8288.1|2|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.5.8288.2|2|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.5.8288.3|2|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.5.8289.1|2|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.5.8289.2|2|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.5.8289.3|2|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.6.96.1|2|1 +1.3.6.1.4.1.9.9.221.1.1.1.1.6.96.2|2|1 +1.3.6.1.4.1.9.9.221.1.1.1.1.6.96.3|2|1 +1.3.6.1.4.1.9.9.221.1.1.1.1.6.97.1|2|1 +1.3.6.1.4.1.9.9.221.1.1.1.1.6.97.2|2|1 +1.3.6.1.4.1.9.9.221.1.1.1.1.6.97.3|2|1 +1.3.6.1.4.1.9.9.221.1.1.1.1.6.8288.1|2|1 +1.3.6.1.4.1.9.9.221.1.1.1.1.6.8288.2|2|1 +1.3.6.1.4.1.9.9.221.1.1.1.1.6.8288.3|2|1 +1.3.6.1.4.1.9.9.221.1.1.1.1.6.8289.1|2|1 +1.3.6.1.4.1.9.9.221.1.1.1.1.6.8289.2|2|1 +1.3.6.1.4.1.9.9.221.1.1.1.1.6.8289.3|2|1 +1.3.6.1.4.1.9.9.221.1.1.1.1.7.96.1|66|805900288 +1.3.6.1.4.1.9.9.221.1.1.1.1.7.96.2|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.7.96.3|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.7.97.1|66|476135424 +1.3.6.1.4.1.9.9.221.1.1.1.1.7.97.2|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.7.97.3|66|4194304 +1.3.6.1.4.1.9.9.221.1.1.1.1.7.8288.1|66|469114880 +1.3.6.1.4.1.9.9.221.1.1.1.1.7.8288.2|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.7.8288.3|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.7.8289.1|66|1432838144 +1.3.6.1.4.1.9.9.221.1.1.1.1.7.8289.2|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.7.8289.3|66|4194304 +1.3.6.1.4.1.9.9.221.1.1.1.1.8.96.1|66|1180606464 +1.3.6.1.4.1.9.9.221.1.1.1.1.8.96.2|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.8.96.3|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.8.97.1|66|2158747648 +1.3.6.1.4.1.9.9.221.1.1.1.1.8.97.2|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.8.97.3|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.8.8288.1|66|563212288 +1.3.6.1.4.1.9.9.221.1.1.1.1.8.8288.2|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.8.8288.3|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.8.8289.1|66|3785637888 +1.3.6.1.4.1.9.9.221.1.1.1.1.8.8289.2|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.8.8289.3|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.17.96.1|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.17.96.2|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.17.96.3|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.17.97.1|66|1 +1.3.6.1.4.1.9.9.221.1.1.1.1.17.97.2|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.17.97.3|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.17.8288.1|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.17.8288.2|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.17.8288.3|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.17.8289.1|66|1 +1.3.6.1.4.1.9.9.221.1.1.1.1.17.8289.2|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.17.8289.3|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.18.96.1|70|805801984 +1.3.6.1.4.1.9.9.221.1.1.1.1.18.96.2|70|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.18.96.3|70|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.18.97.1|70|4771332096 +1.3.6.1.4.1.9.9.221.1.1.1.1.18.97.2|70|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.18.97.3|70|4194304 +1.3.6.1.4.1.9.9.221.1.1.1.1.18.8288.1|70|469211136 +1.3.6.1.4.1.9.9.221.1.1.1.1.18.8288.2|70|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.18.8288.3|70|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.18.8289.1|70|5727830016 +1.3.6.1.4.1.9.9.221.1.1.1.1.18.8289.2|70|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.18.8289.3|70|4194304 +1.3.6.1.4.1.9.9.221.1.1.1.1.19.96.1|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.19.96.2|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.19.96.3|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.19.97.1|66|5 +1.3.6.1.4.1.9.9.221.1.1.1.1.19.97.2|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.19.97.3|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.19.8288.1|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.19.8288.2|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.19.8288.3|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.19.8289.1|66|1 +1.3.6.1.4.1.9.9.221.1.1.1.1.19.8289.2|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.19.8289.3|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.20.96.1|70|1180704768 +1.3.6.1.4.1.9.9.221.1.1.1.1.20.96.2|70|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.20.96.3|70|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.20.97.1|70|23633354752 +1.3.6.1.4.1.9.9.221.1.1.1.1.20.97.2|70|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.20.97.3|70|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.20.8288.1|70|563116032 +1.3.6.1.4.1.9.9.221.1.1.1.1.20.8288.2|70|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.20.8288.3|70|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.20.8289.1|70|8080580608 +1.3.6.1.4.1.9.9.221.1.1.1.1.20.8289.2|70|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.20.8289.3|70|0 +1.3.6.1.4.1.9.10.106.1.2.1.2.2684354563|2|5 +1.3.6.1.4.1.9.10.106.1.2.1.2.2684354569|2|11 +1.3.6.1.4.1.9.10.106.1.2.1.4.2684354563|2|1 +1.3.6.1.4.1.9.10.106.1.2.1.4.2684354569|2|1 +1.3.6.1.4.1.9.10.106.1.2.1.10.2684354563|66|222222 +1.3.6.1.4.1.9.10.106.1.2.1.10.2684354569|66|234567 +1.3.6.1.4.1.9.10.106.1.2.1.21.2684354563|4|PW-Ether2 +1.3.6.1.4.1.9.10.106.1.2.1.21.2684354569|4|10.246.0.2,234567 +1.3.6.1.4.1.9.10.106.1.2.1.22.2684354563|4|l3vpn:VC222222 +1.3.6.1.4.1.9.10.106.1.2.1.22.2684354569|4|PBB-EDGE:BD-I-100001 +1.3.6.1.4.1.9.10.107.1.1.1.7.2684354563|4x|0AF600050000 +1.3.6.1.4.1.9.10.107.1.1.1.7.2684354569|4x|0AF600020000 +1.3.6.1.6.3.10.2.1.3.0|2|5400157