diff --git a/includes/discovery/sensors/count/fortigate.inc.php b/includes/discovery/sensors/count/fortigate.inc.php index 20f5064cec..08902135cb 100644 --- a/includes/discovery/sensors/count/fortigate.inc.php +++ b/includes/discovery/sensors/count/fortigate.inc.php @@ -46,3 +46,50 @@ foreach ($session_rate as $descr => $oid) { $result ); } + +// Sensors for clusters +$fgHaSystemMode_txt = 'fgHaSystemMode.0'; +$systemMode = snmp_get($device, $fgHaSystemMode_txt, '-Ovq', 'FORTINET-FORTIGATE-MIB'); +if ($systemMode == 'activePassive' || $systemMode == 'activeActive') { + // Contains the indexes of all the cluster members + $fgHaStatsIndex_num = '.1.3.6.1.4.1.12356.101.13.2.1.1.1'; + $fgHaStatsIndex_txt = 'fgHaStatsIndex'; + + // Fetch the cluster members + $haStatsEntries = snmpwalk_cache_multi_oid($device, $fgHaStatsIndex_txt, [], 'FORTINET-FORTIGATE-MIB'); + + // Count of results is the amount of cluster members + $clusterMemberCount = count($haStatsEntries); + + // Create a count sensor and set warning to current cluster count + discover_sensor( + $valid['sensor'], + 'count', + $device, + $fgHaStatsIndex_num, + $fgHaStatsIndex_txt, + 'clusterState', + 'Cluster State', + 1, + 1, + null, + $clusterMemberCount, + null, + null, + $result + ); +} + +unset( + $session_rate, + $descr, + $oid, + $oid_num, + $oid_txt, + $result, + $fgHaSystemMode_txt, + $fgHaStatsIndex_num, + $fgHaStatsIndex_txt, + $haStatsEntries, + $clusterMemberCount +); diff --git a/includes/discovery/sensors/state/fortigate.inc.php b/includes/discovery/sensors/state/fortigate.inc.php index daf95b834b..bba5812898 100644 --- a/includes/discovery/sensors/state/fortigate.inc.php +++ b/includes/discovery/sensors/state/fortigate.inc.php @@ -23,59 +23,30 @@ * @author Patrik Jonsson */ $index = 0; -$fgHaSystemModeOid = 'fgHaSystemMode.0'; -$systemMode = snmp_get($device, $fgHaSystemModeOid, '-Ovq', 'FORTINET-FORTIGATE-MIB'); +$fgHaSystemMode_num = '.1.3.6.1.4.1.12356.101.13.1.1.0'; +$fgHaSystemMode_txt = 'fgHaSystemMode.0'; +$systemMode = snmp_get($device, $fgHaSystemMode_txt, '-Ovq', 'FORTINET-FORTIGATE-MIB'); // Verify that the device is clustered if ($systemMode == 'activePassive' || $systemMode == 'activeActive') { - $fgHaStatsEntryOid = 'fgHaStatsEntry'; + // Indexes of all the members + $fgHaStatsIndex_num = '.1.3.6.1.4.1.12356.101.13.2.1.1.1'; + $fgHaStatsIndex_txt = 'fgHaStatsIndex'; // Fetch the cluster members - $haStatsEntries = snmpwalk_cache_multi_oid($device, $fgHaStatsEntryOid, [], 'FORTINET-FORTIGATE-MIB'); + $haStatsEntries = snmpwalk_cache_multi_oid($device, $fgHaStatsIndex_txt, [], 'FORTINET-FORTIGATE-MIB'); - if (is_array($haStatsEntries)) { - $stateName = 'clusterState'; - $descr = 'Cluster State'; - - $states = [ - ['value' => 0, 'generic' => 2, 'graph' => 0, 'descr' => 'CRITICAL'], - ['value' => 1, 'generic' => 0, 'graph' => 1, 'descr' => 'OK'], - ]; - - create_state_index($stateName, $states); - - $clusterMemberCount = count($haStatsEntries); - - // If the device is part of a cluster but the member count is 1 the cluster has issues - $clusterState = $clusterMemberCount == 1 ? 0 : 1; - - discover_sensor( - $valid['sensor'], - 'state', - $device, - $fgHaSystemModeOid, - $index, - $stateName, - $descr, - 1, - 1, - null, - null, - null, - null, - $clusterState, - 'snmp', - null, - null, - null, - 'HA' - ); - - create_sensor_to_state_index($device, $stateName, $index); + foreach ($haStatsEntries as $index => $entry) { + // Get name of cluster member + $fgHaStatsHostname_txt = 'fgHaStatsHostname.' . $index; + $cluster_member_name = snmp_get($device, $fgHaStatsHostname_txt, '-Ovq', 'FORTINET-FORTIGATE-MIB'); // Setup a sensor for the cluster sync state - $stateName = 'haSyncStatus'; - $descr = 'HA sync status'; + $fgHaStatsSyncStatus_num = '.1.3.6.1.4.1.12356.101.13.2.1.1.12'; + $fgHaStatsSyncStatus_txt = 'fgHaStatsSyncStatus'; + $stateName = 'haSyncStatus ' . $index; + $descr = 'HA sync status ' . $cluster_member_name; + $states = [ ['value' => 0, 'generic' => 2, 'graph' => 0, 'descr' => 'Out Of Sync'], ['value' => 1, 'generic' => 0, 'graph' => 1, 'descr' => 'In Sync'], @@ -88,8 +59,8 @@ if ($systemMode == 'activePassive' || $systemMode == 'activeActive') { $valid['sensor'], 'state', $device, - $fgHaStatsEntryOid, - $index, + $fgHaStatsSyncStatus_num . '.' . $index, + $fgHaStatsSyncStatus_txt . '.' . $index, $stateName, $descr, 1, @@ -112,9 +83,13 @@ if ($systemMode == 'activePassive' || $systemMode == 'activeActive') { unset( $index, - $fgHaSystemModeOid, + $fgHaSystemMode_num, + $fgHaSystemMode_txt, $systemMode, - $fgHaStatsEntryOid, + $fgHaStatsIndex_num, + $fgHaStatsIndex_txt, + $fgHaStatsSyncStatus_num, + $fgHaStatsSyncStatus_txt, $haStatsEntries, $stateName, $descr, diff --git a/includes/polling/sensors/count/fortigate.inc.php b/includes/polling/sensors/count/fortigate.inc.php new file mode 100644 index 0000000000..5d761a5f73 --- /dev/null +++ b/includes/polling/sensors/count/fortigate.inc.php @@ -0,0 +1,19 @@ +. - * - * @link https://www.librenms.org - * - * @copyright 2020 Net Entertainment AB - * @author Patrik Jonsson - */ -if ($device['os'] == 'fortigate') { - if (in_array($sensor['sensor_type'], ['clusterState', 'haSyncStatus'])) { - // Fetch the cluster members and their data - $fgHaStatsEntryOid = 'fgHaStatsEntry'; - $haStatsEntries = snmpwalk_cache_multi_oid($device, $fgHaStatsEntryOid, [], 'FORTINET-FORTIGATE-MIB'); - - if ($sensor['sensor_type'] == 'clusterState') { - // Determine if the cluster contains more than 1 device - $clusterState = 0; - if (is_array($haStatsEntries)) { - $clusterMemberCount = count($haStatsEntries); - $clusterState = $clusterMemberCount == 1 ? 0 : 1; - } - $sensor_value = $clusterState; - } elseif ($sensor['sensor_type'] == 'haSyncStatus') { - // 0 = Out of sync, 1 = In Sync, 2 = No Peer - $synchronized = 1; - - $clusterMemberCount = count($haStatsEntries); - if ($clusterMemberCount == 1) { - $synchronized = 2; - } else { - foreach ($haStatsEntries as $entry) { - if ($entry['fgHaStatsSyncStatus'] == 'unsynchronized') { - $synchronized = 0; - } - } - } - $sensor_value = $synchronized; - } - - unset($fgHaStatsEntryOid, $haStatsEntries, $clusterMemberCount, $synchronized, $clusterState, $clusterMemberCount); - } -} diff --git a/tests/data/fortigate_1500d-sensors.json b/tests/data/fortigate_1500d-sensors.json index 1c6f477dbb..f72fe6f910 100644 --- a/tests/data/fortigate_1500d-sensors.json +++ b/tests/data/fortigate_1500d-sensors.json @@ -41,6 +41,30 @@ "sensors": { "discovery": { "sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.13.2.1.1.1", + "sensor_index": "fgHaStatsIndex", + "sensor_type": "clusterState", + "sensor_descr": "Cluster State", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 26190, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": 1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, { "sensor_deleted": 0, "sensor_class": "count", @@ -233,30 +257,6 @@ "user_func": null, "state_name": null }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": "fgHaSystemMode.0", - "sensor_index": "0", - "sensor_type": "clusterState", - "sensor_descr": "Cluster State", - "group": "HA", - "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": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "state_name": "clusterState" - }, { "sensor_deleted": 0, "sensor_class": "state", @@ -3309,10 +3309,10 @@ "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", - "sensor_oid": "fgHaStatsEntry", - "sensor_index": "0", - "sensor_type": "haSyncStatus", - "sensor_descr": "HA sync status", + "sensor_oid": ".1.3.6.1.4.1.12356.101.13.2.1.1.12.1", + "sensor_index": "fgHaStatsSyncStatus.1", + "sensor_type": "haSyncStatus 1", + "sensor_descr": "HA sync status sto-fw-01", "group": "HA", "sensor_divisor": 1, "sensor_multiplier": 1, @@ -3323,28 +3323,14 @@ "sensor_limit_low_warn": null, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "0", + "entPhysicalIndex": "1", "entPhysicalIndex_measured": null, "sensor_prev": null, "user_func": null, - "state_name": "haSyncStatus" + "state_name": null } ], "state_indexes": [ - { - "state_name": "clusterState", - "state_descr": "CRITICAL", - "state_draw_graph": 0, - "state_value": 0, - "state_generic_value": 2 - }, - { - "state_name": "clusterState", - "state_descr": "OK", - "state_draw_graph": 1, - "state_value": 1, - "state_generic_value": 0 - }, { "state_name": "fgHwSensors", "state_descr": "OK", @@ -3386,32 +3372,35 @@ "state_draw_graph": 1, "state_value": 2, "state_generic_value": 0 - }, - { - "state_name": "haSyncStatus", - "state_descr": "Out Of Sync", - "state_draw_graph": 0, - "state_value": 0, - "state_generic_value": 2 - }, - { - "state_name": "haSyncStatus", - "state_descr": "In Sync", - "state_draw_graph": 1, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "haSyncStatus", - "state_descr": "No Peer", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 1 } ] }, "poller": { "sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.13.2.1.1.1", + "sensor_index": "fgHaStatsIndex", + "sensor_type": "clusterState", + "sensor_descr": "Cluster State", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": 1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": 26190, + "user_func": null, + "state_name": null + }, { "sensor_deleted": 0, "sensor_class": "count", @@ -3604,30 +3593,6 @@ "user_func": null, "state_name": null }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": "fgHaSystemMode.0", - "sensor_index": "0", - "sensor_type": "clusterState", - "sensor_descr": "Cluster State", - "group": "HA", - "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": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "state_name": "clusterState" - }, { "sensor_deleted": 0, "sensor_class": "state", @@ -6680,42 +6645,28 @@ "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", - "sensor_oid": "fgHaStatsEntry", - "sensor_index": "0", - "sensor_type": "haSyncStatus", - "sensor_descr": "HA sync status", + "sensor_oid": ".1.3.6.1.4.1.12356.101.13.2.1.1.12.1", + "sensor_index": "fgHaStatsSyncStatus.1", + "sensor_type": "haSyncStatus 1", + "sensor_descr": "HA sync status sto-fw-01", "group": "HA", "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 2, + "sensor_current": 1, "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": "1", "entPhysicalIndex_measured": null, - "sensor_prev": 1, + "sensor_prev": null, "user_func": null, - "state_name": "haSyncStatus" + "state_name": null } ], "state_indexes": [ - { - "state_name": "clusterState", - "state_descr": "CRITICAL", - "state_draw_graph": 0, - "state_value": 0, - "state_generic_value": 2 - }, - { - "state_name": "clusterState", - "state_descr": "OK", - "state_draw_graph": 1, - "state_value": 1, - "state_generic_value": 0 - }, { "state_name": "fgHwSensors", "state_descr": "OK", @@ -6757,27 +6708,6 @@ "state_draw_graph": 1, "state_value": 2, "state_generic_value": 0 - }, - { - "state_name": "haSyncStatus", - "state_descr": "Out Of Sync", - "state_draw_graph": 0, - "state_value": 0, - "state_generic_value": 2 - }, - { - "state_name": "haSyncStatus", - "state_descr": "In Sync", - "state_draw_graph": 1, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "haSyncStatus", - "state_descr": "No Peer", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 1 } ] } diff --git a/tests/data/fortigate_1500d.json b/tests/data/fortigate_1500d.json index 3b39e38cfa..68f9c0bdce 100644 --- a/tests/data/fortigate_1500d.json +++ b/tests/data/fortigate_1500d.json @@ -5,14 +5,14 @@ { "sysName": "", "sysObjectID": ".1.3.6.1.4.1.12356.101.1.15000", - "sysDescr": "FG1K5D3I14802135", + "sysDescr": "our firewall", "sysContact": "", - "version": "v5.4.8,build1183,180115 (GA)", + "version": "v6.4.8,build1914,211117 (GA)", "hardware": "FGT_1500D", "features": null, "os": "fortigate", "type": "firewall", - "serial": "FG1K5D3I14802132", + "serial": "redacted", "icon": "fortinet.svg", "location": "" } @@ -29,7 +29,7 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_10_mgmt1", + "ifDescr": "redacted", "ifName": "mgmt1", "portName": null, "ifIndex": 1, @@ -44,7 +44,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "ethernetCsmacd", - "ifAlias": "if_10_mgmt1", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -134,7 +134,7 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port1", + "ifDescr": "redacted", "ifName": "port1", "portName": null, "ifIndex": 2, @@ -149,7 +149,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "ethernetCsmacd", - "ifAlias": "if_port1", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -344,7 +344,7 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port2", + "ifDescr": "redacted", "ifName": "port2", "portName": null, "ifIndex": 4, @@ -359,7 +359,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "ethernetCsmacd", - "ifAlias": "if_port2", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -449,7 +449,7 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port3", + "ifDescr": "redacted", "ifName": "port3", "portName": null, "ifIndex": 5, @@ -464,7 +464,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "ethernetCsmacd", - "ifAlias": "if_port3", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -554,7 +554,7 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port4", + "ifDescr": "redacted", "ifName": "port4", "portName": null, "ifIndex": 6, @@ -569,7 +569,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "ethernetCsmacd", - "ifAlias": "if_port4", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -659,7 +659,7 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port5", + "ifDescr": "redacted", "ifName": "port5", "portName": null, "ifIndex": 7, @@ -674,7 +674,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "ethernetCsmacd", - "ifAlias": "if_port5", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -764,7 +764,7 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port6", + "ifDescr": "redacted", "ifName": "port6", "portName": null, "ifIndex": 8, @@ -779,7 +779,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "ethernetCsmacd", - "ifAlias": "if_port6", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -869,7 +869,7 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port7", + "ifDescr": "redacted", "ifName": "port7", "portName": null, "ifIndex": 9, @@ -884,7 +884,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "ethernetCsmacd", - "ifAlias": "if_port7", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -974,7 +974,7 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port8", + "ifDescr": "redacted", "ifName": "port8", "portName": null, "ifIndex": 10, @@ -989,7 +989,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "ethernetCsmacd", - "ifAlias": "if_port8", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -1079,7 +1079,7 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port9", + "ifDescr": "redacted", "ifName": "port9", "portName": null, "ifIndex": 11, @@ -1094,7 +1094,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "ethernetCsmacd", - "ifAlias": "if_port9", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -1184,7 +1184,7 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port10", + "ifDescr": "redacted", "ifName": "port10", "portName": null, "ifIndex": 12, @@ -1199,7 +1199,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "ethernetCsmacd", - "ifAlias": "if_port10", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -1289,7 +1289,7 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port11", + "ifDescr": "redacted", "ifName": "port11", "portName": null, "ifIndex": 13, @@ -1304,7 +1304,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "ethernetCsmacd", - "ifAlias": "if_port11", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -1394,7 +1394,7 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port12", + "ifDescr": "redacted", "ifName": "port12", "portName": null, "ifIndex": 14, @@ -1409,7 +1409,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "ethernetCsmacd", - "ifAlias": "if_port12", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -1499,7 +1499,7 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port13", + "ifDescr": "redacted", "ifName": "port13", "portName": null, "ifIndex": 15, @@ -1514,7 +1514,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "ethernetCsmacd", - "ifAlias": "if_port13", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -1604,7 +1604,7 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port14", + "ifDescr": "redacted", "ifName": "port14", "portName": null, "ifIndex": 16, @@ -1619,7 +1619,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "ethernetCsmacd", - "ifAlias": "if_port14", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -1709,7 +1709,7 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port15_HA1", + "ifDescr": "redacted", "ifName": "port15", "portName": null, "ifIndex": 17, @@ -1724,7 +1724,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "ethernetCsmacd", - "ifAlias": "HA1", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -1814,7 +1814,7 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port16_HA2", + "ifDescr": "redacted", "ifName": "port16", "portName": null, "ifIndex": 18, @@ -1829,7 +1829,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "ethernetCsmacd", - "ifAlias": "HA2", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -1919,7 +1919,7 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port17", + "ifDescr": "redacted", "ifName": "port17", "portName": null, "ifIndex": 19, @@ -1934,7 +1934,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "ethernetCsmacd", - "ifAlias": "if_port17", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -2024,7 +2024,7 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port18", + "ifDescr": "redacted", "ifName": "port18", "portName": null, "ifIndex": 20, @@ -2039,7 +2039,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "ethernetCsmacd", - "ifAlias": "if_port18", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -2129,7 +2129,7 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port19", + "ifDescr": "redacted", "ifName": "port19", "portName": null, "ifIndex": 21, @@ -2144,7 +2144,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "ethernetCsmacd", - "ifAlias": "if_port19", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -2234,7 +2234,7 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port20", + "ifDescr": "redacted", "ifName": "port20", "portName": null, "ifIndex": 22, @@ -2249,7 +2249,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "ethernetCsmacd", - "ifAlias": "if_port20", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -2339,7 +2339,7 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port21", + "ifDescr": "redacted", "ifName": "port21", "portName": null, "ifIndex": 23, @@ -2354,7 +2354,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "ethernetCsmacd", - "ifAlias": "if_port21", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -2444,7 +2444,7 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port22", + "ifDescr": "redacted", "ifName": "port22", "portName": null, "ifIndex": 24, @@ -2459,7 +2459,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "ethernetCsmacd", - "ifAlias": "if_port22", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -2549,7 +2549,7 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port23", + "ifDescr": "redacted", "ifName": "port23", "portName": null, "ifIndex": 25, @@ -2564,7 +2564,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "ethernetCsmacd", - "ifAlias": "if_port23", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -2654,7 +2654,7 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port24", + "ifDescr": "redacted", "ifName": "port24", "portName": null, "ifIndex": 26, @@ -2669,7 +2669,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "ethernetCsmacd", - "ifAlias": "if_port24", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -2759,7 +2759,7 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port25", + "ifDescr": "redacted", "ifName": "port25", "portName": null, "ifIndex": 27, @@ -2774,7 +2774,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "ethernetCsmacd", - "ifAlias": "if_port25", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -2864,7 +2864,7 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port26", + "ifDescr": "redacted", "ifName": "port26", "portName": null, "ifIndex": 28, @@ -2879,7 +2879,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "ethernetCsmacd", - "ifAlias": "if_port26", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -2969,7 +2969,7 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port27", + "ifDescr": "redacted", "ifName": "port27", "portName": null, "ifIndex": 29, @@ -2984,7 +2984,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "ethernetCsmacd", - "ifAlias": "if_port27", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -3074,7 +3074,7 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port28", + "ifDescr": "redacted", "ifName": "port28", "portName": null, "ifIndex": 30, @@ -3089,7 +3089,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "ethernetCsmacd", - "ifAlias": "if_port28", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -3179,7 +3179,7 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port29", + "ifDescr": "redacted", "ifName": "port29", "portName": null, "ifIndex": 31, @@ -3194,7 +3194,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "ethernetCsmacd", - "ifAlias": "if_port29", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -3284,7 +3284,7 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port30", + "ifDescr": "redacted", "ifName": "port30", "portName": null, "ifIndex": 32, @@ -3299,7 +3299,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "ethernetCsmacd", - "ifAlias": "if_port30", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -3389,7 +3389,7 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port31", + "ifDescr": "redacted", "ifName": "port31", "portName": null, "ifIndex": 33, @@ -3404,7 +3404,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "ethernetCsmacd", - "ifAlias": "if_port31", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -3494,7 +3494,7 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port33", + "ifDescr": "redacted", "ifName": "port32", "portName": null, "ifIndex": 34, @@ -3509,7 +3509,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "ethernetCsmacd", - "ifAlias": "if_port33", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -3599,7 +3599,7 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "SWITCH_DOWNLINK_1_OF_2", + "ifDescr": "redacted", "ifName": "port33", "portName": null, "ifIndex": 35, @@ -3614,7 +3614,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "ethernetCsmacd", - "ifAlias": "SWITCH_DOWNLINK_1_OF_2", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -3704,7 +3704,7 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "SWITCH_DOWNLINK_2_OF_2", + "ifDescr": "redacted", "ifName": "port34", "portName": null, "ifIndex": 36, @@ -3719,7 +3719,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "ethernetCsmacd", - "ifAlias": "SWITCH_DOWNLINK_2_OF_2", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -3809,7 +3809,7 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "SURFnoc Service id 3514IR1", + "ifDescr": "redacted", "ifName": "port35", "portName": null, "ifIndex": 37, @@ -3824,7 +3824,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "ethernetCsmacd", - "ifAlias": "SURFNET gsw02out", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -3914,7 +3914,7 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "SURFnoc Service id 3514IR2", + "ifDescr": "redacted", "ifName": "port36", "portName": null, "ifIndex": 38, @@ -3929,7 +3929,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "ethernetCsmacd", - "ifAlias": "SURFNET gsw01out", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -4019,7 +4019,7 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port37", + "ifDescr": "redacted", "ifName": "port37", "portName": null, "ifIndex": 39, @@ -4034,7 +4034,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "ethernetCsmacd", - "ifAlias": "if_port37", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -4124,7 +4124,7 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port38", + "ifDescr": "redacted", "ifName": "port38", "portName": null, "ifIndex": 40, @@ -4139,7 +4139,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "ethernetCsmacd", - "ifAlias": "if_port38", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -4229,7 +4229,7 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port39", + "ifDescr": "redacted", "ifName": "port39", "portName": null, "ifIndex": 41, @@ -4244,7 +4244,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "ethernetCsmacd", - "ifAlias": "if_port39", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -4334,7 +4334,7 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port40", + "ifDescr": "redacted", "ifName": "port40", "portName": null, "ifIndex": 42, @@ -4349,7 +4349,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "ethernetCsmacd", - "ifAlias": "if_port40", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -4439,7 +4439,7 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_mgmt2", + "ifDescr": "redacted", "ifName": "mgmt2", "portName": null, "ifIndex": 43, @@ -4454,7 +4454,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "ethernetCsmacd", - "ifAlias": "if_mgmt2", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -4559,7 +4559,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "tunnel", - "ifAlias": "sslvpn tunnel interface", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -4867,7 +4867,7 @@ "ifSpeed_prev": null, "ifConnectorPresent": null, "ifPromiscuousMode": null, - "ifOperStatus": "down", + "ifOperStatus": "up", "ifOperStatus_prev": null, "ifAdminStatus": null, "ifAdminStatus_prev": null, @@ -4972,7 +4972,7 @@ "ifSpeed_prev": null, "ifConnectorPresent": null, "ifPromiscuousMode": null, - "ifOperStatus": "down", + "ifOperStatus": "up", "ifOperStatus_prev": null, "ifAdminStatus": null, "ifAdminStatus_prev": null, @@ -5069,8 +5069,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "SWITCH_DOWNLINK", - "ifName": "SWITCH_DOWNLINK", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 49, "ifSpeed": null, @@ -5084,7 +5084,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "ieee8023adLag", - "ifAlias": "SWITCH_DOWNLINK", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -5174,8 +5174,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "W1903 034", - "ifName": "vl_580-htr-came", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 50, "ifSpeed": null, @@ -5189,7 +5189,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "W1903 034", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -5279,8 +5279,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_0003_l3hdwroute", - "ifName": "if_l3hdwroute", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 51, "ifSpeed": null, @@ -5294,7 +5294,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "if_0003_l3hdwroute", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -5384,8 +5384,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_0004_l3pocroute", - "ifName": "if_l3pocroute", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 52, "ifSpeed": null, @@ -5399,7 +5399,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "if_0004_l3pocroute", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -5489,8 +5489,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_28_printers", - "ifName": "if_printers", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 53, "ifSpeed": null, @@ -5504,7 +5504,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "if_28_printers", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -5594,8 +5594,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_101_security", - "ifName": "if_security", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 54, "ifSpeed": null, @@ -5609,7 +5609,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "if_101_security", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -5699,8 +5699,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_32_voip", - "ifName": "if_32_voip", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 55, "ifSpeed": null, @@ -5714,7 +5714,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "if_32_voip", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -5819,7 +5819,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "tunnel", - "ifAlias": "SSL VPN interface", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -5909,8 +5909,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_106_dlserv", - "ifName": "if_dlserv", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 57, "ifSpeed": null, @@ -5924,7 +5924,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "if_106_dlserv", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -6014,8 +6014,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_109_gast", - "ifName": "if_gast", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 58, "ifSpeed": null, @@ -6029,7 +6029,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "if_109_gast", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -6119,8 +6119,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_110_meet", - "ifName": "if_meet", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 59, "ifSpeed": null, @@ -6134,7 +6134,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "if_110_meet", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -6224,8 +6224,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IPSEC_Motiv", - "ifName": "IPSEC_Motiv", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 60, "ifSpeed": null, @@ -6239,7 +6239,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "tunnel", - "ifAlias": "IPSEC_Motiv", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -6329,8 +6329,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_126_vpn_log", - "ifName": "if_126_vpn_log", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 61, "ifSpeed": null, @@ -6344,7 +6344,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "if_126_vpn_log", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -6434,8 +6434,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_68_voip", - "ifName": "if_68_voip", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 62, "ifSpeed": null, @@ -6449,7 +6449,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "if_68_voip", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -6539,8 +6539,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_122_test", - "ifName": "if_test", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 63, "ifSpeed": null, @@ -6554,7 +6554,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "if_122_test", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -6644,8 +6644,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "W1903 034", - "ifName": "vl_540-camera-s", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 64, "ifSpeed": null, @@ -6659,7 +6659,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "W1903 034", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -6749,8 +6749,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_210_biman", - "ifName": "if_biman", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 65, "ifSpeed": null, @@ -6764,7 +6764,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "if_210_biman", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -6854,8 +6854,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_211_buman", - "ifName": "if_buman", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 66, "ifSpeed": null, @@ -6869,7 +6869,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "if_211_buman", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -6959,8 +6959,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "W1903 286", - "ifName": "vl_53_hdw-w10", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 67, "ifSpeed": null, @@ -6974,7 +6974,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "W1903 286", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -7064,8 +7064,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_301_dmz1", - "ifName": "if_dmz1", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 68, "ifSpeed": null, @@ -7079,7 +7079,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "if_301_dmz1", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -7169,8 +7169,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_302_dmz2", - "ifName": "if_dmz2", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 69, "ifSpeed": null, @@ -7184,7 +7184,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "if_302_dmz2", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -7274,8 +7274,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_303_dmz3", - "ifName": "if_dmz3", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 70, "ifSpeed": null, @@ -7289,7 +7289,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "if_303_dmz3", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -7379,8 +7379,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_60_avd", - "ifName": "if_60_avd", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 71, "ifSpeed": null, @@ -7394,7 +7394,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "if_60_avd", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -7484,8 +7484,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IPSEC_Portiva", - "ifName": "IPSEC_Portiva", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 72, "ifSpeed": null, @@ -7498,8 +7498,8 @@ "ifAdminStatus_prev": null, "ifDuplex": null, "ifMtu": null, - "ifType": "tunnel", - "ifAlias": "IPSEC_Portiva", + "ifType": "l2vlan", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -7589,8 +7589,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "vl_900-dc-trust", - "ifName": "vl_900-dc-trust", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 73, "ifSpeed": null, @@ -7604,7 +7604,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "vl_900-dc-trust", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -7694,8 +7694,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_307_dmzxtr", - "ifName": "if_dmzxtr", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 74, "ifSpeed": null, @@ -7709,7 +7709,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "if_307_dmzxtr", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -7799,8 +7799,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_311_gmol", - "ifName": "if_gmol", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 75, "ifSpeed": null, @@ -7814,7 +7814,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "if_311_gmol", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -7904,8 +7904,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_319_mts_deltagoot", - "ifName": "if_ext319", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 76, "ifSpeed": null, @@ -7919,7 +7919,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "if_319_mts_deltagoot", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -8009,8 +8009,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_320_hdwdmzinfra", - "ifName": "if_hdwdmzinfra", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 77, "ifSpeed": null, @@ -8024,7 +8024,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "if_320_hdwdmzinfra", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -8114,8 +8114,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "W1903 034", - "ifName": "vl_581-dcd-came", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 78, "ifSpeed": null, @@ -8129,7 +8129,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "W1903 034", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -8219,8 +8219,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_322_videoconf", - "ifName": "if_hdwdmzhost2", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 79, "ifSpeed": null, @@ -8234,7 +8234,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "if_322_videoconf", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -8324,22 +8324,22 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_323_cst_nhi", - "ifName": "if_hdwdmzhost3", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 80, "ifSpeed": null, "ifSpeed_prev": null, "ifConnectorPresent": null, "ifPromiscuousMode": null, - "ifOperStatus": "up", + "ifOperStatus": "down", "ifOperStatus_prev": null, "ifAdminStatus": null, "ifAdminStatus_prev": null, "ifDuplex": null, "ifMtu": null, - "ifType": "l2vlan", - "ifAlias": "if_323_cst_nhi", + "ifType": "tunnel", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -8429,8 +8429,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_324_cst_mipwa", - "ifName": "if_hdwdmzhost4", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 81, "ifSpeed": null, @@ -8444,7 +8444,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "if_324_cst_mipwa", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -8534,8 +8534,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_325_systemsuppport", - "ifName": "if_hdwdmzhost5", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 82, "ifSpeed": null, @@ -8549,7 +8549,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "if_325_systemsuppport", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -8639,8 +8639,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_lo6-KA", - "ifName": "IF_lo6-KA", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 83, "ifSpeed": null, @@ -8654,7 +8654,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "other", - "ifAlias": "IF_lo6-KA", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -8744,8 +8744,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_327_cst_moria", - "ifName": "if_ext327", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 84, "ifSpeed": null, @@ -8759,7 +8759,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "if_327_cst_moria", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -8849,8 +8849,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "vLnk_root-ka0", - "ifName": "vLnk_root-ka0", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 85, "ifSpeed": null, @@ -8864,7 +8864,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "vLnk_root-ka0", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -8954,8 +8954,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "vLnk_root-ka1", - "ifName": "vLnk_root-ka1", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 86, "ifSpeed": null, @@ -8969,7 +8969,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "vLnk_root-ka1", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -9059,8 +9059,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_330_cst_ibrahym", - "ifName": "if_ext330", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 87, "ifSpeed": null, @@ -9074,7 +9074,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "if_330_cst_ibrahym", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -9164,8 +9164,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_0333-OTA_DMZ", - "ifName": "IF_0333-OTA_DMZ", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 88, "ifSpeed": null, @@ -9179,7 +9179,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "IF_0333-OTA_DMZ", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -9269,8 +9269,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_334_hdwdmzpoc", - "ifName": "if_hdwpocdmz", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 89, "ifSpeed": null, @@ -9284,7 +9284,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "if_334_hdwdmzpoc", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -9374,8 +9374,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_350_xtr-infra", - "ifName": "if_xtr_infra", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 90, "ifSpeed": null, @@ -9389,7 +9389,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "if_350_xtr-infra", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -9479,8 +9479,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_0018-Server", - "ifName": "IF_0018-Server", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 91, "ifSpeed": null, @@ -9494,7 +9494,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "IF_0018-Server", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -9584,8 +9584,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_0222_mgmt-ex", - "ifName": "IF_0222_mgmt-ex", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 92, "ifSpeed": null, @@ -9599,7 +9599,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "IF_0222_mgmt-ex", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -9689,8 +9689,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_0017_Client", - "ifName": "IF_0017_Client", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 93, "ifSpeed": null, @@ -9704,7 +9704,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "IF_0017_Client", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -9794,8 +9794,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_108_gast", - "ifName": "if_108_gast", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 94, "ifSpeed": null, @@ -9809,7 +9809,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "if_108_gast", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -9899,8 +9899,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_209_man_hpc", - "ifName": "if_209_man_hpc", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 95, "ifSpeed": null, @@ -9914,7 +9914,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "if_209_man_hpc", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -10004,8 +10004,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "vl_313-vpn-trus", - "ifName": "vl_313-vpn-trus", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 96, "ifSpeed": null, @@ -10019,7 +10019,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "vl_313-vpn-trus", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -10109,8 +10109,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_5_idlab", - "ifName": "if_5_idlab", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 97, "ifSpeed": null, @@ -10124,7 +10124,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "if_5_idlab", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -10214,8 +10214,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_114_winxp", - "ifName": "if_114_winxp", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 98, "ifSpeed": null, @@ -10229,7 +10229,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "if_114_winxp", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -10319,8 +10319,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IPSEC_WSR", - "ifName": "IPSEC_WSR", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 99, "ifSpeed": null, @@ -10334,7 +10334,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "tunnel", - "ifAlias": "IPSEC_WSR", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -10424,8 +10424,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_102_keyproc", - "ifName": "if_102_keyproc", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 100, "ifSpeed": null, @@ -10439,7 +10439,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "if_102_keyproc", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -10529,8 +10529,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "transport VLAN Deltagoot", - "ifName": "IF_0180_DTG", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 101, "ifSpeed": null, @@ -10544,7 +10544,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "transport VLAN Deltagoot", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -10634,8 +10634,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_0335_AD-ext", - "ifName": "IF_0335_AD-ext", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 102, "ifSpeed": null, @@ -10649,7 +10649,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "IF_0335_AD-ext", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -10739,8 +10739,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_0351_WCP-new", - "ifName": "IF_0351_WCP-new", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 103, "ifSpeed": null, @@ -10754,7 +10754,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "IF_0351_WCP-new", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -10844,8 +10844,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_0050_KA-DTL", - "ifName": "IF_0050_KA-DTL", + "ifDescr": "ssl.dc", + "ifName": "ssl.dc", "portName": null, "ifIndex": 104, "ifSpeed": null, @@ -10858,8 +10858,8 @@ "ifAdminStatus_prev": null, "ifDuplex": null, "ifMtu": null, - "ifType": "l2vlan", - "ifAlias": "IF_0050_KA-DTL", + "ifType": "tunnel", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -10949,8 +10949,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_p1_vpn_logger", - "ifName": "P1_VPN_LOGGER", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 105, "ifSpeed": null, @@ -10964,7 +10964,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "tunnel", - "ifAlias": "if_p1_vpn_logger", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -11054,22 +11054,22 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_304_maas", - "ifName": "if_304_maas", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 106, "ifSpeed": null, "ifSpeed_prev": null, "ifConnectorPresent": null, "ifPromiscuousMode": null, - "ifOperStatus": "up", + "ifOperStatus": "down", "ifOperStatus_prev": null, "ifAdminStatus": null, "ifAdminStatus_prev": null, "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "if_304_maas", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -11159,8 +11159,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_lo6", - "ifName": "IF_lo6", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 107, "ifSpeed": null, @@ -11174,7 +11174,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "other", - "ifAlias": "IF_lo6", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -11264,8 +11264,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "transport VLAN Geohal", - "ifName": "IF_0181_GHL", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 108, "ifSpeed": null, @@ -11279,7 +11279,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "transport VLAN Geohal", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -11369,8 +11369,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_0016_Sandbox", - "ifName": "IF_0016_Sandbox", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 109, "ifSpeed": null, @@ -11384,7 +11384,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "IF_0016_Sandbox", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -11474,8 +11474,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_0015_WIFI", - "ifName": "IF_0015_WIFI", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 110, "ifSpeed": null, @@ -11489,7 +11489,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "IF_0015_WIFI", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -11579,8 +11579,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_0014_TABLET", - "ifName": "IF_0014_TABLET", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 111, "ifSpeed": null, @@ -11594,7 +11594,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "IF_0014_TABLET", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -11684,8 +11684,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_0013_RESERVE", - "ifName": "IF_0013_RESERVE", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 112, "ifSpeed": null, @@ -11699,7 +11699,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "IF_0013_RESERVE", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -11789,8 +11789,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_0600_p2p-mfw", - "ifName": "IF_0600_p2p-mfw", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 113, "ifSpeed": null, @@ -11804,7 +11804,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "IF_0600_p2p-mfw", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -11894,8 +11894,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_lo", - "ifName": "IF_lo", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 114, "ifSpeed": null, @@ -11909,7 +11909,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "other", - "ifAlias": "IF_lo", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -11999,8 +11999,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_MGMT_Motiv", - "ifName": "IF_MGMT_Motiv", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 115, "ifSpeed": null, @@ -12014,7 +12014,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "IF_MGMT_Motiv", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -12104,8 +12104,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_221-SiemTcm", - "ifName": "IF_221-SiemTcm", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 116, "ifSpeed": null, @@ -12119,7 +12119,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "IF_221-SiemTcm", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -12209,8 +12209,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_lo-KA", - "ifName": "IF_lo-KA", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 117, "ifSpeed": null, @@ -12224,7 +12224,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "other", - "ifAlias": "IF_lo-KA", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -12314,8 +12314,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_Vl117-OsDmz", - "ifName": "IF_Vl117-OsDmz", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 118, "ifSpeed": null, @@ -12329,7 +12329,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "IF_Vl117-OsDmz", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -12419,8 +12419,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_Vl115-NsxPoc", - "ifName": "IF_Vl115-NsxPoc", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 119, "ifSpeed": null, @@ -12434,7 +12434,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "IF_Vl115-NsxPoc", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -12524,8 +12524,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_0006-DmzDns", - "ifName": "IF_0006-DmzDns", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 120, "ifSpeed": null, @@ -12539,7 +12539,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "IF_0006-DmzDns", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -12629,8 +12629,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IPSEC_Castel", - "ifName": "IPSEC_Castel", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 121, "ifSpeed": null, @@ -12643,8 +12643,8 @@ "ifAdminStatus_prev": null, "ifDuplex": null, "ifMtu": null, - "ifType": "tunnel", - "ifAlias": "IPSEC_Castel", + "ifType": "l2vlan", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -12734,8 +12734,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_118-NsxPoc", - "ifName": "IF_118-NsxPoc", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 122, "ifSpeed": null, @@ -12749,7 +12749,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "IF_118-NsxPoc", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -12839,8 +12839,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "ssl.OTA", - "ifName": "ssl.OTA", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 123, "ifSpeed": null, @@ -12853,8 +12853,8 @@ "ifAdminStatus_prev": null, "ifDuplex": null, "ifMtu": null, - "ifType": "tunnel", - "ifAlias": "SSL VPN interface", + "ifType": "l2vlan", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -12944,8 +12944,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "vLnk_root-OTA0", - "ifName": "vLnk_root-OTA0", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 124, "ifSpeed": null, @@ -12959,7 +12959,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "vLnk_root-OTA0", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -13049,8 +13049,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "transport VLAN Hydro Zuid", - "ifName": "IF_0182_HHZ", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 125, "ifSpeed": null, @@ -13064,7 +13064,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "transport VLAN Hydro Zuid", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -13154,8 +13154,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "vl_37-wcf-clien", - "ifName": "vl_37-wcf-clien", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 126, "ifSpeed": null, @@ -13169,7 +13169,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "vl_37-wcf-clien", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -13259,8 +13259,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_0450_Azure1", - "ifName": "IF_0450_Azure1", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 127, "ifSpeed": null, @@ -13274,7 +13274,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "IF_0450_Azure1", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -13364,8 +13364,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_0451_Azure2", - "ifName": "IF_0451_Azure2", + "ifDescr": "A2203 196", + "ifName": "redacted", "portName": null, "ifIndex": 128, "ifSpeed": null, @@ -13379,7 +13379,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "IF_0451_Azure2", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -13469,8 +13469,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "transport VLAN Hydro Noord", - "ifName": "IF_0183_HHN", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 129, "ifSpeed": null, @@ -13484,7 +13484,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "transport VLAN Hydro Noord", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -13574,8 +13574,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "transport VLAN Toren", - "ifName": "IF_0184_TRN", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 130, "ifSpeed": null, @@ -13589,7 +13589,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "transport VLAN Toren", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -13679,8 +13679,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "transport VLAN Paviljoen", - "ifName": "IF_0185_PAV", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 131, "ifSpeed": null, @@ -13694,7 +13694,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "transport VLAN Paviljoen", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -13784,8 +13784,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "transport VLAN Sigma", - "ifName": "IF_0186_SGM", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 132, "ifSpeed": null, @@ -13799,7 +13799,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "transport VLAN Sigma", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -13889,8 +13889,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "transport VLAN Tetra", - "ifName": "IF_0187_TTR", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 133, "ifSpeed": null, @@ -13904,7 +13904,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "transport VLAN Tetra", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -13994,8 +13994,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "transport VLAN Daltonlaan", - "ifName": "IF_0188_DTL", + "ifDescr": "transport VLAN Daltonlaan\n\\", + "ifName": "redacted", "portName": null, "ifIndex": 134, "ifSpeed": null, @@ -14009,7 +14009,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "transport VLAN Daltonlaan", + "ifAlias": "transport VLAN Daltonlaan\n\\", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -14099,8 +14099,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "transport VLAN Werkplaatsen", - "ifName": "IF_0189_WPL", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 135, "ifSpeed": null, @@ -14114,7 +14114,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "transport VLAN Werkplaatsen", + "ifAlias": "tst", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -14204,8 +14204,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_0223_mgmt-IT", - "ifName": "IF_0223_mgmt-IT", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 136, "ifSpeed": null, @@ -14219,7 +14219,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "IF_0223_mgmt-IT", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -14309,8 +14309,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_0224_mgmt-KA", - "ifName": "IF_0224_mgmt-KA", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 137, "ifSpeed": null, @@ -14324,7 +14324,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "IF_0224_mgmt-KA", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -14414,323 +14414,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "vLnk_root-OTA1", - "ifName": "vLnk_root-OTA1", - "portName": null, - "ifIndex": 138, - "ifSpeed": null, - "ifSpeed_prev": null, - "ifConnectorPresent": null, - "ifPromiscuousMode": null, - "ifOperStatus": "up", - "ifOperStatus_prev": null, - "ifAdminStatus": null, - "ifAdminStatus_prev": null, - "ifDuplex": null, - "ifMtu": null, - "ifType": "l2vlan", - "ifAlias": "vLnk_root-OTA1", - "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": "IF_lo-OTA", - "ifName": "IF_lo-OTA", - "portName": null, - "ifIndex": 139, - "ifSpeed": null, - "ifSpeed_prev": null, - "ifConnectorPresent": null, - "ifPromiscuousMode": null, - "ifOperStatus": "up", - "ifOperStatus_prev": null, - "ifAdminStatus": null, - "ifAdminStatus_prev": null, - "ifDuplex": null, - "ifMtu": null, - "ifType": "other", - "ifAlias": "IF_lo-OTA", - "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": "IF_lo6-OTA", - "ifName": "IF_lo6-OTA", - "portName": null, - "ifIndex": 140, - "ifSpeed": null, - "ifSpeed_prev": null, - "ifConnectorPresent": null, - "ifPromiscuousMode": null, - "ifOperStatus": "up", - "ifOperStatus_prev": null, - "ifAdminStatus": null, - "ifAdminStatus_prev": null, - "ifDuplex": null, - "ifMtu": null, - "ifType": "other", - "ifAlias": "IF_lo6-OTA", - "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": "IF_OTA-Internal", - "ifName": "IF_OTA-Internal", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 141, "ifSpeed": null, @@ -14744,7 +14429,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "IF_OTA-Internal", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -14834,8 +14519,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_OTA-Trusted", - "ifName": "IF_OTA-Trusted", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 142, "ifSpeed": null, @@ -14849,7 +14534,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "IF_OTA-Trusted", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -14939,8 +14624,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_OTA-DMZ", - "ifName": "IF_OTA-DMZ", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 143, "ifSpeed": null, @@ -14954,7 +14639,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "IF_OTA-DMZ", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -15044,8 +14729,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IPSEC_Cirrus_SA", - "ifName": "IPSEC_Cirrus_SA", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 144, "ifSpeed": null, @@ -15059,7 +14744,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "tunnel", - "ifAlias": "IPSEC_Cirrus_SA", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -15149,8 +14834,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_0002_lb-dc", - "ifName": "IF_0002_lb-dc", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 145, "ifSpeed": null, @@ -15164,7 +14849,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "IF_0002_lb-dc", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -15254,8 +14939,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_old-mgmt", - "ifName": "IF_old-mgmt", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 146, "ifSpeed": null, @@ -15269,7 +14954,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "IF_old-mgmt", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -15359,8 +15044,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "transport VLAN DCD-B", - "ifName": "IF_0190_DCD", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 147, "ifSpeed": null, @@ -15374,7 +15059,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "transport VLAN DCD-B", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -15464,22 +15149,22 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "WIFI TRUSTED", - "ifName": "IF_0131_WIFI", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 148, "ifSpeed": null, "ifSpeed_prev": null, "ifConnectorPresent": null, "ifPromiscuousMode": null, - "ifOperStatus": "up", + "ifOperStatus": "down", "ifOperStatus_prev": null, "ifAdminStatus": null, "ifAdminStatus_prev": null, "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "WIFI TRUSTED", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -15569,8 +15254,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_0124_dmz-rdm", - "ifName": "IF_0124_dmz-rdm", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 149, "ifSpeed": null, @@ -15584,7 +15269,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "IF_0124_dmz-rdm", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -15674,8 +15359,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "Was in eerste design een DMZ netwerk. Onmogelijk naam te wijzigen zonder onderbreking dus heet nog steeds DMZ", - "ifName": "IF_0125_dmz-ibr", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 150, "ifSpeed": null, @@ -15689,7 +15374,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "Was in eerste design een DMZ netwerk. Onmogelijk naam te wijzigen zonder onderbreking dus heet nog steeds DMZ", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -15779,8 +15464,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "W1801-180", - "ifName": "IF_0007-DMZ-NTP", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 151, "ifSpeed": null, @@ -15794,7 +15479,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "W1801-180", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -15884,8 +15569,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_0143_lb-ota", - "ifName": "IF_0143_lb-ota", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 152, "ifSpeed": null, @@ -15899,7 +15584,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "IF_0143_lb-ota", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -15989,8 +15674,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_0008_WCF", - "ifName": "IF_0008_WCF", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 153, "ifSpeed": null, @@ -16004,7 +15689,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "IF_0008_WCF", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -16094,8 +15779,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "vl_9-ka-lb-vip", - "ifName": "vl_9-ka-lb-vip", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 154, "ifSpeed": null, @@ -16109,7 +15794,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "vl_9-ka-lb-vip", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -16199,8 +15884,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "vl_312-vpn-dmz", - "ifName": "vl_312-vpn-dmz", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 155, "ifSpeed": null, @@ -16214,7 +15899,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "vl_312-vpn-dmz", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -16304,8 +15989,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "vl_38-wcf-ota", - "ifName": "vl_38-wcf-ota", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 156, "ifSpeed": null, @@ -16319,7 +16004,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "vl_38-wcf-ota", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -16409,8 +16094,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "vl_12-dmz-laadp", - "ifName": "vl_12-dmz-laadp", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 157, "ifSpeed": null, @@ -16424,7 +16109,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "vl_12-dmz-laadp", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -16514,8 +16199,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "A1902 310", - "ifName": "vl_1000-sddc-mg", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 158, "ifSpeed": null, @@ -16529,7 +16214,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "A1902 310", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -16619,113 +16304,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "vl_702-p2p-vrf", - "ifName": "vl_702-p2p-vrf", - "portName": null, - "ifIndex": 159, - "ifSpeed": null, - "ifSpeed_prev": null, - "ifConnectorPresent": null, - "ifPromiscuousMode": null, - "ifOperStatus": "up", - "ifOperStatus_prev": null, - "ifAdminStatus": null, - "ifAdminStatus_prev": null, - "ifDuplex": null, - "ifMtu": null, - "ifType": "l2vlan", - "ifAlias": "vl_702-p2p-vrf", - "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": "A1902 357", - "ifName": "vl_1004-sddc-wl", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 160, "ifSpeed": null, @@ -16739,7 +16319,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "A1902 357", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -16829,8 +16409,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "vl_1070-dc-inte", - "ifName": "vl_1070-dc-inte", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 161, "ifSpeed": null, @@ -16844,7 +16424,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "vl_1070-dc-inte", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -16934,8 +16514,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "vl_800-dc-dmz-r", - "ifName": "vl_800-dc-dmz-r", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 162, "ifSpeed": null, @@ -16949,7 +16529,2737 @@ "ifDuplex": null, "ifMtu": null, "ifType": "l2vlan", - "ifAlias": "vl_800-dc-dmz-r", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 163, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 164, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 165, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 166, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 167, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 168, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 169, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 170, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 172, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 173, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 174, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 175, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 176, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "tunnel", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 177, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 178, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 179, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 180, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 181, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 182, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 183, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 184, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 185, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 186, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 187, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 188, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 189, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -17043,14 +19353,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_10_mgmt1", + "ifDescr": "redacted", "ifName": "mgmt1", "portName": null, "ifIndex": 1, "ifSpeed": 1000000000, "ifSpeed_prev": null, "ifConnectorPresent": "true", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -17058,8 +19368,8 @@ "ifDuplex": "fullDuplex", "ifMtu": 1500, "ifType": "ethernetCsmacd", - "ifAlias": "if_10_mgmt1", - "ifPhysAddress": "085b0e9a5754", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57d8", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -17080,11 +19390,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 3021661946, + "ifInUcastPkts": 1659052, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 2592279717, + "ifOutUcastPkts": 65741, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -17096,11 +19406,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 541306671159, + "ifInOctets": 121099477, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 742962781953, + "ifOutOctets": 10650042, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -17133,7 +19443,7 @@ "ifOutBroadcastPkts_prev": 0, "ifOutBroadcastPkts_delta": null, "ifOutBroadcastPkts_rate": null, - "ifInMulticastPkts": 9307608, + "ifInMulticastPkts": 1249123, "ifInMulticastPkts_prev": 0, "ifInMulticastPkts_delta": null, "ifInMulticastPkts_rate": null, @@ -17148,23 +19458,23 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port1", + "ifDescr": "redacted", "ifName": "port1", "portName": null, "ifIndex": 2, - "ifSpeed": null, - "ifSpeed_prev": 0, + "ifSpeed": 0, + "ifSpeed_prev": null, "ifConnectorPresent": "true", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "down", "ifOperStatus_prev": "down", "ifAdminStatus": "down", "ifAdminStatus_prev": null, - "ifDuplex": "halfDuplex", + "ifDuplex": "unknown", "ifMtu": 1500, "ifType": "ethernetCsmacd", - "ifAlias": "if_port1", - "ifPhysAddress": "085b0e9a572c", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57b0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -17257,8 +19567,8 @@ "ifName": "modem", "portName": null, "ifIndex": 3, - "ifSpeed": null, - "ifSpeed_prev": 0, + "ifSpeed": 0, + "ifSpeed_prev": null, "ifConnectorPresent": "true", "ifPromiscuousMode": "false", "ifOperStatus": "down", @@ -17358,23 +19668,23 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port2", + "ifDescr": "redacted", "ifName": "port2", "portName": null, "ifIndex": 4, - "ifSpeed": null, - "ifSpeed_prev": 0, + "ifSpeed": 0, + "ifSpeed_prev": null, "ifConnectorPresent": "true", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "down", "ifOperStatus_prev": "down", "ifAdminStatus": "down", "ifAdminStatus_prev": null, - "ifDuplex": "halfDuplex", + "ifDuplex": "unknown", "ifMtu": 1500, "ifType": "ethernetCsmacd", - "ifAlias": "if_port2", - "ifPhysAddress": "085b0e9a572d", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57b1", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -17463,23 +19773,23 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port3", + "ifDescr": "redacted", "ifName": "port3", "portName": null, "ifIndex": 5, - "ifSpeed": null, - "ifSpeed_prev": 0, + "ifSpeed": 0, + "ifSpeed_prev": null, "ifConnectorPresent": "true", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "down", "ifOperStatus_prev": "down", "ifAdminStatus": "down", "ifAdminStatus_prev": null, - "ifDuplex": "halfDuplex", + "ifDuplex": "unknown", "ifMtu": 1500, "ifType": "ethernetCsmacd", - "ifAlias": "if_port3", - "ifPhysAddress": "085b0e9a572e", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57b2", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -17568,23 +19878,23 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port4", + "ifDescr": "redacted", "ifName": "port4", "portName": null, "ifIndex": 6, - "ifSpeed": null, - "ifSpeed_prev": 0, + "ifSpeed": 0, + "ifSpeed_prev": null, "ifConnectorPresent": "true", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "down", "ifOperStatus_prev": "down", "ifAdminStatus": "down", "ifAdminStatus_prev": null, - "ifDuplex": "halfDuplex", + "ifDuplex": "unknown", "ifMtu": 1500, "ifType": "ethernetCsmacd", - "ifAlias": "if_port4", - "ifPhysAddress": "085b0e9a572f", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57b3", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -17673,23 +19983,23 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port5", + "ifDescr": "redacted", "ifName": "port5", "portName": null, "ifIndex": 7, - "ifSpeed": null, - "ifSpeed_prev": 0, + "ifSpeed": 0, + "ifSpeed_prev": null, "ifConnectorPresent": "true", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "down", "ifOperStatus_prev": "down", "ifAdminStatus": "down", "ifAdminStatus_prev": null, - "ifDuplex": "halfDuplex", + "ifDuplex": "unknown", "ifMtu": 1500, "ifType": "ethernetCsmacd", - "ifAlias": "if_port5", - "ifPhysAddress": "085b0e9a5730", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57b4", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -17778,23 +20088,23 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port6", + "ifDescr": "redacted", "ifName": "port6", "portName": null, "ifIndex": 8, - "ifSpeed": null, - "ifSpeed_prev": 0, + "ifSpeed": 0, + "ifSpeed_prev": null, "ifConnectorPresent": "true", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "down", "ifOperStatus_prev": "down", "ifAdminStatus": "down", "ifAdminStatus_prev": null, - "ifDuplex": "halfDuplex", + "ifDuplex": "unknown", "ifMtu": 1500, "ifType": "ethernetCsmacd", - "ifAlias": "if_port6", - "ifPhysAddress": "085b0e9a5731", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57b5", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -17883,23 +20193,23 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port7", + "ifDescr": "redacted", "ifName": "port7", "portName": null, "ifIndex": 9, - "ifSpeed": null, - "ifSpeed_prev": 0, + "ifSpeed": 0, + "ifSpeed_prev": null, "ifConnectorPresent": "true", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "down", "ifOperStatus_prev": "down", "ifAdminStatus": "down", "ifAdminStatus_prev": null, - "ifDuplex": "halfDuplex", + "ifDuplex": "unknown", "ifMtu": 1500, "ifType": "ethernetCsmacd", - "ifAlias": "if_port7", - "ifPhysAddress": "085b0e9a5732", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57b6", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -17988,23 +20298,23 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port8", + "ifDescr": "redacted", "ifName": "port8", "portName": null, "ifIndex": 10, - "ifSpeed": null, - "ifSpeed_prev": 0, + "ifSpeed": 0, + "ifSpeed_prev": null, "ifConnectorPresent": "true", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "down", "ifOperStatus_prev": "down", "ifAdminStatus": "down", "ifAdminStatus_prev": null, - "ifDuplex": "halfDuplex", + "ifDuplex": "unknown", "ifMtu": 1500, "ifType": "ethernetCsmacd", - "ifAlias": "if_port8", - "ifPhysAddress": "085b0e9a5733", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57b7", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -18093,23 +20403,23 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port9", + "ifDescr": "redacted", "ifName": "port9", "portName": null, "ifIndex": 11, - "ifSpeed": null, - "ifSpeed_prev": 0, + "ifSpeed": 0, + "ifSpeed_prev": null, "ifConnectorPresent": "true", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "down", "ifOperStatus_prev": "down", "ifAdminStatus": "down", "ifAdminStatus_prev": null, - "ifDuplex": "halfDuplex", + "ifDuplex": "unknown", "ifMtu": 1500, "ifType": "ethernetCsmacd", - "ifAlias": "if_port9", - "ifPhysAddress": "085b0e9a5740", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c4", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -18198,23 +20508,23 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port10", + "ifDescr": "redacted", "ifName": "port10", "portName": null, "ifIndex": 12, - "ifSpeed": null, - "ifSpeed_prev": 0, + "ifSpeed": 0, + "ifSpeed_prev": null, "ifConnectorPresent": "true", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "down", "ifOperStatus_prev": "down", "ifAdminStatus": "down", "ifAdminStatus_prev": null, - "ifDuplex": "halfDuplex", + "ifDuplex": "unknown", "ifMtu": 1500, "ifType": "ethernetCsmacd", - "ifAlias": "if_port10", - "ifPhysAddress": "085b0e9a5741", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c5", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -18303,23 +20613,23 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port11", + "ifDescr": "redacted", "ifName": "port11", "portName": null, "ifIndex": 13, - "ifSpeed": null, - "ifSpeed_prev": 0, + "ifSpeed": 0, + "ifSpeed_prev": null, "ifConnectorPresent": "true", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "down", "ifOperStatus_prev": "down", "ifAdminStatus": "down", "ifAdminStatus_prev": null, - "ifDuplex": "halfDuplex", + "ifDuplex": "unknown", "ifMtu": 1500, "ifType": "ethernetCsmacd", - "ifAlias": "if_port11", - "ifPhysAddress": "085b0e9a5742", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c6", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -18408,23 +20718,23 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port12", + "ifDescr": "redacted", "ifName": "port12", "portName": null, "ifIndex": 14, - "ifSpeed": null, - "ifSpeed_prev": 0, + "ifSpeed": 0, + "ifSpeed_prev": null, "ifConnectorPresent": "true", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "down", "ifOperStatus_prev": "down", "ifAdminStatus": "down", "ifAdminStatus_prev": null, - "ifDuplex": "halfDuplex", + "ifDuplex": "unknown", "ifMtu": 1500, "ifType": "ethernetCsmacd", - "ifAlias": "if_port12", - "ifPhysAddress": "085b0e9a5743", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c7", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -18513,23 +20823,23 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port13", + "ifDescr": "redacted", "ifName": "port13", "portName": null, "ifIndex": 15, - "ifSpeed": null, - "ifSpeed_prev": 0, + "ifSpeed": 0, + "ifSpeed_prev": null, "ifConnectorPresent": "true", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "down", "ifOperStatus_prev": "down", "ifAdminStatus": "down", "ifAdminStatus_prev": null, - "ifDuplex": "halfDuplex", + "ifDuplex": "unknown", "ifMtu": 1500, "ifType": "ethernetCsmacd", - "ifAlias": "if_port13", - "ifPhysAddress": "085b0e9a5744", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c8", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -18618,23 +20928,23 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port14", + "ifDescr": "redacted", "ifName": "port14", "portName": null, "ifIndex": 16, - "ifSpeed": null, - "ifSpeed_prev": 0, + "ifSpeed": 0, + "ifSpeed_prev": null, "ifConnectorPresent": "true", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "down", "ifOperStatus_prev": "down", "ifAdminStatus": "down", "ifAdminStatus_prev": null, - "ifDuplex": "halfDuplex", + "ifDuplex": "unknown", "ifMtu": 1500, "ifType": "ethernetCsmacd", - "ifAlias": "if_port14", - "ifPhysAddress": "085b0e9a5745", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c9", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -18723,14 +21033,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port15_HA1", + "ifDescr": "redacted", "ifName": "port15", "portName": null, "ifIndex": 17, "ifSpeed": 1000000000, "ifSpeed_prev": null, "ifConnectorPresent": "true", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -18738,8 +21048,8 @@ "ifDuplex": "fullDuplex", "ifMtu": 1500, "ifType": "ethernetCsmacd", - "ifAlias": "HA1", - "ifPhysAddress": "085b0e9a5746", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57ca", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -18760,11 +21070,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 1832207260, + "ifInUcastPkts": 17550487554, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 14177768760, + "ifOutUcastPkts": 2208354206, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -18776,11 +21086,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 311886725013, + "ifInOctets": 3236388364564, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 2343644387597, + "ifOutOctets": 350661341757, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -18828,14 +21138,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port16_HA2", + "ifDescr": "redacted", "ifName": "port16", "portName": null, "ifIndex": 18, "ifSpeed": 1000000000, "ifSpeed_prev": null, "ifConnectorPresent": "true", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -18843,8 +21153,8 @@ "ifDuplex": "fullDuplex", "ifMtu": 1500, "ifType": "ethernetCsmacd", - "ifAlias": "HA2", - "ifPhysAddress": "085b0e9a5747", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57cb", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -18865,11 +21175,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 1788553393, + "ifInUcastPkts": 13804311, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 13484206481, + "ifOutUcastPkts": 13803693, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -18881,11 +21191,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 305674583796, + "ifInOctets": 5882130436, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 2241311639887, + "ifOutOctets": 5954824277, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -18933,23 +21243,23 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port17", + "ifDescr": "redacted", "ifName": "port17", "portName": null, "ifIndex": 19, - "ifSpeed": null, - "ifSpeed_prev": 0, + "ifSpeed": 0, + "ifSpeed_prev": null, "ifConnectorPresent": "true", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "down", "ifOperStatus_prev": "down", "ifAdminStatus": "down", "ifAdminStatus_prev": null, - "ifDuplex": "halfDuplex", + "ifDuplex": "unknown", "ifMtu": 1500, "ifType": "ethernetCsmacd", - "ifAlias": "if_port17", - "ifPhysAddress": "085b0e9a5734", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57b8", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -19038,23 +21348,23 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port18", + "ifDescr": "redacted", "ifName": "port18", "portName": null, "ifIndex": 20, - "ifSpeed": null, - "ifSpeed_prev": 0, + "ifSpeed": 0, + "ifSpeed_prev": null, "ifConnectorPresent": "true", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "down", "ifOperStatus_prev": "down", "ifAdminStatus": "down", "ifAdminStatus_prev": null, - "ifDuplex": "halfDuplex", + "ifDuplex": "unknown", "ifMtu": 1500, "ifType": "ethernetCsmacd", - "ifAlias": "if_port18", - "ifPhysAddress": "085b0e9a5735", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57b9", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -19143,23 +21453,23 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port19", + "ifDescr": "redacted", "ifName": "port19", "portName": null, "ifIndex": 21, - "ifSpeed": null, - "ifSpeed_prev": 0, + "ifSpeed": 0, + "ifSpeed_prev": null, "ifConnectorPresent": "true", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "down", "ifOperStatus_prev": "down", "ifAdminStatus": "down", "ifAdminStatus_prev": null, - "ifDuplex": "halfDuplex", + "ifDuplex": "unknown", "ifMtu": 1500, "ifType": "ethernetCsmacd", - "ifAlias": "if_port19", - "ifPhysAddress": "085b0e9a5736", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57ba", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -19248,23 +21558,23 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port20", + "ifDescr": "redacted", "ifName": "port20", "portName": null, "ifIndex": 22, - "ifSpeed": null, - "ifSpeed_prev": 0, + "ifSpeed": 0, + "ifSpeed_prev": null, "ifConnectorPresent": "true", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "down", "ifOperStatus_prev": "down", "ifAdminStatus": "down", "ifAdminStatus_prev": null, - "ifDuplex": "halfDuplex", + "ifDuplex": "unknown", "ifMtu": 1500, "ifType": "ethernetCsmacd", - "ifAlias": "if_port20", - "ifPhysAddress": "085b0e9a5737", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57bb", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -19353,23 +21663,23 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port21", + "ifDescr": "redacted", "ifName": "port21", "portName": null, "ifIndex": 23, - "ifSpeed": null, - "ifSpeed_prev": 0, + "ifSpeed": 0, + "ifSpeed_prev": null, "ifConnectorPresent": "true", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "down", "ifOperStatus_prev": "down", "ifAdminStatus": "down", "ifAdminStatus_prev": null, - "ifDuplex": "halfDuplex", + "ifDuplex": "unknown", "ifMtu": 1500, "ifType": "ethernetCsmacd", - "ifAlias": "if_port21", - "ifPhysAddress": "085b0e9a5738", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57bc", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -19458,23 +21768,23 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port22", + "ifDescr": "redacted", "ifName": "port22", "portName": null, "ifIndex": 24, - "ifSpeed": null, - "ifSpeed_prev": 0, + "ifSpeed": 0, + "ifSpeed_prev": null, "ifConnectorPresent": "true", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "down", "ifOperStatus_prev": "down", "ifAdminStatus": "down", "ifAdminStatus_prev": null, - "ifDuplex": "halfDuplex", + "ifDuplex": "unknown", "ifMtu": 1500, "ifType": "ethernetCsmacd", - "ifAlias": "if_port22", - "ifPhysAddress": "085b0e9a5739", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57bd", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -19563,23 +21873,23 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port23", + "ifDescr": "redacted", "ifName": "port23", "portName": null, "ifIndex": 25, - "ifSpeed": null, - "ifSpeed_prev": 0, + "ifSpeed": 0, + "ifSpeed_prev": null, "ifConnectorPresent": "true", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "down", "ifOperStatus_prev": "down", "ifAdminStatus": "down", "ifAdminStatus_prev": null, - "ifDuplex": "halfDuplex", + "ifDuplex": "unknown", "ifMtu": 1500, "ifType": "ethernetCsmacd", - "ifAlias": "if_port23", - "ifPhysAddress": "085b0e9a573a", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57be", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -19668,23 +21978,23 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port24", + "ifDescr": "redacted", "ifName": "port24", "portName": null, "ifIndex": 26, - "ifSpeed": null, - "ifSpeed_prev": 0, + "ifSpeed": 0, + "ifSpeed_prev": null, "ifConnectorPresent": "true", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "down", "ifOperStatus_prev": "down", "ifAdminStatus": "down", "ifAdminStatus_prev": null, - "ifDuplex": "halfDuplex", + "ifDuplex": "unknown", "ifMtu": 1500, "ifType": "ethernetCsmacd", - "ifAlias": "if_port24", - "ifPhysAddress": "085b0e9a573b", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57bf", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -19773,23 +22083,23 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port25", + "ifDescr": "redacted", "ifName": "port25", "portName": null, "ifIndex": 27, - "ifSpeed": null, - "ifSpeed_prev": 0, + "ifSpeed": 0, + "ifSpeed_prev": null, "ifConnectorPresent": "true", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "down", "ifOperStatus_prev": "down", "ifAdminStatus": "down", "ifAdminStatus_prev": null, - "ifDuplex": "halfDuplex", + "ifDuplex": "unknown", "ifMtu": 1500, "ifType": "ethernetCsmacd", - "ifAlias": "if_port25", - "ifPhysAddress": "085b0e9a5748", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57cc", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -19878,23 +22188,23 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port26", + "ifDescr": "redacted", "ifName": "port26", "portName": null, "ifIndex": 28, - "ifSpeed": null, - "ifSpeed_prev": 0, + "ifSpeed": 0, + "ifSpeed_prev": null, "ifConnectorPresent": "true", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "down", "ifOperStatus_prev": "down", "ifAdminStatus": "down", "ifAdminStatus_prev": null, - "ifDuplex": "halfDuplex", + "ifDuplex": "unknown", "ifMtu": 1500, "ifType": "ethernetCsmacd", - "ifAlias": "if_port26", - "ifPhysAddress": "085b0e9a5749", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57cd", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -19983,23 +22293,23 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port27", + "ifDescr": "redacted", "ifName": "port27", "portName": null, "ifIndex": 29, - "ifSpeed": null, - "ifSpeed_prev": 0, + "ifSpeed": 0, + "ifSpeed_prev": null, "ifConnectorPresent": "true", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "down", "ifOperStatus_prev": "down", "ifAdminStatus": "down", "ifAdminStatus_prev": null, - "ifDuplex": "halfDuplex", + "ifDuplex": "unknown", "ifMtu": 1500, "ifType": "ethernetCsmacd", - "ifAlias": "if_port27", - "ifPhysAddress": "085b0e9a574a", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57ce", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -20088,23 +22398,23 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port28", + "ifDescr": "redacted", "ifName": "port28", "portName": null, "ifIndex": 30, - "ifSpeed": null, - "ifSpeed_prev": 0, + "ifSpeed": 0, + "ifSpeed_prev": null, "ifConnectorPresent": "true", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "down", "ifOperStatus_prev": "down", "ifAdminStatus": "down", "ifAdminStatus_prev": null, - "ifDuplex": "halfDuplex", + "ifDuplex": "unknown", "ifMtu": 1500, "ifType": "ethernetCsmacd", - "ifAlias": "if_port28", - "ifPhysAddress": "085b0e9a574b", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57cf", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -20193,23 +22503,23 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port29", + "ifDescr": "redacted", "ifName": "port29", "portName": null, "ifIndex": 31, - "ifSpeed": null, - "ifSpeed_prev": 0, + "ifSpeed": 0, + "ifSpeed_prev": null, "ifConnectorPresent": "true", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "down", "ifOperStatus_prev": "down", "ifAdminStatus": "down", "ifAdminStatus_prev": null, - "ifDuplex": "halfDuplex", + "ifDuplex": "unknown", "ifMtu": 1500, "ifType": "ethernetCsmacd", - "ifAlias": "if_port29", - "ifPhysAddress": "085b0e9a574c", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57d0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -20298,23 +22608,23 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port30", + "ifDescr": "redacted", "ifName": "port30", "portName": null, "ifIndex": 32, - "ifSpeed": null, - "ifSpeed_prev": 0, + "ifSpeed": 0, + "ifSpeed_prev": null, "ifConnectorPresent": "true", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "down", "ifOperStatus_prev": "down", "ifAdminStatus": "down", "ifAdminStatus_prev": null, - "ifDuplex": "halfDuplex", + "ifDuplex": "unknown", "ifMtu": 1500, "ifType": "ethernetCsmacd", - "ifAlias": "if_port30", - "ifPhysAddress": "085b0e9a574d", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57d1", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -20403,23 +22713,23 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port31", + "ifDescr": "redacted", "ifName": "port31", "portName": null, "ifIndex": 33, - "ifSpeed": null, - "ifSpeed_prev": 0, + "ifSpeed": 0, + "ifSpeed_prev": null, "ifConnectorPresent": "true", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "down", "ifOperStatus_prev": "down", "ifAdminStatus": "down", "ifAdminStatus_prev": null, - "ifDuplex": "halfDuplex", + "ifDuplex": "unknown", "ifMtu": 1500, "ifType": "ethernetCsmacd", - "ifAlias": "if_port31", - "ifPhysAddress": "085b0e9a574e", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57d2", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -20508,23 +22818,23 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port33", + "ifDescr": "redacted", "ifName": "port32", "portName": null, "ifIndex": 34, - "ifSpeed": null, - "ifSpeed_prev": 0, + "ifSpeed": 0, + "ifSpeed_prev": null, "ifConnectorPresent": "true", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "down", "ifOperStatus_prev": "down", "ifAdminStatus": "down", "ifAdminStatus_prev": null, - "ifDuplex": "halfDuplex", + "ifDuplex": "unknown", "ifMtu": 1500, "ifType": "ethernetCsmacd", - "ifAlias": "if_port33", - "ifPhysAddress": "085b0e9a574f", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57d3", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -20613,14 +22923,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "SWITCH_DOWNLINK_1_OF_2", + "ifDescr": "redacted", "ifName": "port33", "portName": null, "ifIndex": 35, "ifSpeed": 10000000000, "ifSpeed_prev": null, "ifConnectorPresent": "true", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -20628,8 +22938,8 @@ "ifDuplex": "fullDuplex", "ifMtu": 1500, "ifType": "ethernetCsmacd", - "ifAlias": "SWITCH_DOWNLINK_1_OF_2", - "ifPhysAddress": "085b0e9a573c", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -20650,11 +22960,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 1831900405183, + "ifInUcastPkts": 123449730, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 1823538011957, + "ifOutUcastPkts": 131257, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -20666,11 +22976,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 1735682150320059, + "ifInOctets": 15258228306, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 1708267939379979, + "ifOutOctets": 45454446, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -20718,14 +23028,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "SWITCH_DOWNLINK_2_OF_2", + "ifDescr": "redacted", "ifName": "port34", "portName": null, "ifIndex": 36, "ifSpeed": 10000000000, "ifSpeed_prev": null, "ifConnectorPresent": "true", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -20733,8 +23043,8 @@ "ifDuplex": "fullDuplex", "ifMtu": 1500, "ifType": "ethernetCsmacd", - "ifAlias": "SWITCH_DOWNLINK_2_OF_2", - "ifPhysAddress": "085b0e9a573d", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c1", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -20755,11 +23065,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 1512102281401, + "ifInUcastPkts": 163067620, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 1516476160290, + "ifOutUcastPkts": 131264, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -20771,11 +23081,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 1314510466931934, + "ifInOctets": 28023884818, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 1340106316637250, + "ifOutOctets": 45460506, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -20823,14 +23133,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "SURFnoc Service id 3514IR1", + "ifDescr": "redacted", "ifName": "port35", "portName": null, "ifIndex": 37, "ifSpeed": 10000000000, "ifSpeed_prev": null, "ifConnectorPresent": "true", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -20838,8 +23148,8 @@ "ifDuplex": "fullDuplex", "ifMtu": 1500, "ifType": "ethernetCsmacd", - "ifAlias": "SURFNET gsw02out", - "ifPhysAddress": "085b0e9a573e", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c2", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -20860,11 +23170,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 223398870195, + "ifInUcastPkts": 1635516, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 142652567848, + "ifOutUcastPkts": 2, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -20876,11 +23186,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 134021948425924, + "ifInOctets": 139444932, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 126772093646495, + "ifOutOctets": 128, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -20928,14 +23238,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "SURFnoc Service id 3514IR2", + "ifDescr": "redacted", "ifName": "port36", "portName": null, "ifIndex": 38, "ifSpeed": 10000000000, "ifSpeed_prev": null, "ifConnectorPresent": "true", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -20943,8 +23253,8 @@ "ifDuplex": "fullDuplex", "ifMtu": 1500, "ifType": "ethernetCsmacd", - "ifAlias": "SURFNET gsw01out", - "ifPhysAddress": "085b0e9a573f", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c3", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -20965,11 +23275,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 27107725, + "ifInUcastPkts": 1624954, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 10594317, + "ifOutUcastPkts": 0, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -20981,11 +23291,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 4780579036, + "ifInOctets": 138494789, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 3114258322, + "ifOutOctets": 0, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -21033,23 +23343,23 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port37", + "ifDescr": "redacted", "ifName": "port37", "portName": null, "ifIndex": 39, - "ifSpeed": null, - "ifSpeed_prev": 0, + "ifSpeed": 0, + "ifSpeed_prev": null, "ifConnectorPresent": "true", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "down", "ifOperStatus_prev": "down", "ifAdminStatus": "down", "ifAdminStatus_prev": null, - "ifDuplex": "halfDuplex", + "ifDuplex": "unknown", "ifMtu": 1500, "ifType": "ethernetCsmacd", - "ifAlias": "if_port37", - "ifPhysAddress": "085b0e9a5750", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57d4", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -21138,23 +23448,23 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port38", + "ifDescr": "redacted", "ifName": "port38", "portName": null, "ifIndex": 40, - "ifSpeed": null, - "ifSpeed_prev": 0, + "ifSpeed": 0, + "ifSpeed_prev": null, "ifConnectorPresent": "true", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "down", "ifOperStatus_prev": "down", "ifAdminStatus": "down", "ifAdminStatus_prev": null, - "ifDuplex": "halfDuplex", + "ifDuplex": "unknown", "ifMtu": 1500, "ifType": "ethernetCsmacd", - "ifAlias": "if_port38", - "ifPhysAddress": "085b0e9a5751", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57d5", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -21243,23 +23553,23 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port39", + "ifDescr": "redacted", "ifName": "port39", "portName": null, "ifIndex": 41, - "ifSpeed": null, - "ifSpeed_prev": 0, + "ifSpeed": 0, + "ifSpeed_prev": null, "ifConnectorPresent": "true", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "down", "ifOperStatus_prev": "down", "ifAdminStatus": "down", "ifAdminStatus_prev": null, - "ifDuplex": "halfDuplex", + "ifDuplex": "unknown", "ifMtu": 1500, "ifType": "ethernetCsmacd", - "ifAlias": "if_port39", - "ifPhysAddress": "085b0e9a5752", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57d6", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -21348,23 +23658,23 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_port40", + "ifDescr": "redacted", "ifName": "port40", "portName": null, "ifIndex": 42, - "ifSpeed": null, - "ifSpeed_prev": 0, + "ifSpeed": 0, + "ifSpeed_prev": null, "ifConnectorPresent": "true", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "down", "ifOperStatus_prev": "down", "ifAdminStatus": "down", "ifAdminStatus_prev": null, - "ifDuplex": "halfDuplex", + "ifDuplex": "unknown", "ifMtu": 1500, "ifType": "ethernetCsmacd", - "ifAlias": "if_port40", - "ifPhysAddress": "085b0e9a5753", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57d7", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -21453,7 +23763,7 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_mgmt2", + "ifDescr": "redacted", "ifName": "mgmt2", "portName": null, "ifIndex": 43, @@ -21468,8 +23778,8 @@ "ifDuplex": "fullDuplex", "ifMtu": 1500, "ifType": "ethernetCsmacd", - "ifAlias": "if_mgmt2", - "ifPhysAddress": "085b0e9a5755", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57d9", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -21490,11 +23800,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 103590945, + "ifInUcastPkts": 3052929, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 561954194, + "ifOutUcastPkts": 3094668, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -21506,11 +23816,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 17642844464, + "ifInOctets": 421861813, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 307894459682, + "ifOutOctets": 2804446283, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -21543,7 +23853,7 @@ "ifOutBroadcastPkts_prev": 0, "ifOutBroadcastPkts_delta": null, "ifOutBroadcastPkts_rate": null, - "ifInMulticastPkts": 15601790, + "ifInMulticastPkts": 1054238, "ifInMulticastPkts_prev": 0, "ifInMulticastPkts_delta": null, "ifInMulticastPkts_rate": null, @@ -21562,8 +23872,8 @@ "ifName": "ssl.root", "portName": null, "ifIndex": 44, - "ifSpeed": null, - "ifSpeed_prev": 0, + "ifSpeed": 0, + "ifSpeed_prev": null, "ifConnectorPresent": "false", "ifPromiscuousMode": "false", "ifOperStatus": "up", @@ -21573,7 +23883,7 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "tunnel", - "ifAlias": "sslvpn tunnel interface", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -21667,19 +23977,19 @@ "ifName": "npu0_vlink0", "portName": null, "ifIndex": 45, - "ifSpeed": null, - "ifSpeed_prev": 0, + "ifSpeed": 0, + "ifSpeed_prev": null, "ifConnectorPresent": "true", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", "ifAdminStatus_prev": null, "ifDuplex": "0", - "ifMtu": 1500, + "ifMtu": 15324, "ifType": "ethernetCsmacd", "ifAlias": "npu0_vlink0", - "ifPhysAddress": "025b0e9a572c", + "ifPhysAddress": "025b0e9a57b0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -21700,11 +24010,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 157601303279, + "ifInUcastPkts": 7, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 211719419038, + "ifOutUcastPkts": 5, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -21716,11 +24026,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 131240771478750, + "ifInOctets": 354, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 232384313169266, + "ifOutOctets": 120, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -21772,19 +24082,19 @@ "ifName": "npu0_vlink1", "portName": null, "ifIndex": 46, - "ifSpeed": null, - "ifSpeed_prev": 0, + "ifSpeed": 0, + "ifSpeed_prev": null, "ifConnectorPresent": "true", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", "ifAdminStatus_prev": null, "ifDuplex": "0", - "ifMtu": 1500, + "ifMtu": 15324, "ifType": "ethernetCsmacd", "ifAlias": "npu0_vlink1", - "ifPhysAddress": "025b0e9a572d", + "ifPhysAddress": "025b0e9a57b1", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -21805,11 +24115,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 211719419038, + "ifInUcastPkts": 5, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 157601303279, + "ifOutUcastPkts": 7, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -21821,11 +24131,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 232384313169266, + "ifInOctets": 120, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 131240771478750, + "ifOutOctets": 354, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -21877,19 +24187,19 @@ "ifName": "npu1_vlink0", "portName": null, "ifIndex": 47, - "ifSpeed": null, - "ifSpeed_prev": 0, + "ifSpeed": 0, + "ifSpeed_prev": null, "ifConnectorPresent": "true", - "ifPromiscuousMode": "true", - "ifOperStatus": "down", - "ifOperStatus_prev": "down", - "ifAdminStatus": "down", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", "ifAdminStatus_prev": null, "ifDuplex": "0", - "ifMtu": 1500, + "ifMtu": 15324, "ifType": "ethernetCsmacd", "ifAlias": "npu1_vlink0", - "ifPhysAddress": "025b0e9a5740", + "ifPhysAddress": "025b0e9a57c4", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -21982,19 +24292,19 @@ "ifName": "npu1_vlink1", "portName": null, "ifIndex": 48, - "ifSpeed": null, - "ifSpeed_prev": 0, + "ifSpeed": 0, + "ifSpeed_prev": null, "ifConnectorPresent": "true", - "ifPromiscuousMode": "true", - "ifOperStatus": "down", - "ifOperStatus_prev": "down", - "ifAdminStatus": "down", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", "ifAdminStatus_prev": null, "ifDuplex": "0", - "ifMtu": 1500, + "ifMtu": 15324, "ifType": "ethernetCsmacd", "ifAlias": "npu1_vlink1", - "ifPhysAddress": "025b0e9a5741", + "ifPhysAddress": "025b0e9a57c5", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -22083,14 +24393,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "SWITCH_DOWNLINK", - "ifName": "SWITCH_DOWNLINK", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 49, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -22098,8 +24408,8 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "ieee8023adLag", - "ifAlias": "SWITCH_DOWNLINK", - "ifPhysAddress": "00090f09001c", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -22120,11 +24430,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 3344002686584, + "ifInUcastPkts": 286517350, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 3340014172247, + "ifOutUcastPkts": 262521, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -22136,11 +24446,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 3050192617251993, + "ifInOctets": 43282113124, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 3048374256017229, + "ifOutOctets": 90914952, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -22188,14 +24498,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "W1903 034", - "ifName": "vl_580-htr-came", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 50, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -22203,8 +24513,8 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "l2vlan", - "ifAlias": "W1903 034", - "ifPhysAddress": "00090f09001c", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -22225,11 +24535,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 3482391494, + "ifInUcastPkts": 757, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 48449250, + "ifOutUcastPkts": 0, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -22241,11 +24551,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 4691850769325, + "ifInOctets": 48808, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 5728934173, + "ifOutOctets": 0, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -22293,14 +24603,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_0003_l3hdwroute", - "ifName": "if_l3hdwroute", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 51, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -22308,8 +24618,8 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "l2vlan", - "ifAlias": "if_0003_l3hdwroute", - "ifPhysAddress": "00090f09001c", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -22330,11 +24640,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 1277686503538, + "ifInUcastPkts": 125690, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 1806075458874, + "ifOutUcastPkts": 0, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -22346,11 +24656,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 912741210894006, + "ifInOctets": 8044180, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 1884087083484641, + "ifOutOctets": 0, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -22398,14 +24708,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_0004_l3pocroute", - "ifName": "if_l3pocroute", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 52, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -22413,8 +24723,8 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "l2vlan", - "ifAlias": "if_0004_l3pocroute", - "ifPhysAddress": "00090f09001c", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -22435,11 +24745,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 0, + "ifInUcastPkts": 1819, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 4323, + "ifOutUcastPkts": 0, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -22451,11 +24761,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 0, + "ifInOctets": 123560, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 204096, + "ifOutOctets": 0, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -22503,14 +24813,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_28_printers", - "ifName": "if_printers", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 53, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -22518,8 +24828,8 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "l2vlan", - "ifAlias": "if_28_printers", - "ifPhysAddress": "00090f09001c", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -22540,11 +24850,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 1385610857, + "ifInUcastPkts": 4026538, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 1618692522, + "ifOutUcastPkts": 0, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -22556,11 +24866,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 205010359887, + "ifInOctets": 322195134, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 887037436713, + "ifOutOctets": 0, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -22608,14 +24918,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_101_security", - "ifName": "if_security", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 54, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -22623,8 +24933,8 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "l2vlan", - "ifAlias": "if_101_security", - "ifPhysAddress": "00090f09001c", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -22645,11 +24955,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 1405983785, + "ifInUcastPkts": 29057196, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 708444586, + "ifOutUcastPkts": 0, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -22661,11 +24971,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 1358714485080, + "ifInOctets": 3313702624, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 88411889157, + "ifOutOctets": 0, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -22713,14 +25023,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_32_voip", - "ifName": "if_32_voip", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 55, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -22728,8 +25038,8 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "l2vlan", - "ifAlias": "if_32_voip", - "ifPhysAddress": "00090f09001c", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -22750,11 +25060,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 565496623, + "ifInUcastPkts": 66573, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 565337811, + "ifOutUcastPkts": 0, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -22766,11 +25076,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 98200312998, + "ifInOctets": 5311879, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 104526860619, + "ifOutOctets": 0, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -22822,8 +25132,8 @@ "ifName": "ssl.KA", "portName": null, "ifIndex": 56, - "ifSpeed": null, - "ifSpeed_prev": 0, + "ifSpeed": 0, + "ifSpeed_prev": null, "ifConnectorPresent": "false", "ifPromiscuousMode": "false", "ifOperStatus": "up", @@ -22833,7 +25143,7 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "tunnel", - "ifAlias": "SSL VPN interface", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -22923,328 +25233,13 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_106_dlserv", - "ifName": "if_dlserv", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 57, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", - "ifOperStatus": "up", - "ifOperStatus_prev": "up", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": "0", - "ifMtu": 1500, - "ifType": "l2vlan", - "ifAlias": "if_106_dlserv", - "ifPhysAddress": "00090f09001c", - "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": 37152, - "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": 1713960, - "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": "if_109_gast", - "ifName": "if_gast", - "portName": null, - "ifIndex": 58, - "ifSpeed": 20000000000, - "ifSpeed_prev": null, - "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", - "ifOperStatus": "up", - "ifOperStatus_prev": "up", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": "0", - "ifMtu": 1500, - "ifType": "l2vlan", - "ifAlias": "if_109_gast", - "ifPhysAddress": "00090f09001c", - "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": 3853885523, - "ifInUcastPkts_prev": 0, - "ifInUcastPkts_delta": null, - "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 6652411075, - "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": 1391888180203, - "ifInOctets_prev": 0, - "ifInOctets_delta": null, - "ifInOctets_rate": null, - "ifOutOctets": 7518261634956, - "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": "if_110_meet", - "ifName": "if_meet", - "portName": null, - "ifIndex": 59, - "ifSpeed": 20000000000, - "ifSpeed_prev": null, - "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", - "ifOperStatus": "up", - "ifOperStatus_prev": "up", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": "0", - "ifMtu": 1500, - "ifType": "l2vlan", - "ifAlias": "if_110_meet", - "ifPhysAddress": "00090f09001c", - "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": 9453077761, - "ifInUcastPkts_prev": 0, - "ifInUcastPkts_delta": null, - "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 5575209103, - "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": 13414316583330, - "ifInOctets_prev": 0, - "ifInOctets_delta": null, - "ifInOctets_rate": null, - "ifOutOctets": 1471221903960, - "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": "IPSEC_Motiv", - "ifName": "IPSEC_Motiv", - "portName": null, - "ifIndex": 60, - "ifSpeed": null, - "ifSpeed_prev": 0, - "ifConnectorPresent": "false", "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", @@ -23252,114 +25247,9 @@ "ifAdminStatus_prev": null, "ifDuplex": "0", "ifMtu": 1500, - "ifType": "tunnel", - "ifAlias": "IPSEC_Motiv", - "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": 644685546, - "ifInUcastPkts_prev": 0, - "ifInUcastPkts_delta": null, - "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 1119128811, - "ifOutUcastPkts_prev": 0, - "ifOutUcastPkts_delta": null, - "ifOutUcastPkts_rate": null, - "ifInErrors": 2131, - "ifInErrors_prev": 0, - "ifInErrors_delta": null, - "ifInErrors_rate": null, - "ifOutErrors": 595, - "ifOutErrors_prev": 0, - "ifOutErrors_delta": null, - "ifOutErrors_rate": null, - "ifInOctets": 156095488628, - "ifInOctets_prev": 0, - "ifInOctets_delta": null, - "ifInOctets_rate": null, - "ifOutOctets": 892981049318, - "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": "if_126_vpn_log", - "ifName": "if_126_vpn_log", - "portName": null, - "ifIndex": 61, - "ifSpeed": 20000000000, - "ifSpeed_prev": null, - "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", - "ifOperStatus": "up", - "ifOperStatus_prev": "up", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": "0", - "ifMtu": 1500, "ifType": "l2vlan", - "ifAlias": "if_126_vpn_log", - "ifPhysAddress": "00090f09001c", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -23380,11 +25270,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 0, + "ifInUcastPkts": 1487692, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 996, + "ifOutUcastPkts": 0, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -23396,2317 +25286,7 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 0, - "ifInOctets_prev": 0, - "ifInOctets_delta": null, - "ifInOctets_rate": null, - "ifOutOctets": 50784, - "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": "if_68_voip", - "ifName": "if_68_voip", - "portName": null, - "ifIndex": 62, - "ifSpeed": 20000000000, - "ifSpeed_prev": null, - "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", - "ifOperStatus": "up", - "ifOperStatus_prev": "up", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": "0", - "ifMtu": 1500, - "ifType": "l2vlan", - "ifAlias": "if_68_voip", - "ifPhysAddress": "00090f09001c", - "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": 580298861, - "ifInUcastPkts_prev": 0, - "ifInUcastPkts_delta": null, - "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 598971817, - "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": 84136276307, - "ifInOctets_prev": 0, - "ifInOctets_delta": null, - "ifInOctets_rate": null, - "ifOutOctets": 89807995688, - "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": "if_122_test", - "ifName": "if_test", - "portName": null, - "ifIndex": 63, - "ifSpeed": 20000000000, - "ifSpeed_prev": null, - "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", - "ifOperStatus": "up", - "ifOperStatus_prev": "up", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": "0", - "ifMtu": 1500, - "ifType": "l2vlan", - "ifAlias": "if_122_test", - "ifPhysAddress": "00090f09001c", - "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": 38694, - "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": 1784892, - "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": "W1903 034", - "ifName": "vl_540-camera-s", - "portName": null, - "ifIndex": 64, - "ifSpeed": 20000000000, - "ifSpeed_prev": null, - "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", - "ifOperStatus": "up", - "ifOperStatus_prev": "up", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": "0", - "ifMtu": 1500, - "ifType": "l2vlan", - "ifAlias": "W1903 034", - "ifPhysAddress": "00090f09001c", - "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": 19413129150, - "ifInUcastPkts_prev": 0, - "ifInUcastPkts_delta": null, - "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 18199554779, - "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": 19146779617536, - "ifInOctets_prev": 0, - "ifInOctets_delta": null, - "ifInOctets_rate": null, - "ifOutOctets": 23000323984989, - "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": "if_210_biman", - "ifName": "if_biman", - "portName": null, - "ifIndex": 65, - "ifSpeed": 20000000000, - "ifSpeed_prev": null, - "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", - "ifOperStatus": "up", - "ifOperStatus_prev": "up", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": "0", - "ifMtu": 1500, - "ifType": "l2vlan", - "ifAlias": "if_210_biman", - "ifPhysAddress": "00090f09001c", - "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": 1419974477, - "ifInUcastPkts_prev": 0, - "ifInUcastPkts_delta": null, - "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 1393192547, - "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": 172337016895, - "ifInOctets_prev": 0, - "ifInOctets_delta": null, - "ifInOctets_rate": null, - "ifOutOctets": 158762602270, - "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": "if_211_buman", - "ifName": "if_buman", - "portName": null, - "ifIndex": 66, - "ifSpeed": 20000000000, - "ifSpeed_prev": null, - "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", - "ifOperStatus": "up", - "ifOperStatus_prev": "up", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": "0", - "ifMtu": 1500, - "ifType": "l2vlan", - "ifAlias": "if_211_buman", - "ifPhysAddress": "00090f09001c", - "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": 321199416703, - "ifInUcastPkts_prev": 0, - "ifInUcastPkts_delta": null, - "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 57461849963, - "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": 484123392325983, - "ifInOctets_prev": 0, - "ifInOctets_delta": null, - "ifInOctets_rate": null, - "ifOutOctets": 3411628769170, - "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": "W1903 286", - "ifName": "vl_53_hdw-w10", - "portName": null, - "ifIndex": 67, - "ifSpeed": 20000000000, - "ifSpeed_prev": null, - "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", - "ifOperStatus": "up", - "ifOperStatus_prev": "up", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": "0", - "ifMtu": 1500, - "ifType": "l2vlan", - "ifAlias": "W1903 286", - "ifPhysAddress": "00090f09001c", - "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": 215657387, - "ifInUcastPkts_prev": 0, - "ifInUcastPkts_delta": null, - "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 535068392, - "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": 70590902862, - "ifInOctets_prev": 0, - "ifInOctets_delta": null, - "ifInOctets_rate": null, - "ifOutOctets": 776579518360, - "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": "if_301_dmz1", - "ifName": "if_dmz1", - "portName": null, - "ifIndex": 68, - "ifSpeed": 20000000000, - "ifSpeed_prev": null, - "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", - "ifOperStatus": "up", - "ifOperStatus_prev": "up", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": "0", - "ifMtu": 1500, - "ifType": "l2vlan", - "ifAlias": "if_301_dmz1", - "ifPhysAddress": "00090f09001c", - "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": 1129846225, - "ifInUcastPkts_prev": 0, - "ifInUcastPkts_delta": null, - "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 786601243, - "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": 1275989157894, - "ifInOctets_prev": 0, - "ifInOctets_delta": null, - "ifInOctets_rate": null, - "ifOutOctets": 387770326201, - "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": "if_302_dmz2", - "ifName": "if_dmz2", - "portName": null, - "ifIndex": 69, - "ifSpeed": 20000000000, - "ifSpeed_prev": null, - "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", - "ifOperStatus": "up", - "ifOperStatus_prev": "up", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": "0", - "ifMtu": 1500, - "ifType": "l2vlan", - "ifAlias": "if_302_dmz2", - "ifPhysAddress": "00090f09001c", - "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": 140255839927, - "ifInUcastPkts_prev": 0, - "ifInUcastPkts_delta": null, - "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 37732747020, - "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": 198321540378700, - "ifInOctets_prev": 0, - "ifInOctets_delta": null, - "ifInOctets_rate": null, - "ifOutOctets": 13992986837223, - "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": "if_303_dmz3", - "ifName": "if_dmz3", - "portName": null, - "ifIndex": 70, - "ifSpeed": 20000000000, - "ifSpeed_prev": null, - "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", - "ifOperStatus": "up", - "ifOperStatus_prev": "up", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": "0", - "ifMtu": 1500, - "ifType": "l2vlan", - "ifAlias": "if_303_dmz3", - "ifPhysAddress": "00090f09001c", - "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": 376396, - "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": 17319184, - "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": "if_60_avd", - "ifName": "if_60_avd", - "portName": null, - "ifIndex": 71, - "ifSpeed": 20000000000, - "ifSpeed_prev": null, - "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", - "ifOperStatus": "up", - "ifOperStatus_prev": "up", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": "0", - "ifMtu": 1500, - "ifType": "l2vlan", - "ifAlias": "if_60_avd", - "ifPhysAddress": "00090f09001c", - "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": 65396921, - "ifInUcastPkts_prev": 0, - "ifInUcastPkts_delta": null, - "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 26799105, - "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": 9443303961, - "ifInOctets_prev": 0, - "ifInOctets_delta": null, - "ifInOctets_rate": null, - "ifOutOctets": 15252555706, - "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": "IPSEC_Portiva", - "ifName": "IPSEC_Portiva", - "portName": null, - "ifIndex": 72, - "ifSpeed": null, - "ifSpeed_prev": 0, - "ifConnectorPresent": "false", - "ifPromiscuousMode": "false", - "ifOperStatus": "up", - "ifOperStatus_prev": "up", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": "0", - "ifMtu": 1500, - "ifType": "tunnel", - "ifAlias": "IPSEC_Portiva", - "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": 137671, - "ifInUcastPkts_prev": 0, - "ifInUcastPkts_delta": null, - "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 196742, - "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": 56665960, - "ifInOctets_prev": 0, - "ifInOctets_delta": null, - "ifInOctets_rate": null, - "ifOutOctets": 122478829, - "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": "vl_900-dc-trust", - "ifName": "vl_900-dc-trust", - "portName": null, - "ifIndex": 73, - "ifSpeed": 20000000000, - "ifSpeed_prev": null, - "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", - "ifOperStatus": "up", - "ifOperStatus_prev": "up", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": "0", - "ifMtu": 1500, - "ifType": "l2vlan", - "ifAlias": "vl_900-dc-trust", - "ifPhysAddress": "00090f09001c", - "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": 135389092, - "ifInUcastPkts_prev": 0, - "ifInUcastPkts_delta": null, - "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 112263952, - "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": 95633057463, - "ifInOctets_prev": 0, - "ifInOctets_delta": null, - "ifInOctets_rate": null, - "ifOutOctets": 47709890917, - "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": "if_307_dmzxtr", - "ifName": "if_dmzxtr", - "portName": null, - "ifIndex": 74, - "ifSpeed": 20000000000, - "ifSpeed_prev": null, - "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", - "ifOperStatus": "up", - "ifOperStatus_prev": "up", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": "0", - "ifMtu": 1500, - "ifType": "l2vlan", - "ifAlias": "if_307_dmzxtr", - "ifPhysAddress": "00090f09001c", - "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": 36986834097, - "ifInUcastPkts_prev": 0, - "ifInUcastPkts_delta": null, - "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 35238439835, - "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": 22255398661980, - "ifInOctets_prev": 0, - "ifInOctets_delta": null, - "ifInOctets_rate": null, - "ifOutOctets": 22197101211701, - "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": "if_311_gmol", - "ifName": "if_gmol", - "portName": null, - "ifIndex": 75, - "ifSpeed": 20000000000, - "ifSpeed_prev": null, - "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", - "ifOperStatus": "up", - "ifOperStatus_prev": "up", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": "0", - "ifMtu": 1500, - "ifType": "l2vlan", - "ifAlias": "if_311_gmol", - "ifPhysAddress": "00090f09001c", - "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": 237, - "ifInUcastPkts_prev": 0, - "ifInUcastPkts_delta": null, - "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 20253, - "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": 15816, - "ifInOctets_prev": 0, - "ifInOctets_delta": null, - "ifInOctets_rate": null, - "ifOutOctets": 980842, - "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": "if_319_mts_deltagoot", - "ifName": "if_ext319", - "portName": null, - "ifIndex": 76, - "ifSpeed": 20000000000, - "ifSpeed_prev": null, - "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", - "ifOperStatus": "up", - "ifOperStatus_prev": "up", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": "0", - "ifMtu": 1500, - "ifType": "l2vlan", - "ifAlias": "if_319_mts_deltagoot", - "ifPhysAddress": "00090f09001c", - "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": 45060, - "ifInUcastPkts_prev": 0, - "ifInUcastPkts_delta": null, - "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 47864, - "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": 12805673, - "ifInOctets_prev": 0, - "ifInOctets_delta": null, - "ifInOctets_rate": null, - "ifOutOctets": 2575701, - "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": "if_320_hdwdmzinfra", - "ifName": "if_hdwdmzinfra", - "portName": null, - "ifIndex": 77, - "ifSpeed": 20000000000, - "ifSpeed_prev": null, - "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", - "ifOperStatus": "up", - "ifOperStatus_prev": "up", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": "0", - "ifMtu": 1500, - "ifType": "l2vlan", - "ifAlias": "if_320_hdwdmzinfra", - "ifPhysAddress": "00090f09001c", - "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": 2770214345, - "ifInUcastPkts_prev": 0, - "ifInUcastPkts_delta": null, - "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 1709125453, - "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": 2673426660030, - "ifInOctets_prev": 0, - "ifInOctets_delta": null, - "ifInOctets_rate": null, - "ifOutOctets": 512975468277, - "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": "W1903 034", - "ifName": "vl_581-dcd-came", - "portName": null, - "ifIndex": 78, - "ifSpeed": 20000000000, - "ifSpeed_prev": null, - "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", - "ifOperStatus": "up", - "ifOperStatus_prev": "up", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": "0", - "ifMtu": 1500, - "ifType": "l2vlan", - "ifAlias": "W1903 034", - "ifPhysAddress": "00090f09001c", - "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": 12853618335, - "ifInUcastPkts_prev": 0, - "ifInUcastPkts_delta": null, - "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 6484152901, - "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": 18374688040215, - "ifInOctets_prev": 0, - "ifInOctets_delta": null, - "ifInOctets_rate": null, - "ifOutOctets": 376592683875, - "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": "if_322_videoconf", - "ifName": "if_hdwdmzhost2", - "portName": null, - "ifIndex": 79, - "ifSpeed": 20000000000, - "ifSpeed_prev": null, - "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", - "ifOperStatus": "up", - "ifOperStatus_prev": "up", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": "0", - "ifMtu": 1500, - "ifType": "l2vlan", - "ifAlias": "if_322_videoconf", - "ifPhysAddress": "00090f09001c", - "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": 55089357, - "ifInUcastPkts_prev": 0, - "ifInUcastPkts_delta": null, - "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 31622000, - "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": 46524943421, - "ifInOctets_prev": 0, - "ifInOctets_delta": null, - "ifInOctets_rate": null, - "ifOutOctets": 17812739132, - "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": "if_323_cst_nhi", - "ifName": "if_hdwdmzhost3", - "portName": null, - "ifIndex": 80, - "ifSpeed": 20000000000, - "ifSpeed_prev": null, - "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", - "ifOperStatus": "up", - "ifOperStatus_prev": "up", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": "0", - "ifMtu": 1500, - "ifType": "l2vlan", - "ifAlias": "if_323_cst_nhi", - "ifPhysAddress": "00090f09001c", - "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": 156741714838, - "ifInUcastPkts_prev": 0, - "ifInUcastPkts_delta": null, - "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 133685638335, - "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": 199932647771078, - "ifInOctets_prev": 0, - "ifInOctets_delta": null, - "ifInOctets_rate": null, - "ifOutOctets": 145302757334509, - "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": "if_324_cst_mipwa", - "ifName": "if_hdwdmzhost4", - "portName": null, - "ifIndex": 81, - "ifSpeed": 20000000000, - "ifSpeed_prev": null, - "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", - "ifOperStatus": "up", - "ifOperStatus_prev": "up", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": "0", - "ifMtu": 1500, - "ifType": "l2vlan", - "ifAlias": "if_324_cst_mipwa", - "ifPhysAddress": "00090f09001c", - "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": 55246628200, - "ifInUcastPkts_prev": 0, - "ifInUcastPkts_delta": null, - "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 10757924926, - "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": 82707810282754, - "ifInOctets_prev": 0, - "ifInOctets_delta": null, - "ifInOctets_rate": null, - "ifOutOctets": 1226346330682, - "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": "if_325_systemsuppport", - "ifName": "if_hdwdmzhost5", - "portName": null, - "ifIndex": 82, - "ifSpeed": 20000000000, - "ifSpeed_prev": null, - "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", - "ifOperStatus": "up", - "ifOperStatus_prev": "up", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": "0", - "ifMtu": 1500, - "ifType": "l2vlan", - "ifAlias": "if_325_systemsuppport", - "ifPhysAddress": "00090f09001c", - "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": 17840100, - "ifInUcastPkts_prev": 0, - "ifInUcastPkts_delta": null, - "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 16210415, - "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": 15915439034, - "ifInOctets_prev": 0, - "ifInOctets_delta": null, - "ifInOctets_rate": null, - "ifOutOctets": 8868003304, - "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": "IF_lo6-KA", - "ifName": "IF_lo6-KA", - "portName": null, - "ifIndex": 83, - "ifSpeed": null, - "ifSpeed_prev": 0, - "ifConnectorPresent": "false", - "ifPromiscuousMode": "false", - "ifOperStatus": "up", - "ifOperStatus_prev": "up", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": "0", - "ifMtu": 1500, - "ifType": "other", - "ifAlias": "IF_lo6-KA", - "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": "18446612147350523904", - "ifInUcastPkts_prev": 0, - "ifInUcastPkts_delta": null, - "ifInUcastPkts_rate": null, - "ifOutUcastPkts": "18446612147348428808", - "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": "18446612147344492552", + "ifInOctets": 110195747, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, @@ -25758,1588 +25338,13 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_327_cst_moria", - "ifName": "if_ext327", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, - "ifIndex": 84, + "ifIndex": 58, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", - "ifOperStatus": "up", - "ifOperStatus_prev": "up", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": "0", - "ifMtu": 1500, - "ifType": "l2vlan", - "ifAlias": "if_327_cst_moria", - "ifPhysAddress": "00090f09001c", - "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": 32297524697, - "ifInUcastPkts_prev": 0, - "ifInUcastPkts_delta": null, - "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 3568225504, - "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": 48389493701187, - "ifInOctets_prev": 0, - "ifInOctets_delta": null, - "ifInOctets_rate": null, - "ifOutOctets": 892875230322, - "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": "vLnk_root-ka0", - "ifName": "vLnk_root-ka0", - "portName": null, - "ifIndex": 85, - "ifSpeed": null, - "ifSpeed_prev": 0, - "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", - "ifOperStatus": "up", - "ifOperStatus_prev": "up", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": "0", - "ifMtu": 1500, - "ifType": "l2vlan", - "ifAlias": "vLnk_root-ka0", - "ifPhysAddress": "025b0e9a572c", - "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": 157151117112, - "ifInUcastPkts_prev": 0, - "ifInUcastPkts_delta": null, - "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 211273192106, - "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": 130984285537050, - "ifInOctets_prev": 0, - "ifInOctets_delta": null, - "ifInOctets_rate": null, - "ifOutOctets": 231971205782703, - "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": "vLnk_root-ka1", - "ifName": "vLnk_root-ka1", - "portName": null, - "ifIndex": 86, - "ifSpeed": null, - "ifSpeed_prev": 0, - "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", - "ifOperStatus": "up", - "ifOperStatus_prev": "up", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": "0", - "ifMtu": 1500, - "ifType": "l2vlan", - "ifAlias": "vLnk_root-ka1", - "ifPhysAddress": "025b0e9a572d", - "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": 211273192106, - "ifInUcastPkts_prev": 0, - "ifInUcastPkts_delta": null, - "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 157151117112, - "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": 231971205782703, - "ifInOctets_prev": 0, - "ifInOctets_delta": null, - "ifInOctets_rate": null, - "ifOutOctets": 130984285537050, - "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": "if_330_cst_ibrahym", - "ifName": "if_ext330", - "portName": null, - "ifIndex": 87, - "ifSpeed": 20000000000, - "ifSpeed_prev": null, - "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", - "ifOperStatus": "up", - "ifOperStatus_prev": "up", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": "0", - "ifMtu": 1500, - "ifType": "l2vlan", - "ifAlias": "if_330_cst_ibrahym", - "ifPhysAddress": "00090f09001c", - "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": 45162395788, - "ifInUcastPkts_prev": 0, - "ifInUcastPkts_delta": null, - "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 9040830956, - "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": 67523358901142, - "ifInOctets_prev": 0, - "ifInOctets_delta": null, - "ifInOctets_rate": null, - "ifOutOctets": 1180550868974, - "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": "IF_0333-OTA_DMZ", - "ifName": "IF_0333-OTA_DMZ", - "portName": null, - "ifIndex": 88, - "ifSpeed": 20000000000, - "ifSpeed_prev": null, - "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", - "ifOperStatus": "up", - "ifOperStatus_prev": "up", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": "0", - "ifMtu": 1500, - "ifType": "l2vlan", - "ifAlias": "IF_0333-OTA_DMZ", - "ifPhysAddress": "00090f09001c", - "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": 141410111, - "ifInUcastPkts_prev": 0, - "ifInUcastPkts_delta": null, - "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 390191601, - "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": 38037190928, - "ifInOctets_prev": 0, - "ifInOctets_delta": null, - "ifInOctets_rate": null, - "ifOutOctets": 445728334893, - "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": "if_334_hdwdmzpoc", - "ifName": "if_hdwpocdmz", - "portName": null, - "ifIndex": 89, - "ifSpeed": 20000000000, - "ifSpeed_prev": null, - "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", - "ifOperStatus": "up", - "ifOperStatus_prev": "up", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": "0", - "ifMtu": 1500, - "ifType": "l2vlan", - "ifAlias": "if_334_hdwdmzpoc", - "ifPhysAddress": "00090f09001c", - "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": 4452, - "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": 209760, - "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": "if_350_xtr-infra", - "ifName": "if_xtr_infra", - "portName": null, - "ifIndex": 90, - "ifSpeed": 20000000000, - "ifSpeed_prev": null, - "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", - "ifOperStatus": "up", - "ifOperStatus_prev": "up", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": "0", - "ifMtu": 1500, - "ifType": "l2vlan", - "ifAlias": "if_350_xtr-infra", - "ifPhysAddress": "00090f09001c", - "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": 745682106622, - "ifInUcastPkts_prev": 0, - "ifInUcastPkts_delta": null, - "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 654390746825, - "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": 598575661939114, - "ifInOctets_prev": 0, - "ifInOctets_delta": null, - "ifInOctets_rate": null, - "ifOutOctets": 437555428803152, - "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": "IF_0018-Server", - "ifName": "IF_0018-Server", - "portName": null, - "ifIndex": 91, - "ifSpeed": 20000000000, - "ifSpeed_prev": null, - "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", - "ifOperStatus": "up", - "ifOperStatus_prev": "up", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": "0", - "ifMtu": 1500, - "ifType": "l2vlan", - "ifAlias": "IF_0018-Server", - "ifPhysAddress": "00090f09001c", - "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": 95954419006, - "ifInUcastPkts_prev": 0, - "ifInUcastPkts_delta": null, - "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 86698753091, - "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": 36253768660636, - "ifInOctets_prev": 0, - "ifInOctets_delta": null, - "ifInOctets_rate": null, - "ifOutOctets": 16473308646508, - "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": "IF_0222_mgmt-ex", - "ifName": "IF_0222_mgmt-ex", - "portName": null, - "ifIndex": 92, - "ifSpeed": 20000000000, - "ifSpeed_prev": null, - "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", - "ifOperStatus": "up", - "ifOperStatus_prev": "up", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": "0", - "ifMtu": 1500, - "ifType": "l2vlan", - "ifAlias": "IF_0222_mgmt-ex", - "ifPhysAddress": "00090f09001c", - "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": 277, - "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": 17728, - "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": "IF_0017_Client", - "ifName": "IF_0017_Client", - "portName": null, - "ifIndex": 93, - "ifSpeed": 20000000000, - "ifSpeed_prev": null, - "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", - "ifOperStatus": "up", - "ifOperStatus_prev": "up", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": "0", - "ifMtu": 1500, - "ifType": "l2vlan", - "ifAlias": "IF_0017_Client", - "ifPhysAddress": "00090f09001c", - "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": 258290786, - "ifInUcastPkts_prev": 0, - "ifInUcastPkts_delta": null, - "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 334369709, - "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": 91371998602, - "ifInOctets_prev": 0, - "ifInOctets_delta": null, - "ifInOctets_rate": null, - "ifOutOctets": 353552052753, - "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": "if_108_gast", - "ifName": "if_108_gast", - "portName": null, - "ifIndex": 94, - "ifSpeed": 20000000000, - "ifSpeed_prev": null, - "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", - "ifOperStatus": "up", - "ifOperStatus_prev": "up", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": "0", - "ifMtu": 1500, - "ifType": "l2vlan", - "ifAlias": "if_108_gast", - "ifPhysAddress": "00090f09001c", - "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": 1783539180, - "ifInUcastPkts_prev": 0, - "ifInUcastPkts_delta": null, - "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 2803165852, - "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": 912606899161, - "ifInOctets_prev": 0, - "ifInOctets_delta": null, - "ifInOctets_rate": null, - "ifOutOctets": 3086217519932, - "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": "if_209_man_hpc", - "ifName": "if_209_man_hpc", - "portName": null, - "ifIndex": 95, - "ifSpeed": 20000000000, - "ifSpeed_prev": null, - "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", - "ifOperStatus": "up", - "ifOperStatus_prev": "up", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": "0", - "ifMtu": 1500, - "ifType": "l2vlan", - "ifAlias": "if_209_man_hpc", - "ifPhysAddress": "00090f09001c", - "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": 1413861984, - "ifInUcastPkts_prev": 0, - "ifInUcastPkts_delta": null, - "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 1231728981, - "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": 1004880641207, - "ifInOctets_prev": 0, - "ifInOctets_delta": null, - "ifInOctets_rate": null, - "ifOutOctets": 97007378015, - "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": "vl_313-vpn-trus", - "ifName": "vl_313-vpn-trus", - "portName": null, - "ifIndex": 96, - "ifSpeed": 20000000000, - "ifSpeed_prev": null, - "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", - "ifOperStatus": "up", - "ifOperStatus_prev": "up", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": "0", - "ifMtu": 1500, - "ifType": "l2vlan", - "ifAlias": "vl_313-vpn-trus", - "ifPhysAddress": "00090f09001c", - "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": 13106717546, - "ifInUcastPkts_prev": 0, - "ifInUcastPkts_delta": null, - "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 14381379029, - "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": 6589549830332, - "ifInOctets_prev": 0, - "ifInOctets_delta": null, - "ifInOctets_rate": null, - "ifOutOctets": 16715501783143, - "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": "if_5_idlab", - "ifName": "if_5_idlab", - "portName": null, - "ifIndex": 97, - "ifSpeed": 20000000000, - "ifSpeed_prev": null, - "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", - "ifOperStatus": "up", - "ifOperStatus_prev": "up", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": "0", - "ifMtu": 1500, - "ifType": "l2vlan", - "ifAlias": "if_5_idlab", - "ifPhysAddress": "00090f09001c", - "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": 69566796, - "ifInUcastPkts_prev": 0, - "ifInUcastPkts_delta": null, - "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 75617842, - "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": 11462466123, - "ifInOctets_prev": 0, - "ifInOctets_delta": null, - "ifInOctets_rate": null, - "ifOutOctets": 17525070543, - "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": "if_114_winxp", - "ifName": "if_114_winxp", - "portName": null, - "ifIndex": 98, - "ifSpeed": 20000000000, - "ifSpeed_prev": null, - "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", - "ifOperStatus": "up", - "ifOperStatus_prev": "up", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": "0", - "ifMtu": 1500, - "ifType": "l2vlan", - "ifAlias": "if_114_winxp", - "ifPhysAddress": "00090f09001c", - "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": 10899756, - "ifInUcastPkts_prev": 0, - "ifInUcastPkts_delta": null, - "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 1554001, - "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": 1067443580, - "ifInOctets_prev": 0, - "ifInOctets_delta": null, - "ifInOctets_rate": null, - "ifOutOctets": 125048602, - "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": "IPSEC_WSR", - "ifName": "IPSEC_WSR", - "portName": null, - "ifIndex": 99, - "ifSpeed": null, - "ifSpeed_prev": 0, - "ifConnectorPresent": "false", "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", @@ -27347,8 +25352,218 @@ "ifAdminStatus_prev": null, "ifDuplex": "0", "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 1665, + "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": 165982, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 59, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 12816088, + "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": 1862310887, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 60, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1438, "ifType": "tunnel", - "ifAlias": "IPSEC_WSR", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -27370,11 +25585,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 288433, + "ifInUcastPkts": 0, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 597610, + "ifOutUcastPkts": 0, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -27386,11 +25601,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 39687528, + "ifInOctets": 0, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 190250457, + "ifOutOctets": 0, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -27438,14 +25653,4109 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_102_keyproc", - "ifName": "if_102_keyproc", + "ifDescr": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 61, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 62, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 289979, + "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": 24472620, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 63, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 215440, + "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": 26005586, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 64, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 363291, + "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": 39318240, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 65, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 2297389, + "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": 224117010, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 66, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 189135, + "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": 35252015, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 67, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 772351, + "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": 81997043, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 68, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 3840439, + "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": 263309603, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 69, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 2324020, + "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": 158029940, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 70, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 4559, + "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": 291796, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 71, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 11422535, + "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": 1158976616, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 72, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 135576, + "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": 26395348, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 73, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 1088034, + "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": 149536523, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 74, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 325276, + "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": 33731141, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 75, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 218579, + "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": 15824501, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 76, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 200356, + "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": 17163602, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 77, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 391083, + "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": 42941533, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 78, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 4860, + "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": 1452080, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 79, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 616582, + "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": 180548223, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 80, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1438, + "ifType": "tunnel", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 81, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 238535, + "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": 23004252, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 82, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 75331, + "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": 9978575, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 83, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "other", + "ifAlias": "redacted", + "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": 304, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 84, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 107273, + "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": 12706701, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 85, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 15324, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "025b0e9a57b0", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 86, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 15324, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "025b0e9a57b1", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 87, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 206855, + "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": 17579956, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 88, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 5013834, + "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": 322577642, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 89, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 527, + "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": 33748, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 90, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 4314045, + "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": 731531990, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 91, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 18037567, + "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": 2009539731, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 92, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 5, + "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": 340, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 93, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 776554, + "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": 100411126, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 94, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 11434672, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 18, + "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": 2196793500, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 1044, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 95, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 2069105, + "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": 297502469, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 96, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 23187, + "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": 2651916, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 97, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 3561, + "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": 238226, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 98, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 197292, + "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": 16967022, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 99, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1438, + "ifType": "tunnel", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 100, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -27453,8 +29763,8 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "l2vlan", - "ifAlias": "if_102_keyproc", - "ifPhysAddress": "00090f09001c", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -27475,11 +29785,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 93431967, + "ifInUcastPkts": 1790347, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 95779361, + "ifOutUcastPkts": 0, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -27491,11 +29801,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 18964537770, + "ifInOctets": 899287786, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 18472421482, + "ifOutOctets": 0, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -27543,14 +29853,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "transport VLAN Deltagoot", - "ifName": "IF_0180_DTG", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 101, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -27558,8 +29868,8 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "l2vlan", - "ifAlias": "transport VLAN Deltagoot", - "ifPhysAddress": "00090f09001c", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -27580,11 +29890,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 252495220, + "ifInUcastPkts": 66601, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 552987782, + "ifOutUcastPkts": 0, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -27596,11 +29906,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 291799064063, + "ifInOctets": 19395600, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 666594630466, + "ifOutOctets": 0, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -27648,14 +29958,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_0335_AD-ext", - "ifName": "IF_0335_AD-ext", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 102, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -27663,8 +29973,8 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "l2vlan", - "ifAlias": "IF_0335_AD-ext", - "ifPhysAddress": "00090f09001c", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -27685,11 +29995,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 39256551, + "ifInUcastPkts": 73447, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 67094352, + "ifOutUcastPkts": 0, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -27701,11 +30011,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 29259234626, + "ifInOctets": 7453549, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 65314142090, + "ifOutOctets": 0, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -27753,14 +30063,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_0351_WCP-new", - "ifName": "IF_0351_WCP-new", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 103, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -27768,8 +30078,8 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "l2vlan", - "ifAlias": "IF_0351_WCP-new", - "ifPhysAddress": "00090f09001c", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -27790,11 +30100,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 144473569043, + "ifInUcastPkts": 7717984, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 134312137968, + "ifOutUcastPkts": 1, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -27806,11 +30116,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 125836313825911, + "ifInOctets": 794350904, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 113215751881496, + "ifOutOctets": 58, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -27858,23 +30168,128 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_0050_KA-DTL", - "ifName": "IF_0050_KA-DTL", + "ifDescr": "ssl.dc", + "ifName": "ssl.dc", "portName": null, "ifIndex": 104, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "tunnel", + "ifAlias": "redacted", + "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": 2, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 105, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", - "ifOperStatus": "up", - "ifOperStatus_prev": "up", + "ifPromiscuousMode": "false", + "ifOperStatus": "down", + "ifOperStatus_prev": "down", "ifAdminStatus": "up", "ifAdminStatus_prev": null, "ifDuplex": "0", - "ifMtu": 1500, - "ifType": "l2vlan", - "ifAlias": "IF_0050_KA-DTL", - "ifPhysAddress": "00090f09001c", + "ifMtu": 1438, + "ifType": "tunnel", + "ifAlias": "redacted", + "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -27895,11 +30310,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 10465530925, + "ifInUcastPkts": 0, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 11628914787, + "ifOutUcastPkts": 0, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -27911,11 +30326,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 10696251039543, + "ifInOctets": 0, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 11447232725346, + "ifOutOctets": 0, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -27963,10 +30378,10 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_p1_vpn_logger", - "ifName": "P1_VPN_LOGGER", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, - "ifIndex": 105, + "ifIndex": 106, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", @@ -27977,9 +30392,9 @@ "ifAdminStatus_prev": null, "ifDuplex": "0", "ifMtu": 1500, - "ifType": "tunnel", - "ifAlias": "if_p1_vpn_logger", - "ifPhysAddress": null, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -28068,117 +30483,12 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "if_304_maas", - "ifName": "if_304_maas", - "portName": null, - "ifIndex": 106, - "ifSpeed": 20000000000, - "ifSpeed_prev": null, - "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", - "ifOperStatus": "up", - "ifOperStatus_prev": "up", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": "0", - "ifMtu": 1500, - "ifType": "l2vlan", - "ifAlias": "if_304_maas", - "ifPhysAddress": "00090f09001c", - "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": 31326442, - "ifInUcastPkts_prev": 0, - "ifInUcastPkts_delta": null, - "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 32914378, - "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": 2624041305, - "ifInOctets_prev": 0, - "ifInOctets_delta": null, - "ifInOctets_rate": null, - "ifOutOctets": 7267397082, - "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": "IF_lo6", - "ifName": "IF_lo6", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 107, - "ifSpeed": null, - "ifSpeed_prev": 0, + "ifSpeed": 0, + "ifSpeed_prev": null, "ifConnectorPresent": "false", "ifPromiscuousMode": "false", "ifOperStatus": "up", @@ -28188,7 +30498,7 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "other", - "ifAlias": "IF_lo6", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -28210,11 +30520,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": "18446612147344490496", + "ifInUcastPkts": 0, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": "18446612147350525960", + "ifOutUcastPkts": 4, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -28226,11 +30536,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": "18446612147357702152", + "ifInOctets": 0, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 0, + "ifOutOctets": 304, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -28278,14 +30588,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "transport VLAN Geohal", - "ifName": "IF_0181_GHL", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 108, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -28293,8 +30603,8 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "l2vlan", - "ifAlias": "transport VLAN Geohal", - "ifPhysAddress": "00090f09001c", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -28315,11 +30625,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 1714985208, + "ifInUcastPkts": 67426, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 1898782269, + "ifOutUcastPkts": 0, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -28331,11 +30641,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 1379520744559, + "ifInOctets": 19451700, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 1966575661683, + "ifOutOctets": 0, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -28383,14 +30693,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_0016_Sandbox", - "ifName": "IF_0016_Sandbox", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 109, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -28398,8 +30708,8 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "l2vlan", - "ifAlias": "IF_0016_Sandbox", - "ifPhysAddress": "00090f09001c", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -28420,11 +30730,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 0, + "ifInUcastPkts": 4559, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 41262, + "ifOutUcastPkts": 0, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -28436,11 +30746,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 0, + "ifInOctets": 291796, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 1903020, + "ifOutOctets": 0, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -28488,14 +30798,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_0015_WIFI", - "ifName": "IF_0015_WIFI", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 110, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -28503,8 +30813,8 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "l2vlan", - "ifAlias": "IF_0015_WIFI", - "ifPhysAddress": "00090f09001c", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -28525,11 +30835,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 0, + "ifInUcastPkts": 4559, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 41262, + "ifOutUcastPkts": 0, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -28541,11 +30851,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 0, + "ifInOctets": 291796, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 1903020, + "ifOutOctets": 0, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -28593,14 +30903,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_0014_TABLET", - "ifName": "IF_0014_TABLET", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 111, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -28608,8 +30918,8 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "l2vlan", - "ifAlias": "IF_0014_TABLET", - "ifPhysAddress": "00090f09001c", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -28630,11 +30940,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 0, + "ifInUcastPkts": 4559, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 41262, + "ifOutUcastPkts": 0, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -28646,11 +30956,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 0, + "ifInOctets": 291796, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 1903020, + "ifOutOctets": 0, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -28698,14 +31008,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_0013_RESERVE", - "ifName": "IF_0013_RESERVE", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 112, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -28713,8 +31023,8 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "l2vlan", - "ifAlias": "IF_0013_RESERVE", - "ifPhysAddress": "00090f09001c", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -28735,11 +31045,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 0, + "ifInUcastPkts": 4559, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 41262, + "ifOutUcastPkts": 0, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -28751,11 +31061,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 0, + "ifInOctets": 291796, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 1903020, + "ifOutOctets": 0, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -28803,14 +31113,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_0600_p2p-mfw", - "ifName": "IF_0600_p2p-mfw", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 113, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -28818,8 +31128,8 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "l2vlan", - "ifAlias": "IF_0600_p2p-mfw", - "ifPhysAddress": "00090f09001c", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -28840,11 +31150,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 4310925900, + "ifInUcastPkts": 16534, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 4314514218, + "ifOutUcastPkts": 0, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -28856,11 +31166,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 1528940558861, + "ifInOctets": 3291643, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 783520718466, + "ifOutOctets": 0, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -28908,12 +31218,12 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_lo", - "ifName": "IF_lo", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 114, - "ifSpeed": null, - "ifSpeed_prev": 0, + "ifSpeed": 0, + "ifSpeed_prev": null, "ifConnectorPresent": "false", "ifPromiscuousMode": "false", "ifOperStatus": "up", @@ -28923,7 +31233,7 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "other", - "ifAlias": "IF_lo", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -28945,15 +31255,15 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": "18446612147347775488", + "ifInUcastPkts": 0, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": "18446744072100656464", + "ifOutUcastPkts": 2, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, - "ifInErrors": 15, + "ifInErrors": 0, "ifInErrors_prev": 0, "ifInErrors_delta": null, "ifInErrors_rate": null, @@ -28961,11 +31271,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": "18446612147348428808", + "ifInOctets": 0, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 0, + "ifOutOctets": 152, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -28978,7 +31288,7 @@ "ifOutNUcastPkts_prev": 0, "ifOutNUcastPkts_delta": null, "ifOutNUcastPkts_rate": null, - "ifInDiscards": 900, + "ifInDiscards": 0, "ifInDiscards_prev": 0, "ifInDiscards_delta": null, "ifInDiscards_rate": null, @@ -29013,14 +31323,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_MGMT_Motiv", - "ifName": "IF_MGMT_Motiv", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 115, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -29028,8 +31338,8 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "l2vlan", - "ifAlias": "IF_MGMT_Motiv", - "ifPhysAddress": "00090f09001c", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -29050,11 +31360,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 59983118, + "ifInUcastPkts": 55275, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 53595909, + "ifOutUcastPkts": 0, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -29066,11 +31376,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 22730533685, + "ifInOctets": 6855491, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 35689687710, + "ifOutOctets": 0, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -29118,14 +31428,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_221-SiemTcm", - "ifName": "IF_221-SiemTcm", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 116, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -29133,8 +31443,8 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "l2vlan", - "ifAlias": "IF_221-SiemTcm", - "ifPhysAddress": "00090f09001c", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -29155,11 +31465,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 5319741962, + "ifInUcastPkts": 14741529, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 5011275617, + "ifOutUcastPkts": 0, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -29171,11 +31481,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 1333318743624, + "ifInOctets": 1271263151, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 4268371580864, + "ifOutOctets": 0, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -29223,12 +31533,12 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_lo-KA", - "ifName": "IF_lo-KA", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 117, - "ifSpeed": null, - "ifSpeed_prev": 0, + "ifSpeed": 0, + "ifSpeed_prev": null, "ifConnectorPresent": "false", "ifPromiscuousMode": "false", "ifOperStatus": "up", @@ -29238,7 +31548,7 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "other", - "ifAlias": "IF_lo-KA", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -29260,15 +31570,15 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": "18446612147348426752", + "ifInUcastPkts": 0, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": "18446612147347777544", + "ifOutUcastPkts": 2, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, - "ifInErrors": 15, + "ifInErrors": 0, "ifInErrors_prev": 0, "ifInErrors_delta": null, "ifInErrors_rate": null, @@ -29276,11 +31586,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": "18446612147350525960", + "ifInOctets": 0, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 0, + "ifOutOctets": 152, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -29293,7 +31603,7 @@ "ifOutNUcastPkts_prev": 0, "ifOutNUcastPkts_delta": null, "ifOutNUcastPkts_rate": null, - "ifInDiscards": 900, + "ifInDiscards": 0, "ifInDiscards_prev": 0, "ifInDiscards_delta": null, "ifInDiscards_rate": null, @@ -29328,14 +31638,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_Vl117-OsDmz", - "ifName": "IF_Vl117-OsDmz", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 118, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -29343,8 +31653,8 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "l2vlan", - "ifAlias": "IF_Vl117-OsDmz", - "ifPhysAddress": "00090f09001c", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -29365,11 +31675,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 1370349849, + "ifInUcastPkts": 1490968, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 1397711726, + "ifOutUcastPkts": 0, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -29381,11 +31691,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 485315783496, + "ifInOctets": 158360524, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 716123027654, + "ifOutOctets": 0, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -29433,14 +31743,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_Vl115-NsxPoc", - "ifName": "IF_Vl115-NsxPoc", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 119, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -29448,8 +31758,8 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "l2vlan", - "ifAlias": "IF_Vl115-NsxPoc", - "ifPhysAddress": "00090f09001c", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -29470,11 +31780,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 1906359109, + "ifInUcastPkts": 4795, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 9472781472, + "ifOutUcastPkts": 0, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -29486,11 +31796,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 1717393233571, + "ifInOctets": 322254, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 12918746894956, + "ifOutOctets": 0, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -29538,14 +31848,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_0006-DmzDns", - "ifName": "IF_0006-DmzDns", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 120, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -29553,8 +31863,8 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "l2vlan", - "ifAlias": "IF_0006-DmzDns", - "ifPhysAddress": "00090f09001c", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -29575,11 +31885,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 1176244567, + "ifInUcastPkts": 47043, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 1161386928, + "ifOutUcastPkts": 0, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -29591,11 +31901,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 294974832919, + "ifInOctets": 4558380, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 194438542979, + "ifOutOctets": 0, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -29643,12 +31953,12 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IPSEC_Castel", - "ifName": "IPSEC_Castel", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 121, - "ifSpeed": null, - "ifSpeed_prev": 0, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, "ifConnectorPresent": "false", "ifPromiscuousMode": "false", "ifOperStatus": "up", @@ -29657,9 +31967,9 @@ "ifAdminStatus_prev": null, "ifDuplex": "0", "ifMtu": 1500, - "ifType": "tunnel", - "ifAlias": "IPSEC_Castel", - "ifPhysAddress": null, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -29680,27 +31990,27 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 263804096, + "ifInUcastPkts": 226, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 125487860, + "ifOutUcastPkts": 0, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, - "ifInErrors": 4071, + "ifInErrors": 0, "ifInErrors_prev": 0, "ifInErrors_delta": null, "ifInErrors_rate": null, - "ifOutErrors": 3241, + "ifOutErrors": 0, "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 343506402592, + "ifInOctets": 21263, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 77738142138, + "ifOutOctets": 0, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -29748,14 +32058,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_118-NsxPoc", - "ifName": "IF_118-NsxPoc", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 122, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -29763,8 +32073,8 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "l2vlan", - "ifAlias": "IF_118-NsxPoc", - "ifPhysAddress": "00090f09001c", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -29785,11 +32095,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 10, + "ifInUcastPkts": 17380196, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 1660321, + "ifOutUcastPkts": 2, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -29801,11 +32111,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 796, + "ifInOctets": 2724045937, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 130828624, + "ifOutOctets": 116, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -29853,12 +32163,12 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "ssl.OTA", - "ifName": "ssl.OTA", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 123, - "ifSpeed": null, - "ifSpeed_prev": 0, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, "ifConnectorPresent": "false", "ifPromiscuousMode": "false", "ifOperStatus": "up", @@ -29867,9 +32177,9 @@ "ifAdminStatus_prev": null, "ifDuplex": "0", "ifMtu": 1500, - "ifType": "tunnel", - "ifAlias": "SSL VPN interface", - "ifPhysAddress": null, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -29890,7 +32200,7 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 0, + "ifInUcastPkts": 37663826, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, @@ -29906,7 +32216,7 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 0, + "ifInOctets": 13590050252, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, @@ -29927,7 +32237,7 @@ "ifInDiscards_prev": 0, "ifInDiscards_delta": null, "ifInDiscards_rate": null, - "ifOutDiscards": 2, + "ifOutDiscards": 0, "ifOutDiscards_prev": 0, "ifOutDiscards_delta": null, "ifOutDiscards_rate": null, @@ -29958,14 +32268,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "vLnk_root-OTA0", - "ifName": "vLnk_root-OTA0", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 124, - "ifSpeed": null, - "ifSpeed_prev": 0, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -29973,8 +32283,8 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "l2vlan", - "ifAlias": "vLnk_root-OTA0", - "ifPhysAddress": "025b0e9a572c", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -29995,11 +32305,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 447463699, + "ifInUcastPkts": 197329, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 443923749, + "ifOutUcastPkts": 0, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -30011,11 +32321,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 253591955543, + "ifInOctets": 16969687, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 410778304843, + "ifOutOctets": 0, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -30063,14 +32373,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "transport VLAN Hydro Zuid", - "ifName": "IF_0182_HHZ", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 125, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -30078,8 +32388,8 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "l2vlan", - "ifAlias": "transport VLAN Hydro Zuid", - "ifPhysAddress": "00090f09001c", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -30100,11 +32410,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 13697651930, + "ifInUcastPkts": 67427, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 43739889064, + "ifOutUcastPkts": 0, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -30116,11 +32426,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 4896519408066, + "ifInOctets": 19451768, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 60216025783015, + "ifOutOctets": 0, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -30168,14 +32478,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "vl_37-wcf-clien", - "ifName": "vl_37-wcf-clien", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 126, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -30183,8 +32493,8 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "l2vlan", - "ifAlias": "vl_37-wcf-clien", - "ifPhysAddress": "00090f09001c", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -30205,11 +32515,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 4258378724, + "ifInUcastPkts": 46745330, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 7336384434, + "ifOutUcastPkts": 0, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -30221,11 +32531,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 794555710446, + "ifInOctets": 5227243097, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 10404782174694, + "ifOutOctets": 0, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -30273,14 +32583,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_0450_Azure1", - "ifName": "IF_0450_Azure1", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 127, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -30288,8 +32598,8 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "l2vlan", - "ifAlias": "IF_0450_Azure1", - "ifPhysAddress": "00090f09001c", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -30310,11 +32620,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 683712, + "ifInUcastPkts": 0, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 689027, + "ifOutUcastPkts": 0, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -30326,11 +32636,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 45180793, + "ifInOctets": 0, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 44028895, + "ifOutOctets": 0, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -30378,14 +32688,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_0451_Azure2", - "ifName": "IF_0451_Azure2", + "ifDescr": "A2203 196", + "ifName": "redacted", "portName": null, "ifIndex": 128, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -30393,8 +32703,8 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "l2vlan", - "ifAlias": "IF_0451_Azure2", - "ifPhysAddress": "00090f09001c", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -30415,11 +32725,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 683271, + "ifInUcastPkts": 1255, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 685624, + "ifOutUcastPkts": 0, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -30431,11 +32741,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 45143781, + "ifInOctets": 85102, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 43856909, + "ifOutOctets": 0, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -30483,14 +32793,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "transport VLAN Hydro Noord", - "ifName": "IF_0183_HHN", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 129, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -30498,8 +32808,8 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "l2vlan", - "ifAlias": "transport VLAN Hydro Noord", - "ifPhysAddress": "00090f09001c", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -30520,11 +32830,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 6814913244, + "ifInUcastPkts": 67404, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 8133551634, + "ifOutUcastPkts": 0, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -30536,11 +32846,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 6363979782058, + "ifInOctets": 19450204, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 9718135602234, + "ifOutOctets": 0, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -30588,14 +32898,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "transport VLAN Toren", - "ifName": "IF_0184_TRN", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 130, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -30603,8 +32913,8 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "l2vlan", - "ifAlias": "transport VLAN Toren", - "ifPhysAddress": "00090f09001c", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -30625,11 +32935,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 16622189662, + "ifInUcastPkts": 67067, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 20334320324, + "ifOutUcastPkts": 0, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -30641,11 +32951,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 18499982643571, + "ifInOctets": 19427288, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 20293631498658, + "ifOutOctets": 0, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -30693,14 +33003,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "transport VLAN Paviljoen", - "ifName": "IF_0185_PAV", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 131, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -30708,8 +33018,8 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "l2vlan", - "ifAlias": "transport VLAN Paviljoen", - "ifPhysAddress": "00090f09001c", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -30730,11 +33040,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 12588, + "ifInUcastPkts": 69068, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 2029401, + "ifOutUcastPkts": 0, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -30746,11 +33056,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 806700, + "ifInOctets": 19556804, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 346978360, + "ifOutOctets": 0, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -30798,14 +33108,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "transport VLAN Sigma", - "ifName": "IF_0186_SGM", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 132, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -30813,8 +33123,8 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "l2vlan", - "ifAlias": "transport VLAN Sigma", - "ifPhysAddress": "00090f09001c", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -30835,11 +33145,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 9576689416, + "ifInUcastPkts": 68993, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 12101962734, + "ifOutUcastPkts": 0, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -30851,11 +33161,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 8267216257599, + "ifInOctets": 19552398, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 12522251821317, + "ifOutOctets": 0, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -30903,14 +33213,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "transport VLAN Tetra", - "ifName": "IF_0187_TTR", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 133, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -30918,8 +33228,8 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "l2vlan", - "ifAlias": "transport VLAN Tetra", - "ifPhysAddress": "00090f09001c", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -30940,11 +33250,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 69446581440, + "ifInUcastPkts": 67433, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 93028253088, + "ifOutUcastPkts": 6, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -30956,11 +33266,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 61201613482915, + "ifInOctets": 19452264, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 106029511537448, + "ifOutOctets": 348, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -31008,14 +33318,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "transport VLAN Daltonlaan", - "ifName": "IF_0188_DTL", + "ifDescr": "transport VLAN Daltonlaan\n\\", + "ifName": "redacted", "portName": null, "ifIndex": 134, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -31023,8 +33333,8 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "l2vlan", - "ifAlias": "transport VLAN Daltonlaan", - "ifPhysAddress": "00090f09001c", + "ifAlias": "transport VLAN Daltonlaan\n\\", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -31045,11 +33355,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 8876363552, + "ifInUcastPkts": 69645, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 7770235338, + "ifOutUcastPkts": 0, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -31061,11 +33371,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 10851468177177, + "ifInOctets": 20590189, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 5877225535086, + "ifOutOctets": 0, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -31113,14 +33423,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "transport VLAN Werkplaatsen", - "ifName": "IF_0189_WPL", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 135, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -31128,8 +33438,8 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "l2vlan", - "ifAlias": "transport VLAN Werkplaatsen", - "ifPhysAddress": "00090f09001c", + "ifAlias": "tst", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -31150,11 +33460,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 197384918, + "ifInUcastPkts": 67557, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 268078308, + "ifOutUcastPkts": 0, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -31166,11 +33476,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 75582374376, + "ifInOctets": 19461334, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 292879033160, + "ifOutOctets": 0, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -31218,14 +33528,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_0223_mgmt-IT", - "ifName": "IF_0223_mgmt-IT", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 136, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -31233,8 +33543,8 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "l2vlan", - "ifAlias": "IF_0223_mgmt-IT", - "ifPhysAddress": "00090f09001c", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -31255,11 +33565,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 2308342445, + "ifInUcastPkts": 1344570, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 2738447458, + "ifOutUcastPkts": 0, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -31271,11 +33581,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 358415398790, + "ifInOctets": 216261275, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 1513967869810, + "ifOutOctets": 0, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -31323,223 +33633,13 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_0224_mgmt-KA", - "ifName": "IF_0224_mgmt-KA", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 137, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", - "ifOperStatus": "up", - "ifOperStatus_prev": "up", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": "0", - "ifMtu": 1500, - "ifType": "l2vlan", - "ifAlias": "IF_0224_mgmt-KA", - "ifPhysAddress": "00090f09001c", - "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": 46276387, - "ifInUcastPkts_prev": 0, - "ifInUcastPkts_delta": null, - "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 84712145, - "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": 19261949748, - "ifInOctets_prev": 0, - "ifInOctets_delta": null, - "ifInOctets_rate": null, - "ifOutOctets": 96236983175, - "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": "vLnk_root-OTA1", - "ifName": "vLnk_root-OTA1", - "portName": null, - "ifIndex": 138, - "ifSpeed": null, - "ifSpeed_prev": 0, - "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", - "ifOperStatus": "up", - "ifOperStatus_prev": "up", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": "0", - "ifMtu": 1500, - "ifType": "l2vlan", - "ifAlias": "vLnk_root-OTA1", - "ifPhysAddress": "025b0e9a572d", - "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": 443923749, - "ifInUcastPkts_prev": 0, - "ifInUcastPkts_delta": null, - "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 447463699, - "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": 410778304843, - "ifInOctets_prev": 0, - "ifInOctets_delta": null, - "ifInOctets_rate": null, - "ifOutOctets": 253591955543, - "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": "IF_lo-OTA", - "ifName": "IF_lo-OTA", - "portName": null, - "ifIndex": 139, - "ifSpeed": null, - "ifSpeed_prev": 0, - "ifConnectorPresent": "false", "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", @@ -31547,9 +33647,9 @@ "ifAdminStatus_prev": null, "ifDuplex": "0", "ifMtu": 1500, - "ifType": "other", - "ifAlias": "IF_lo-OTA", - "ifPhysAddress": null, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -31570,116 +33670,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": "18446612147357700096", + "ifInUcastPkts": 94546, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": "18446612147344492552", - "ifOutUcastPkts_prev": 0, - "ifOutUcastPkts_delta": null, - "ifOutUcastPkts_rate": null, - "ifInErrors": 15, - "ifInErrors_prev": 0, - "ifInErrors_delta": null, - "ifInErrors_rate": null, - "ifOutErrors": 0, - "ifOutErrors_prev": 0, - "ifOutErrors_delta": null, - "ifOutErrors_rate": null, - "ifInOctets": "18446612147538835464", - "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": 900, - "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": "IF_lo6-OTA", - "ifName": "IF_lo6-OTA", - "portName": null, - "ifIndex": 140, - "ifSpeed": null, - "ifSpeed_prev": 0, - "ifConnectorPresent": "false", - "ifPromiscuousMode": "false", - "ifOperStatus": "up", - "ifOperStatus_prev": "up", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": "0", - "ifMtu": 1500, - "ifType": "other", - "ifAlias": "IF_lo6-OTA", - "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": "18446612147538833408", - "ifInUcastPkts_prev": 0, - "ifInUcastPkts_delta": null, - "ifInUcastPkts_rate": null, - "ifOutUcastPkts": "18446612147357702152", + "ifOutUcastPkts": 0, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -31691,7 +33686,7 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": "18446744072100656464", + "ifInOctets": 6884504, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, @@ -31743,14 +33738,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_OTA-Internal", - "ifName": "IF_OTA-Internal", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 141, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -31758,8 +33753,8 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "l2vlan", - "ifAlias": "IF_OTA-Internal", - "ifPhysAddress": "00090f09001c", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -31780,11 +33775,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 0, + "ifInUcastPkts": 5, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 281, + "ifOutUcastPkts": 0, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -31796,11 +33791,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 0, + "ifInOctets": 340, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 17960, + "ifOutOctets": 0, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -31848,223 +33843,13 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_OTA-Trusted", - "ifName": "IF_OTA-Trusted", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 142, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", - "ifOperStatus": "up", - "ifOperStatus_prev": "up", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": "0", - "ifMtu": 1500, - "ifType": "l2vlan", - "ifAlias": "IF_OTA-Trusted", - "ifPhysAddress": "00090f09001c", - "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": 1434228, - "ifInUcastPkts_prev": 0, - "ifInUcastPkts_delta": null, - "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 281, - "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": 1221204866, - "ifInOctets_prev": 0, - "ifInOctets_delta": null, - "ifInOctets_rate": null, - "ifOutOctets": 17960, - "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": "IF_OTA-DMZ", - "ifName": "IF_OTA-DMZ", - "portName": null, - "ifIndex": 143, - "ifSpeed": 20000000000, - "ifSpeed_prev": null, - "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", - "ifOperStatus": "up", - "ifOperStatus_prev": "up", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": "0", - "ifMtu": 1500, - "ifType": "l2vlan", - "ifAlias": "IF_OTA-DMZ", - "ifPhysAddress": "00090f09001c", - "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": 281, - "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": 17960, - "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": "IPSEC_Cirrus_SA", - "ifName": "IPSEC_Cirrus_SA", - "portName": null, - "ifIndex": 144, - "ifSpeed": null, - "ifSpeed_prev": 0, - "ifConnectorPresent": "false", "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", @@ -32072,8 +33857,218 @@ "ifAdminStatus_prev": null, "ifDuplex": "0", "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 5, + "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": 340, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 143, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 5, + "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": 340, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 144, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1438, "ifType": "tunnel", - "ifAlias": "IPSEC_Cirrus_SA", + "ifAlias": "redacted", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -32095,112 +34090,7 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 60199952, - "ifInUcastPkts_prev": 0, - "ifInUcastPkts_delta": null, - "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 83784529, - "ifOutUcastPkts_prev": 0, - "ifOutUcastPkts_delta": null, - "ifOutUcastPkts_rate": null, - "ifInErrors": 6, - "ifInErrors_prev": 0, - "ifInErrors_delta": null, - "ifInErrors_rate": null, - "ifOutErrors": 1, - "ifOutErrors_prev": 0, - "ifOutErrors_delta": null, - "ifOutErrors_rate": null, - "ifInOctets": 15576173824, - "ifInOctets_prev": 0, - "ifInOctets_delta": null, - "ifInOctets_rate": null, - "ifOutOctets": 88975803507, - "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": "IF_0002_lb-dc", - "ifName": "IF_0002_lb-dc", - "portName": null, - "ifIndex": 145, - "ifSpeed": null, - "ifSpeed_prev": 0, - "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", - "ifOperStatus": "up", - "ifOperStatus_prev": "up", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": "0", - "ifMtu": 1500, - "ifType": "l2vlan", - "ifAlias": "IF_0002_lb-dc", - "ifPhysAddress": "025b0e9a572d", - "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": 124645, + "ifInUcastPkts": 0, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, @@ -32216,7 +34106,7 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 81927829, + "ifInOctets": 0, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, @@ -32268,14 +34158,119 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_old-mgmt", - "ifName": "IF_old-mgmt", + "ifDescr": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 145, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 15324, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "025b0e9a57c5", + "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": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 146, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -32283,8 +34278,8 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "l2vlan", - "ifAlias": "IF_old-mgmt", - "ifPhysAddress": "00090f09001c", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -32305,7 +34300,7 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 39735982, + "ifInUcastPkts": 608291, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, @@ -32321,7 +34316,7 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 2792356591, + "ifInOctets": 45046999, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, @@ -32373,14 +34368,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "transport VLAN DCD-B", - "ifName": "IF_0190_DCD", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 147, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -32388,8 +34383,8 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "l2vlan", - "ifAlias": "transport VLAN DCD-B", - "ifPhysAddress": "00090f09001c", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -32410,11 +34405,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 24392, + "ifInUcastPkts": 69038, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 2029388, + "ifOutUcastPkts": 0, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -32426,11 +34421,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 3423370, + "ifInOctets": 19554832, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 346975602, + "ifOutOctets": 0, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -32478,23 +34473,23 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "WIFI TRUSTED", - "ifName": "IF_0131_WIFI", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 148, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", - "ifOperStatus": "up", - "ifOperStatus_prev": "up", - "ifAdminStatus": "up", + "ifPromiscuousMode": "false", + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", "ifAdminStatus_prev": null, "ifDuplex": "0", "ifMtu": 1500, "ifType": "l2vlan", - "ifAlias": "WIFI TRUSTED", - "ifPhysAddress": "00090f09001c", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -32515,11 +34510,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 13, + "ifInUcastPkts": 0, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 1512793, + "ifOutUcastPkts": 0, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -32531,11 +34526,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 1066, + "ifInOctets": 0, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 124043848, + "ifOutOctets": 0, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -32583,14 +34578,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_0124_dmz-rdm", - "ifName": "IF_0124_dmz-rdm", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 149, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -32598,8 +34593,8 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "l2vlan", - "ifAlias": "IF_0124_dmz-rdm", - "ifPhysAddress": "00090f09001c", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -32620,11 +34615,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 1290313235, + "ifInUcastPkts": 77394, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 250259786, + "ifOutUcastPkts": 0, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -32636,11 +34631,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 1792052132085, + "ifInOctets": 9504662, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 75533509080, + "ifOutOctets": 0, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -32688,14 +34683,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "Was in eerste design een DMZ netwerk. Onmogelijk naam te wijzigen zonder onderbreking dus heet nog steeds DMZ", - "ifName": "IF_0125_dmz-ibr", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 150, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -32703,8 +34698,8 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "l2vlan", - "ifAlias": "Was in eerste design een DMZ netwerk. Onmogelijk naam te wijzigen zonder onderbreking dus heet nog steeds DMZ", - "ifPhysAddress": "00090f09001c", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -32725,11 +34720,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 36683416703, + "ifInUcastPkts": 8721, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 55518600346, + "ifOutUcastPkts": 0, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -32741,11 +34736,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 39796958835460, + "ifInOctets": 1412781, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 69244227030694, + "ifOutOctets": 0, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -32793,14 +34788,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "W1801-180", - "ifName": "IF_0007-DMZ-NTP", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 151, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -32808,8 +34803,8 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "l2vlan", - "ifAlias": "W1801-180", - "ifPhysAddress": "00090f09001c", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -32830,11 +34825,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 6504813, + "ifInUcastPkts": 264, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 6505371, + "ifOutUcastPkts": 0, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -32846,11 +34841,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 591005276, + "ifInOctets": 17024, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 578769972, + "ifOutOctets": 0, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -32898,23 +34893,23 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_0143_lb-ota", - "ifName": "IF_0143_lb-ota", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 152, - "ifSpeed": null, - "ifSpeed_prev": 0, + "ifSpeed": 0, + "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", "ifAdminStatus_prev": null, "ifDuplex": "0", - "ifMtu": 1500, + "ifMtu": 15324, "ifType": "l2vlan", - "ifAlias": "IF_0143_lb-ota", - "ifPhysAddress": "025b0e9a572d", + "ifAlias": "redacted", + "ifPhysAddress": "025b0e9a57c5", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -33003,14 +34998,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "IF_0008_WCF", - "ifName": "IF_0008_WCF", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 153, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -33018,8 +35013,8 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "l2vlan", - "ifAlias": "IF_0008_WCF", - "ifPhysAddress": "00090f09001c", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -33040,112 +35035,7 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 0, - "ifInUcastPkts_prev": 0, - "ifInUcastPkts_delta": null, - "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 295, - "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": 18556, - "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": "vl_9-ka-lb-vip", - "ifName": "vl_9-ka-lb-vip", - "portName": null, - "ifIndex": 154, - "ifSpeed": null, - "ifSpeed_prev": 0, - "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", - "ifOperStatus": "up", - "ifOperStatus_prev": "up", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": "0", - "ifMtu": 1500, - "ifType": "l2vlan", - "ifAlias": "vl_9-ka-lb-vip", - "ifPhysAddress": "025b0e9a572d", - "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": 192954, + "ifInUcastPkts": 197307, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, @@ -33161,7 +35051,7 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 231670653, + "ifInOctets": 16968312, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, @@ -33213,14 +35103,119 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "vl_312-vpn-dmz", - "ifName": "vl_312-vpn-dmz", + "ifDescr": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 154, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 15324, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "025b0e9a57b1", + "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": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 155, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -33228,8 +35223,8 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "l2vlan", - "ifAlias": "vl_312-vpn-dmz", - "ifPhysAddress": "00090f09001c", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -33250,11 +35245,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 15109075081, + "ifInUcastPkts": 3611, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 14868896911, + "ifOutUcastPkts": 0, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -33266,11 +35261,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 12224252193880, + "ifInOctets": 332068, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 5727015268301, + "ifOutOctets": 0, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -33318,14 +35313,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "vl_38-wcf-ota", - "ifName": "vl_38-wcf-ota", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 156, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -33333,8 +35328,8 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "l2vlan", - "ifAlias": "vl_38-wcf-ota", - "ifPhysAddress": "00090f09001c", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -33355,11 +35350,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 74346407, + "ifInUcastPkts": 1228040, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 72352396, + "ifOutUcastPkts": 0, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -33371,11 +35366,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 25259254273, + "ifInOctets": 114446516, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 40988180622, + "ifOutOctets": 0, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -33423,14 +35418,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "vl_12-dmz-laadp", - "ifName": "vl_12-dmz-laadp", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 157, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -33438,8 +35433,8 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "l2vlan", - "ifAlias": "vl_12-dmz-laadp", - "ifPhysAddress": "00090f09001c", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -33460,11 +35455,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 4456692, + "ifInUcastPkts": 566535, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 2259580, + "ifOutUcastPkts": 1, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -33476,11 +35471,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 725897973, + "ifInOctets": 102833539, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 286142628, + "ifOutOctets": 346, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -33528,14 +35523,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "A1902 310", - "ifName": "vl_1000-sddc-mg", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 158, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -33543,8 +35538,8 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "l2vlan", - "ifAlias": "A1902 310", - "ifPhysAddress": "00090f09001c", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -33565,11 +35560,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 19265017, + "ifInUcastPkts": 1933, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 28844130, + "ifOutUcastPkts": 0, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -33581,11 +35576,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 3817396935, + "ifInOctets": 130876, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 24171708565, + "ifOutOctets": 0, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -33633,119 +35628,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "vl_702-p2p-vrf", - "ifName": "vl_702-p2p-vrf", - "portName": null, - "ifIndex": 159, - "ifSpeed": 20000000000, - "ifSpeed_prev": null, - "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", - "ifOperStatus": "up", - "ifOperStatus_prev": "up", - "ifAdminStatus": "up", - "ifAdminStatus_prev": null, - "ifDuplex": "0", - "ifMtu": 1500, - "ifType": "l2vlan", - "ifAlias": "vl_702-p2p-vrf", - "ifPhysAddress": "00090f09001c", - "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": 494654, - "ifInUcastPkts_prev": 0, - "ifInUcastPkts_delta": null, - "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 686213, - "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": 43671958, - "ifInOctets_prev": 0, - "ifInOctets_delta": null, - "ifInOctets_rate": null, - "ifOutOctets": 56327414, - "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": "A1902 357", - "ifName": "vl_1004-sddc-wl", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 160, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -33753,8 +35643,8 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "l2vlan", - "ifAlias": "A1902 357", - "ifPhysAddress": "00090f09001c", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -33775,11 +35665,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 420303, + "ifInUcastPkts": 5, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 220171, + "ifOutUcastPkts": 0, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -33791,11 +35681,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 313906727, + "ifInOctets": 340, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 39754475, + "ifOutOctets": 0, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -33843,14 +35733,14 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "vl_1070-dc-inte", - "ifName": "vl_1070-dc-inte", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 161, "ifSpeed": 20000000000, "ifSpeed_prev": null, "ifConnectorPresent": "false", - "ifPromiscuousMode": "true", + "ifPromiscuousMode": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", "ifAdminStatus": "up", @@ -33858,8 +35748,8 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "l2vlan", - "ifAlias": "vl_1070-dc-inte", - "ifPhysAddress": "00090f09001c", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -33880,11 +35770,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 80159247, + "ifInUcastPkts": 1545, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 76818123, + "ifOutUcastPkts": 0, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -33896,11 +35786,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 41713599373, + "ifInOctets": 105872, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 15605681048, + "ifOutOctets": 0, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -33948,8 +35838,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "vl_800-dc-dmz-r", - "ifName": "vl_800-dc-dmz-r", + "ifDescr": "redacted", + "ifName": "redacted", "portName": null, "ifIndex": 162, "ifSpeed": 20000000000, @@ -33963,8 +35853,8 @@ "ifDuplex": "0", "ifMtu": 1500, "ifType": "l2vlan", - "ifAlias": "vl_800-dc-dmz-r", - "ifPhysAddress": "00090f09001c", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", "ifHardType": null, "ifLastChange": 0, "ifVlan": "", @@ -33985,11 +35875,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 82948672, + "ifInUcastPkts": 3616, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 88737657, + "ifOutUcastPkts": 0, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -34001,11 +35891,2741 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 85635832963, + "ifInOctets": 245716, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 86475288243, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 163, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 5, + "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": 340, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 164, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 719, + "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": 48644, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 165, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 50493, + "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": 6489095, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 166, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 5751, + "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": 904613, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 167, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 1978081, + "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": 207527829, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 168, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 7467, + "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": 1529754, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 169, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 753, + "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": 51204, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 170, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 406, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 19, + "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": 28650, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 1102, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 172, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 25468, + "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": 1755660, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 173, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 5, + "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": 340, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 174, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 900999, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 2, + "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": 92474073, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 116, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 175, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 1795, + "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": 122056, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 176, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1438, + "ifType": "tunnel", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 177, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 15324, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "025b0e9a57c4", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 178, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 15324, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "025b0e9a57c5", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 179, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "other", + "ifAlias": "redacted", + "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": 2, + "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": 152, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 180, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 4433, + "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": 4399566, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 181, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 38062, + "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": 5019964, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 182, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 201523, + "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": 17238955, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 183, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 197507, + "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": 16982609, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 184, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 3108215, + "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": 645408512, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 185, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 120981, + "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": 7799236, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 186, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 8141, + "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": 611417, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 187, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 15703462, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 1, + "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": 1602814980, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 58, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 188, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 11081065, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 1, + "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": 918359659, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 58, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 189, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "085b0e9a57c0", + "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": 28929, + "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": 2441931, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -34059,10 +38679,164 @@ "processor_oid": ".1.3.6.1.4.1.12356.101.4.1.3.0", "processor_index": "0", "processor_type": "fortigate-fixed", - "processor_usage": 14, + "processor_usage": 6, "processor_descr": "System Cpu Usage", "processor_precision": 1, "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.12356.101.4.4.2.1.2.1", + "processor_index": "1", + "processor_type": "fortigate-core", + "processor_usage": 49, + "processor_descr": "CPU Core 1", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.12356.101.4.4.2.1.2.2", + "processor_index": "2", + "processor_type": "fortigate-core", + "processor_usage": 0, + "processor_descr": "CPU Core 2", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.12356.101.4.4.2.1.2.3", + "processor_index": "3", + "processor_type": "fortigate-core", + "processor_usage": 1, + "processor_descr": "CPU Core 3", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.12356.101.4.4.2.1.2.4", + "processor_index": "4", + "processor_type": "fortigate-core", + "processor_usage": 0, + "processor_descr": "CPU Core 4", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.12356.101.4.4.2.1.2.5", + "processor_index": "5", + "processor_type": "fortigate-core", + "processor_usage": 3, + "processor_descr": "CPU Core 5", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.12356.101.4.4.2.1.2.6", + "processor_index": "6", + "processor_type": "fortigate-core", + "processor_usage": 0, + "processor_descr": "CPU Core 6", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.12356.101.4.4.2.1.2.7", + "processor_index": "7", + "processor_type": "fortigate-core", + "processor_usage": 0, + "processor_descr": "CPU Core 7", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.12356.101.4.4.2.1.2.8", + "processor_index": "8", + "processor_type": "fortigate-core", + "processor_usage": 0, + "processor_descr": "CPU Core 8", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.12356.101.4.4.2.1.2.9", + "processor_index": "9", + "processor_type": "fortigate-core", + "processor_usage": 3, + "processor_descr": "CPU Core 9", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.12356.101.4.4.2.1.2.10", + "processor_index": "10", + "processor_type": "fortigate-core", + "processor_usage": 0, + "processor_descr": "CPU Core 10", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.12356.101.4.4.2.1.2.11", + "processor_index": "11", + "processor_type": "fortigate-core", + "processor_usage": 1, + "processor_descr": "CPU Core 11", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.12356.101.4.4.2.1.2.12", + "processor_index": "12", + "processor_type": "fortigate-core", + "processor_usage": 0, + "processor_descr": "CPU Core 12", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.12356.101.4.4.2.1.2.13", + "processor_index": "13", + "processor_type": "fortigate-core", + "processor_usage": 0, + "processor_descr": "CPU Core 13", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.12356.101.4.4.2.1.2.14", + "processor_index": "14", + "processor_type": "fortigate-core", + "processor_usage": 0, + "processor_descr": "CPU Core 14", + "processor_precision": 1, + "processor_perc_warn": 75 } ] }, @@ -34078,13 +38852,13 @@ "mempool_class": "system", "mempool_precision": 1024, "mempool_descr": "Main Memory", - "mempool_perc": 51, + "mempool_perc": 32, "mempool_perc_oid": ".1.3.6.1.4.1.12356.101.4.1.4.0", - "mempool_used": 8590626570, + "mempool_used": 5389942784, "mempool_used_oid": null, - "mempool_free": 8253739254, + "mempool_free": 11453628416, "mempool_free_oid": null, - "mempool_total": 16844365824, + "mempool_total": 16843571200, "mempool_total_oid": null, "mempool_largestfree": null, "mempool_lowestfree": null, @@ -34098,6 +38872,198 @@ "sensors": { "discovery": { "sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.13.2.1.1.1", + "sensor_index": "fgHaStatsIndex", + "sensor_type": "clusterState", + "sensor_descr": "Cluster State", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 26190, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": 2, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.3.1.6.1", + "sensor_index": "fgVpnSslStatsActiveTunnels.1", + "sensor_type": "fortigate", + "sensor_descr": "SSL VPN Active tunnels", + "group": "VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 11, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.3.1.6.3", + "sensor_index": "fgVpnSslStatsActiveTunnels.3", + "sensor_type": "fortigate", + "sensor_descr": "SSL VPN Active tunnels", + "group": "VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.3.1.6.4", + "sensor_index": "fgVpnSslStatsActiveTunnels.4", + "sensor_type": "fortigate", + "sensor_descr": "SSL VPN Active tunnels", + "group": "VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.3.1.2.1", + "sensor_index": "fgVpnSslStatsLoginUsers.1", + "sensor_type": "fortigate", + "sensor_descr": "SSL VPN Logged users", + "group": "VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 16, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.3.1.2.3", + "sensor_index": "fgVpnSslStatsLoginUsers.3", + "sensor_type": "fortigate", + "sensor_descr": "SSL VPN Logged users", + "group": "VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.3.1.2.4", + "sensor_index": "fgVpnSslStatsLoginUsers.4", + "sensor_type": "fortigate", + "sensor_descr": "SSL VPN Logged users", + "group": "VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.1.1.0", + "sensor_index": "fgVpnTunnelUpCount.0", + "sensor_type": "fortigate", + "sensor_descr": "IPSEC VPN tunnels", + "group": "VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 35, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, { "sensor_deleted": 0, "sensor_class": "count", @@ -34109,7 +39075,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 116764, + "sensor_current": 26190, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -34133,7 +39099,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 504, + "sensor_current": 203, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -34157,7 +39123,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 838, + "sensor_current": 218, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -34181,7 +39147,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 567, + "sensor_current": 214, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -34205,7 +39171,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 881, + "sensor_current": 212, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -35513,6 +40479,1974 @@ "sensor_prev": null, "user_func": null, "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.3.1.1.1", + "sensor_index": "fgVpnSslState.1", + "sensor_type": "fgVpnSslState", + "sensor_descr": "SSL-VPN Status", + "group": "SSL VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnSslState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.3.1.1.3", + "sensor_index": "fgVpnSslState.3", + "sensor_type": "fgVpnSslState", + "sensor_descr": "SSL-VPN Status", + "group": "SSL VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnSslState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.3.1.1.4", + "sensor_index": "fgVpnSslState.4", + "sensor_type": "fgVpnSslState", + "sensor_descr": "SSL-VPN Status", + "group": "SSL VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnSslState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.1", + "sensor_index": "fgVpnTunEntIndex.1", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.10", + "sensor_index": "fgVpnTunEntIndex.10", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.11", + "sensor_index": "fgVpnTunEntIndex.11", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.12", + "sensor_index": "fgVpnTunEntIndex.12", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.13", + "sensor_index": "fgVpnTunEntIndex.13", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.14", + "sensor_index": "fgVpnTunEntIndex.14", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.15", + "sensor_index": "fgVpnTunEntIndex.15", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.16", + "sensor_index": "fgVpnTunEntIndex.16", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.17", + "sensor_index": "fgVpnTunEntIndex.17", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.18", + "sensor_index": "fgVpnTunEntIndex.18", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.19", + "sensor_index": "fgVpnTunEntIndex.19", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.2", + "sensor_index": "fgVpnTunEntIndex.2", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.2.1", + "sensor_index": "fgVpnTunEntIndex.2.1", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\P2_Motiv (185.52.106.16)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.20", + "sensor_index": "fgVpnTunEntIndex.20", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.21", + "sensor_index": "fgVpnTunEntIndex.21", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.22", + "sensor_index": "fgVpnTunEntIndex.22", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.23", + "sensor_index": "fgVpnTunEntIndex.23", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.24", + "sensor_index": "fgVpnTunEntIndex.24", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.25", + "sensor_index": "fgVpnTunEntIndex.25", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.26", + "sensor_index": "fgVpnTunEntIndex.26", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.27", + "sensor_index": "fgVpnTunEntIndex.27", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.28", + "sensor_index": "fgVpnTunEntIndex.28", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.29", + "sensor_index": "fgVpnTunEntIndex.29", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.3", + "sensor_index": "fgVpnTunEntIndex.3", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.3.1", + "sensor_index": "fgVpnTunEntIndex.3.1", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\IPSEC_Cirrus_SA (217.67.246.172)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.30", + "sensor_index": "fgVpnTunEntIndex.30", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.31", + "sensor_index": "fgVpnTunEntIndex.31", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.32", + "sensor_index": "fgVpnTunEntIndex.32", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.33", + "sensor_index": "fgVpnTunEntIndex.33", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.34", + "sensor_index": "fgVpnTunEntIndex.34", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.35", + "sensor_index": "fgVpnTunEntIndex.35", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.36", + "sensor_index": "fgVpnTunEntIndex.36", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.37", + "sensor_index": "fgVpnTunEntIndex.37", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.38", + "sensor_index": "fgVpnTunEntIndex.38", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.39", + "sensor_index": "fgVpnTunEntIndex.39", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.4", + "sensor_index": "fgVpnTunEntIndex.4", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.4.1", + "sensor_index": "fgVpnTunEntIndex.4.1", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\IPSEC_WSR_NET1 (91.245.240.253)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.4.2", + "sensor_index": "fgVpnTunEntIndex.4.2", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\IPSEC_WSR_NET2 (91.245.240.253)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.40", + "sensor_index": "fgVpnTunEntIndex.40", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.41", + "sensor_index": "fgVpnTunEntIndex.41", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.42", + "sensor_index": "fgVpnTunEntIndex.42", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.43", + "sensor_index": "fgVpnTunEntIndex.43", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.44", + "sensor_index": "fgVpnTunEntIndex.44", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.45", + "sensor_index": "fgVpnTunEntIndex.45", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.46", + "sensor_index": "fgVpnTunEntIndex.46", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.47", + "sensor_index": "fgVpnTunEntIndex.47", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.48", + "sensor_index": "fgVpnTunEntIndex.48", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.49", + "sensor_index": "fgVpnTunEntIndex.49", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.5", + "sensor_index": "fgVpnTunEntIndex.5", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.5.1", + "sensor_index": "fgVpnTunEntIndex.5.1", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\P2_VMZ (194.171.108.86)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.50", + "sensor_index": "fgVpnTunEntIndex.50", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.51", + "sensor_index": "fgVpnTunEntIndex.51", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.52", + "sensor_index": "fgVpnTunEntIndex.52", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.53", + "sensor_index": "fgVpnTunEntIndex.53", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.54", + "sensor_index": "fgVpnTunEntIndex.54", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.55", + "sensor_index": "fgVpnTunEntIndex.55", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.56", + "sensor_index": "fgVpnTunEntIndex.56", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.57", + "sensor_index": "fgVpnTunEntIndex.57", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.58", + "sensor_index": "fgVpnTunEntIndex.58", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.59", + "sensor_index": "fgVpnTunEntIndex.59", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.6", + "sensor_index": "fgVpnTunEntIndex.6", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.60", + "sensor_index": "fgVpnTunEntIndex.60", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.61", + "sensor_index": "fgVpnTunEntIndex.61", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.62", + "sensor_index": "fgVpnTunEntIndex.62", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.63", + "sensor_index": "fgVpnTunEntIndex.63", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.64", + "sensor_index": "fgVpnTunEntIndex.64", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.65", + "sensor_index": "fgVpnTunEntIndex.65", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.66", + "sensor_index": "fgVpnTunEntIndex.66", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.67", + "sensor_index": "fgVpnTunEntIndex.67", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.68", + "sensor_index": "fgVpnTunEntIndex.68", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.69", + "sensor_index": "fgVpnTunEntIndex.69", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.7", + "sensor_index": "fgVpnTunEntIndex.7", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.70", + "sensor_index": "fgVpnTunEntIndex.70", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.71", + "sensor_index": "fgVpnTunEntIndex.71", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.72", + "sensor_index": "fgVpnTunEntIndex.72", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.8", + "sensor_index": "fgVpnTunEntIndex.8", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.9", + "sensor_index": "fgVpnTunEntIndex.9", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.13.2.1.1.12.1", + "sensor_index": "fgHaStatsSyncStatus.1", + "sensor_type": "haSyncStatus 1", + "sensor_descr": "HA sync status redacted", + "group": "HA", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "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": null + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.13.2.1.1.12.2", + "sensor_index": "fgHaStatsSyncStatus.2", + "sensor_type": "haSyncStatus 2", + "sensor_descr": "HA sync status redacted", + "group": "HA", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null } ], "state_indexes": [ @@ -35529,6 +42463,3706 @@ "state_draw_graph": 1, "state_value": 1, "state_generic_value": 2 + }, + { + "state_name": "fgVpnSslState", + "state_descr": "Disabled", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 3 + }, + { + "state_name": "fgVpnSslState", + "state_descr": "Enabled", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "fgVpnTunEntStatus", + "state_descr": "Down", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 2 + }, + { + "state_name": "fgVpnTunEntStatus", + "state_descr": "Up", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 0 + } + ] + }, + "poller": { + "sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.13.2.1.1.1", + "sensor_index": "fgHaStatsIndex", + "sensor_type": "clusterState", + "sensor_descr": "Cluster 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": 2, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": 26190, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.3.1.6.1", + "sensor_index": "fgVpnSslStatsActiveTunnels.1", + "sensor_type": "fortigate", + "sensor_descr": "SSL VPN Active tunnels", + "group": "VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 11, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.3.1.6.3", + "sensor_index": "fgVpnSslStatsActiveTunnels.3", + "sensor_type": "fortigate", + "sensor_descr": "SSL VPN Active tunnels", + "group": "VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.3.1.6.4", + "sensor_index": "fgVpnSslStatsActiveTunnels.4", + "sensor_type": "fortigate", + "sensor_descr": "SSL VPN Active tunnels", + "group": "VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.3.1.2.1", + "sensor_index": "fgVpnSslStatsLoginUsers.1", + "sensor_type": "fortigate", + "sensor_descr": "SSL VPN Logged users", + "group": "VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 16, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.3.1.2.3", + "sensor_index": "fgVpnSslStatsLoginUsers.3", + "sensor_type": "fortigate", + "sensor_descr": "SSL VPN Logged users", + "group": "VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.3.1.2.4", + "sensor_index": "fgVpnSslStatsLoginUsers.4", + "sensor_type": "fortigate", + "sensor_descr": "SSL VPN Logged users", + "group": "VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.1.1.0", + "sensor_index": "fgVpnTunnelUpCount.0", + "sensor_type": "fortigate", + "sensor_descr": "IPSEC VPN tunnels", + "group": "VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 35, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.1.8.0", + "sensor_index": "fgSysSesCount.0", + "sensor_type": "sessions", + "sensor_descr": "Session count", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 26190, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.1.11.0", + "sensor_index": "fgSysSesRate1.0", + "sensor_type": "sessions", + "sensor_descr": "Sessions/sec 1m avg", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 203, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.1.12.0", + "sensor_index": "fgSysSesRate10.0", + "sensor_type": "sessions", + "sensor_descr": "Sessions/sec 10m avg", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 218, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.1.13.0", + "sensor_index": "fgSysSesRate30.0", + "sensor_type": "sessions", + "sensor_descr": "Sessions/sec 30m avg", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 214, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.1.14.0", + "sensor_index": "fgSysSesRate60.0", + "sensor_type": "sessions", + "sensor_descr": "Sessions/sec 60m avg", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 212, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "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.12356.101.4.3.2.1.4.1", + "sensor_index": "fgHwSensorEntIndex.1", + "sensor_type": "fgHwSensors", + "sensor_descr": "+3.3V", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.10", + "sensor_index": "fgHwSensorEntIndex.10", + "sensor_type": "fgHwSensors", + "sensor_descr": "NCT VDQ1", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.11", + "sensor_index": "fgHwSensorEntIndex.11", + "sensor_type": "fgHwSensors", + "sensor_descr": "DDR3 VTT1", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.12", + "sensor_index": "fgHwSensorEntIndex.12", + "sensor_type": "fgHwSensors", + "sensor_descr": "NCT VDQ2", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.13", + "sensor_index": "fgHwSensorEntIndex.13", + "sensor_type": "fgHwSensors", + "sensor_descr": "DDR3 VTT2", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.14", + "sensor_index": "fgHwSensorEntIndex.14", + "sensor_type": "fgHwSensors", + "sensor_descr": "MAC_AVS_1V", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.15", + "sensor_index": "fgHwSensorEntIndex.15", + "sensor_type": "fgHwSensors", + "sensor_descr": "NCT7904D 3VDD", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.16", + "sensor_index": "fgHwSensorEntIndex.16", + "sensor_type": "fgHwSensors", + "sensor_descr": "NCT7904D 3VSB", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.17", + "sensor_index": "fgHwSensorEntIndex.17", + "sensor_type": "fgHwSensors", + "sensor_descr": "NCT7904D VTT", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.18", + "sensor_index": "fgHwSensorEntIndex.18", + "sensor_type": "fgHwSensors", + "sensor_descr": "DTS CPU", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.19", + "sensor_index": "fgHwSensorEntIndex.19", + "sensor_type": "fgHwSensors", + "sensor_descr": "CPU Core 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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.2", + "sensor_index": "fgHwSensorEntIndex.2", + "sensor_type": "fgHwSensors", + "sensor_descr": "+5V", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.20", + "sensor_index": "fgHwSensorEntIndex.20", + "sensor_type": "fgHwSensors", + "sensor_descr": "CPU Core 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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.21", + "sensor_index": "fgHwSensorEntIndex.21", + "sensor_type": "fgHwSensors", + "sensor_descr": "CPU Core 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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.22", + "sensor_index": "fgHwSensorEntIndex.22", + "sensor_type": "fgHwSensors", + "sensor_descr": "CPU Core 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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.23", + "sensor_index": "fgHwSensorEntIndex.23", + "sensor_type": "fgHwSensors", + "sensor_descr": "CPU Core 4", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.24", + "sensor_index": "fgHwSensorEntIndex.24", + "sensor_type": "fgHwSensors", + "sensor_descr": "CPU Core 5", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.25", + "sensor_index": "fgHwSensorEntIndex.25", + "sensor_type": "fgHwSensors", + "sensor_descr": "TD1", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.26", + "sensor_index": "fgHwSensorEntIndex.26", + "sensor_type": "fgHwSensors", + "sensor_descr": "TD2", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.27", + "sensor_index": "fgHwSensorEntIndex.27", + "sensor_type": "fgHwSensors", + "sensor_descr": "TD3", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.28", + "sensor_index": "fgHwSensorEntIndex.28", + "sensor_type": "fgHwSensors", + "sensor_descr": "TD4", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.29", + "sensor_index": "fgHwSensorEntIndex.29", + "sensor_type": "fgHwSensors", + "sensor_descr": "TS1", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.3", + "sensor_index": "fgHwSensorEntIndex.3", + "sensor_type": "fgHwSensors", + "sensor_descr": "+12V", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.30", + "sensor_index": "fgHwSensorEntIndex.30", + "sensor_type": "fgHwSensors", + "sensor_descr": "TS2", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.31", + "sensor_index": "fgHwSensorEntIndex.31", + "sensor_type": "fgHwSensors", + "sensor_descr": "TS3", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.32", + "sensor_index": "fgHwSensorEntIndex.32", + "sensor_type": "fgHwSensors", + "sensor_descr": "TS4", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.33", + "sensor_index": "fgHwSensorEntIndex.33", + "sensor_type": "fgHwSensors", + "sensor_descr": "TS5", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.34", + "sensor_index": "fgHwSensorEntIndex.34", + "sensor_type": "fgHwSensors", + "sensor_descr": "TS6", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.35", + "sensor_index": "fgHwSensorEntIndex.35", + "sensor_type": "fgHwSensors", + "sensor_descr": "Fan 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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.36", + "sensor_index": "fgHwSensorEntIndex.36", + "sensor_type": "fgHwSensors", + "sensor_descr": "Fan 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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.37", + "sensor_index": "fgHwSensorEntIndex.37", + "sensor_type": "fgHwSensors", + "sensor_descr": "Fan 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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.38", + "sensor_index": "fgHwSensorEntIndex.38", + "sensor_type": "fgHwSensors", + "sensor_descr": "Fan 4", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.39", + "sensor_index": "fgHwSensorEntIndex.39", + "sensor_type": "fgHwSensors", + "sensor_descr": "Fan 5", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.4", + "sensor_index": "fgHwSensorEntIndex.4", + "sensor_type": "fgHwSensors", + "sensor_descr": "CPU Vcore", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.40", + "sensor_index": "fgHwSensorEntIndex.40", + "sensor_type": "fgHwSensors", + "sensor_descr": "Fan 6", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.41", + "sensor_index": "fgHwSensorEntIndex.41", + "sensor_type": "fgHwSensors", + "sensor_descr": "PS1 Temp", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.42", + "sensor_index": "fgHwSensorEntIndex.42", + "sensor_type": "fgHwSensors", + "sensor_descr": "PS1 Fan 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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.43", + "sensor_index": "fgHwSensorEntIndex.43", + "sensor_type": "fgHwSensors", + "sensor_descr": "PS1 VIN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.44", + "sensor_index": "fgHwSensorEntIndex.44", + "sensor_type": "fgHwSensors", + "sensor_descr": "PS1 VOUT_12V", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.45", + "sensor_index": "fgHwSensorEntIndex.45", + "sensor_type": "fgHwSensors", + "sensor_descr": "PS1 Status", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.46", + "sensor_index": "fgHwSensorEntIndex.46", + "sensor_type": "fgHwSensors", + "sensor_descr": "PS2 Temp", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.47", + "sensor_index": "fgHwSensorEntIndex.47", + "sensor_type": "fgHwSensors", + "sensor_descr": "PS2 Fan 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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.48", + "sensor_index": "fgHwSensorEntIndex.48", + "sensor_type": "fgHwSensors", + "sensor_descr": "PS2 VIN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.49", + "sensor_index": "fgHwSensorEntIndex.49", + "sensor_type": "fgHwSensors", + "sensor_descr": "PS2 VOUT_12V", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.5", + "sensor_index": "fgHwSensorEntIndex.5", + "sensor_type": "fgHwSensors", + "sensor_descr": "CPU VTT", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.50", + "sensor_index": "fgHwSensorEntIndex.50", + "sensor_type": "fgHwSensors", + "sensor_descr": "PS2 Status", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.51", + "sensor_index": "fgHwSensorEntIndex.51", + "sensor_type": "fgHwSensors", + "sensor_descr": "INA219 PS1 Vsht", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.52", + "sensor_index": "fgHwSensorEntIndex.52", + "sensor_type": "fgHwSensors", + "sensor_descr": "INA219 PS1 Vbus", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.53", + "sensor_index": "fgHwSensorEntIndex.53", + "sensor_type": "fgHwSensors", + "sensor_descr": "INA219 PS2 Vsht", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.54", + "sensor_index": "fgHwSensorEntIndex.54", + "sensor_type": "fgHwSensors", + "sensor_descr": "INA219 PS2 Vbus", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.6", + "sensor_index": "fgHwSensorEntIndex.6", + "sensor_type": "fgHwSensors", + "sensor_descr": "CPU VSA", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.7", + "sensor_index": "fgHwSensorEntIndex.7", + "sensor_type": "fgHwSensors", + "sensor_descr": "DDR3 VDQ1", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.8", + "sensor_index": "fgHwSensorEntIndex.8", + "sensor_type": "fgHwSensors", + "sensor_descr": "DDR3 VDQ2", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.9", + "sensor_index": "fgHwSensorEntIndex.9", + "sensor_type": "fgHwSensors", + "sensor_descr": "NCT Vcore", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.3.1.1.1", + "sensor_index": "fgVpnSslState.1", + "sensor_type": "fgVpnSslState", + "sensor_descr": "SSL-VPN Status", + "group": "SSL VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnSslState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.3.1.1.3", + "sensor_index": "fgVpnSslState.3", + "sensor_type": "fgVpnSslState", + "sensor_descr": "SSL-VPN Status", + "group": "SSL VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnSslState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.3.1.1.4", + "sensor_index": "fgVpnSslState.4", + "sensor_type": "fgVpnSslState", + "sensor_descr": "SSL-VPN Status", + "group": "SSL VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnSslState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.1", + "sensor_index": "fgVpnTunEntIndex.1", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.10", + "sensor_index": "fgVpnTunEntIndex.10", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.11", + "sensor_index": "fgVpnTunEntIndex.11", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.12", + "sensor_index": "fgVpnTunEntIndex.12", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.13", + "sensor_index": "fgVpnTunEntIndex.13", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.14", + "sensor_index": "fgVpnTunEntIndex.14", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.15", + "sensor_index": "fgVpnTunEntIndex.15", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.16", + "sensor_index": "fgVpnTunEntIndex.16", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.17", + "sensor_index": "fgVpnTunEntIndex.17", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.18", + "sensor_index": "fgVpnTunEntIndex.18", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.19", + "sensor_index": "fgVpnTunEntIndex.19", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.2", + "sensor_index": "fgVpnTunEntIndex.2", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.2.1", + "sensor_index": "fgVpnTunEntIndex.2.1", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\P2_Motiv (185.52.106.16)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.20", + "sensor_index": "fgVpnTunEntIndex.20", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.21", + "sensor_index": "fgVpnTunEntIndex.21", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.22", + "sensor_index": "fgVpnTunEntIndex.22", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.23", + "sensor_index": "fgVpnTunEntIndex.23", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.24", + "sensor_index": "fgVpnTunEntIndex.24", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.25", + "sensor_index": "fgVpnTunEntIndex.25", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.26", + "sensor_index": "fgVpnTunEntIndex.26", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.27", + "sensor_index": "fgVpnTunEntIndex.27", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.28", + "sensor_index": "fgVpnTunEntIndex.28", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.29", + "sensor_index": "fgVpnTunEntIndex.29", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.3", + "sensor_index": "fgVpnTunEntIndex.3", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.3.1", + "sensor_index": "fgVpnTunEntIndex.3.1", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\IPSEC_Cirrus_SA (217.67.246.172)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.30", + "sensor_index": "fgVpnTunEntIndex.30", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.31", + "sensor_index": "fgVpnTunEntIndex.31", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.32", + "sensor_index": "fgVpnTunEntIndex.32", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.33", + "sensor_index": "fgVpnTunEntIndex.33", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.34", + "sensor_index": "fgVpnTunEntIndex.34", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.35", + "sensor_index": "fgVpnTunEntIndex.35", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.36", + "sensor_index": "fgVpnTunEntIndex.36", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.37", + "sensor_index": "fgVpnTunEntIndex.37", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.38", + "sensor_index": "fgVpnTunEntIndex.38", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.39", + "sensor_index": "fgVpnTunEntIndex.39", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.4", + "sensor_index": "fgVpnTunEntIndex.4", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.4.1", + "sensor_index": "fgVpnTunEntIndex.4.1", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\IPSEC_WSR_NET1 (91.245.240.253)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.4.2", + "sensor_index": "fgVpnTunEntIndex.4.2", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\IPSEC_WSR_NET2 (91.245.240.253)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.40", + "sensor_index": "fgVpnTunEntIndex.40", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.41", + "sensor_index": "fgVpnTunEntIndex.41", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.42", + "sensor_index": "fgVpnTunEntIndex.42", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.43", + "sensor_index": "fgVpnTunEntIndex.43", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.44", + "sensor_index": "fgVpnTunEntIndex.44", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.45", + "sensor_index": "fgVpnTunEntIndex.45", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.46", + "sensor_index": "fgVpnTunEntIndex.46", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.47", + "sensor_index": "fgVpnTunEntIndex.47", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.48", + "sensor_index": "fgVpnTunEntIndex.48", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.49", + "sensor_index": "fgVpnTunEntIndex.49", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.5", + "sensor_index": "fgVpnTunEntIndex.5", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.5.1", + "sensor_index": "fgVpnTunEntIndex.5.1", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\P2_VMZ (194.171.108.86)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.50", + "sensor_index": "fgVpnTunEntIndex.50", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.51", + "sensor_index": "fgVpnTunEntIndex.51", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.52", + "sensor_index": "fgVpnTunEntIndex.52", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.53", + "sensor_index": "fgVpnTunEntIndex.53", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.54", + "sensor_index": "fgVpnTunEntIndex.54", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.55", + "sensor_index": "fgVpnTunEntIndex.55", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.56", + "sensor_index": "fgVpnTunEntIndex.56", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.57", + "sensor_index": "fgVpnTunEntIndex.57", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.58", + "sensor_index": "fgVpnTunEntIndex.58", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.59", + "sensor_index": "fgVpnTunEntIndex.59", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.6", + "sensor_index": "fgVpnTunEntIndex.6", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.60", + "sensor_index": "fgVpnTunEntIndex.60", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.61", + "sensor_index": "fgVpnTunEntIndex.61", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.62", + "sensor_index": "fgVpnTunEntIndex.62", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.63", + "sensor_index": "fgVpnTunEntIndex.63", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.64", + "sensor_index": "fgVpnTunEntIndex.64", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.65", + "sensor_index": "fgVpnTunEntIndex.65", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.66", + "sensor_index": "fgVpnTunEntIndex.66", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.67", + "sensor_index": "fgVpnTunEntIndex.67", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.68", + "sensor_index": "fgVpnTunEntIndex.68", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.69", + "sensor_index": "fgVpnTunEntIndex.69", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.7", + "sensor_index": "fgVpnTunEntIndex.7", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.70", + "sensor_index": "fgVpnTunEntIndex.70", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.71", + "sensor_index": "fgVpnTunEntIndex.71", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.72", + "sensor_index": "fgVpnTunEntIndex.72", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.8", + "sensor_index": "fgVpnTunEntIndex.8", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.9", + "sensor_index": "fgVpnTunEntIndex.9", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (1.1.1.1)", + "group": "IPSEC VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.13.2.1.1.12.1", + "sensor_index": "fgHaStatsSyncStatus.1", + "sensor_type": "haSyncStatus 1", + "sensor_descr": "HA sync status redacted", + "group": "HA", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "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": null + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.13.2.1.1.12.2", + "sensor_index": "fgHaStatsSyncStatus.2", + "sensor_type": "haSyncStatus 2", + "sensor_descr": "HA sync status redacted", + "group": "HA", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + } + ], + "state_indexes": [ + { + "state_name": "fgHwSensors", + "state_descr": "OK", + "state_draw_graph": 1, + "state_value": 0, + "state_generic_value": 0 + }, + { + "state_name": "fgHwSensors", + "state_descr": "ERROR", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 2 + }, + { + "state_name": "fgVpnSslState", + "state_descr": "Disabled", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 3 + }, + { + "state_name": "fgVpnSslState", + "state_descr": "Enabled", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "fgVpnTunEntStatus", + "state_descr": "Down", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 2 + }, + { + "state_name": "fgVpnTunEntStatus", + "state_descr": "Up", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 0 + } + ] + } + }, + "wireless": { + "discovery": { + "wireless_sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "ap-count", + "sensor_index": "1", + "sensor_type": "fortigate", + "sensor_descr": "Connected APs", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 0, + "sensor_prev": null, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_oids": "[\".1.3.6.1.4.1.12356.101.14.2.5.0\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "clients", + "sensor_index": "1", + "sensor_type": "fortigate", + "sensor_descr": "Clients: Total", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 0, + "sensor_prev": null, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_oids": "[\".1.3.6.1.4.1.12356.101.14.2.7.0\"]" } ] }, diff --git a/tests/data/fortigate_cluster-60f.json b/tests/data/fortigate_cluster-60f.json new file mode 100644 index 0000000000..8f788784e1 --- /dev/null +++ b/tests/data/fortigate_cluster-60f.json @@ -0,0 +1,6637 @@ +{ + "os": { + "discovery": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.12356.101.1.644", + "sysDescr": "FGT60D4614037969", + "sysContact": "", + "version": "v6.4.9,build1966,220421 (GA)", + "hardware": "FGT_60F", + "features": null, + "os": "fortigate", + "type": "firewall", + "serial": "FGT60FTK20056924", + "icon": "fortinet.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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 1, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 2, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 3, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 4, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 5, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "tunnel", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 6, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "bridge", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 7, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 8, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 9, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 10, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 11, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 12, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 13, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 14, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 15, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 16, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 17, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 18, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 19, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 20, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 21, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 22, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "tunnel", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 23, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "tunnel", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 24, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 25, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 26, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 1, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "redacted", + "ifPhysAddress": "e023ff69038e", + "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": 1049608, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 745613, + "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": 111960195, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 403672656, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 2, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "true", + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "halfDuplex", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "redacted", + "ifPhysAddress": "e023ff69038c", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 3, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "true", + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "halfDuplex", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "redacted", + "ifPhysAddress": "e023ff69038d", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 4, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 5, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "tunnel", + "ifAlias": "redacted", + "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": 2, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 6, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "true", + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "bridge", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 7, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "true", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "00090f090003", + "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": 13432796, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 11557369, + "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": 2847011361, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 3117034340, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 8, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "true", + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "halfDuplex", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "redacted", + "ifPhysAddress": "e023ff690391", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 9, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "true", + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "halfDuplex", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "redacted", + "ifPhysAddress": "e023ff690392", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 10, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "true", + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "halfDuplex", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "redacted", + "ifPhysAddress": "e023ff690393", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 11, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "true", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "redacted", + "ifPhysAddress": "e023ff690394", + "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": 8792840, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 11977744, + "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": 3054124365, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 7719711564, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 12, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "true", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "redacted", + "ifPhysAddress": "e023ff690395", + "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": 478634, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 478706, + "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": 193846770, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 196269457, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 13, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "true", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "00090f090003", + "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": 154739074, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 47795748, + "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": 102651917542, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 8531045505, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 14, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "true", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "00090f090003", + "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": 16, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 1538, + "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": 1024, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 71108, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 15, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "true", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "00090f090003", + "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": 68842736, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 65385611, + "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": 25796623137, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 13139156742, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 16, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "true", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "redacted", + "ifPhysAddress": "e023ff69038f", + "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": 588858504, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 688743728, + "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": 227931036498, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 302971565878, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 17, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "true", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "00090f090003", + "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": 126599823, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 231479043, + "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": 28775193521, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 124946360372, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 18, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "true", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "00090f090003", + "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": 31998578, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 21629217, + "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": 30224432212, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 6480318031, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 19, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "true", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "00090f090003", + "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": 190281130, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 310837736, + "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": 37418082003, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 146749595622, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 20, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "true", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "00090f090003", + "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": 6381, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 98, + "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": 852782, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 4868, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 21, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "true", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "redacted", + "ifPhysAddress": "00090f090003", + "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": 2533958, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 30848, + "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": 186816386, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 2118370, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 22, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1438, + "ifType": "tunnel", + "ifAlias": "redacted", + "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": 33, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 26, + "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": 6308, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 4281, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 23, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1438, + "ifType": "tunnel", + "ifAlias": "redacted", + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 24, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "other", + "ifAlias": "redacted", + "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": 22, + "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": 1352, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 25, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "0", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "redacted", + "ifPhysAddress": "0c5b8f279a64", + "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": 992199, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 1149981, + "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": 167564017, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 165691402, + "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": "redacted", + "ifName": "redacted", + "portName": null, + "ifIndex": 26, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "true", + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "halfDuplex", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "redacted", + "ifPhysAddress": "e023ff690390", + "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": 0, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.12356.101.4.1.3.0", + "processor_index": "0", + "processor_type": "fortigate-fixed", + "processor_usage": 4, + "processor_descr": "System Cpu Usage", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.12356.101.4.4.2.1.2.1", + "processor_index": "1", + "processor_type": "fortigate-core", + "processor_usage": 2, + "processor_descr": "CPU Core 1", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.12356.101.4.4.2.1.2.2", + "processor_index": "2", + "processor_type": "fortigate-core", + "processor_usage": 2, + "processor_descr": "CPU Core 2", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.12356.101.4.4.2.1.2.3", + "processor_index": "3", + "processor_type": "fortigate-core", + "processor_usage": 5, + "processor_descr": "CPU Core 3", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.12356.101.4.4.2.1.2.4", + "processor_index": "4", + "processor_type": "fortigate-core", + "processor_usage": 4, + "processor_descr": "CPU Core 4", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.12356.101.4.4.2.1.2.5", + "processor_index": "5", + "processor_type": "fortigate-core", + "processor_usage": 0, + "processor_descr": "CPU Core 5", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.12356.101.4.4.2.1.2.6", + "processor_index": "6", + "processor_type": "fortigate-core", + "processor_usage": 0, + "processor_descr": "CPU Core 6", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.12356.101.4.4.2.1.2.7", + "processor_index": "7", + "processor_type": "fortigate-core", + "processor_usage": 0, + "processor_descr": "CPU Core 7", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.12356.101.4.4.2.1.2.8", + "processor_index": "8", + "processor_type": "fortigate-core", + "processor_usage": 0, + "processor_descr": "CPU Core 8", + "processor_precision": 1, + "processor_perc_warn": 75 + } + ] + }, + "poller": "matches discovery" + }, + "mempools": { + "discovery": { + "mempools": [ + { + "mempool_index": "0", + "entPhysicalIndex": null, + "mempool_type": "fortigate", + "mempool_class": "system", + "mempool_precision": 1024, + "mempool_descr": "Main Memory", + "mempool_perc": 39, + "mempool_perc_oid": ".1.3.6.1.4.1.12356.101.4.1.4.0", + "mempool_used": 784670515, + "mempool_used_oid": null, + "mempool_free": 1227305165, + "mempool_free_oid": null, + "mempool_total": 2011975680, + "mempool_total_oid": null, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + } + ] + }, + "poller": "matches discovery" + }, + "sensors": { + "discovery": { + "sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.13.2.1.1.1", + "sensor_index": "fgHaStatsIndex", + "sensor_type": "clusterState", + "sensor_descr": "Cluster State", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 21489, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": 2, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.3.1.6.1", + "sensor_index": "fgVpnSslStatsActiveTunnels.1", + "sensor_type": "fortigate", + "sensor_descr": "SSL VPN Active tunnels", + "group": "VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.3.1.2.1", + "sensor_index": "fgVpnSslStatsLoginUsers.1", + "sensor_type": "fortigate", + "sensor_descr": "SSL VPN Logged users", + "group": "VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.1.1.0", + "sensor_index": "fgVpnTunnelUpCount.0", + "sensor_type": "fortigate", + "sensor_descr": "IPSEC VPN tunnels", + "group": "VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.1.8.0", + "sensor_index": "fgSysSesCount.0", + "sensor_type": "sessions", + "sensor_descr": "Session count", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 21489, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.1.11.0", + "sensor_index": "fgSysSesRate1.0", + "sensor_type": "sessions", + "sensor_descr": "Sessions/sec 1m avg", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 221, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.1.12.0", + "sensor_index": "fgSysSesRate10.0", + "sensor_type": "sessions", + "sensor_descr": "Sessions/sec 10m avg", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 131, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.1.13.0", + "sensor_index": "fgSysSesRate30.0", + "sensor_type": "sessions", + "sensor_descr": "Sessions/sec 30m avg", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 139, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.1.14.0", + "sensor_index": "fgSysSesRate60.0", + "sensor_type": "sessions", + "sensor_descr": "Sessions/sec 60m avg", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 139, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "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.12356.101.4.3.2.1.4.1", + "sensor_index": "fgHwSensorEntIndex.1", + "sensor_type": "fgHwSensors", + "sensor_descr": "CPU ON-DIE Temperature", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.2", + "sensor_index": "fgHwSensorEntIndex.2", + "sensor_type": "fgHwSensors", + "sensor_descr": "B50182 Temperature", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.3", + "sensor_index": "fgHwSensorEntIndex.3", + "sensor_type": "fgHwSensors", + "sensor_descr": "B50210_1 Temperature", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.4", + "sensor_index": "fgHwSensorEntIndex.4", + "sensor_type": "fgHwSensors", + "sensor_descr": "B50210_2 Temperature", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.3.1.1.1", + "sensor_index": "fgVpnSslState.1", + "sensor_type": "fgVpnSslState", + "sensor_descr": "SSL-VPN Status", + "group": "SSL VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnSslState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.1.2", + "sensor_index": "fgVpnTunEntIndex.1.2", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (20.73.106.4)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.2.2", + "sensor_index": "fgVpnTunEntIndex.2.2", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (20.73.106.61)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.13.2.1.1.12.1", + "sensor_index": "fgHaStatsSyncStatus.1", + "sensor_type": "haSyncStatus 1", + "sensor_descr": "HA sync status redacted", + "group": "HA", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "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": null + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.13.2.1.1.12.2", + "sensor_index": "fgHaStatsSyncStatus.2", + "sensor_type": "haSyncStatus 2", + "sensor_descr": "HA sync status redacted", + "group": "HA", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + } + ], + "state_indexes": [ + { + "state_name": "fgHwSensors", + "state_descr": "OK", + "state_draw_graph": 1, + "state_value": 0, + "state_generic_value": 0 + }, + { + "state_name": "fgHwSensors", + "state_descr": "ERROR", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 2 + }, + { + "state_name": "fgVpnSslState", + "state_descr": "Disabled", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 3 + }, + { + "state_name": "fgVpnSslState", + "state_descr": "Enabled", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "fgVpnTunEntStatus", + "state_descr": "Down", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 2 + }, + { + "state_name": "fgVpnTunEntStatus", + "state_descr": "Up", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 0 + } + ] + }, + "poller": { + "sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.13.2.1.1.1", + "sensor_index": "fgHaStatsIndex", + "sensor_type": "clusterState", + "sensor_descr": "Cluster 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": 2, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": 21489, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.3.1.6.1", + "sensor_index": "fgVpnSslStatsActiveTunnels.1", + "sensor_type": "fortigate", + "sensor_descr": "SSL VPN Active tunnels", + "group": "VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.3.1.2.1", + "sensor_index": "fgVpnSslStatsLoginUsers.1", + "sensor_type": "fortigate", + "sensor_descr": "SSL VPN Logged users", + "group": "VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.1.1.0", + "sensor_index": "fgVpnTunnelUpCount.0", + "sensor_type": "fortigate", + "sensor_descr": "IPSEC VPN tunnels", + "group": "VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.1.8.0", + "sensor_index": "fgSysSesCount.0", + "sensor_type": "sessions", + "sensor_descr": "Session count", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 21489, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.1.11.0", + "sensor_index": "fgSysSesRate1.0", + "sensor_type": "sessions", + "sensor_descr": "Sessions/sec 1m avg", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 221, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.1.12.0", + "sensor_index": "fgSysSesRate10.0", + "sensor_type": "sessions", + "sensor_descr": "Sessions/sec 10m avg", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 131, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.1.13.0", + "sensor_index": "fgSysSesRate30.0", + "sensor_type": "sessions", + "sensor_descr": "Sessions/sec 30m avg", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 139, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.1.14.0", + "sensor_index": "fgSysSesRate60.0", + "sensor_type": "sessions", + "sensor_descr": "Sessions/sec 60m avg", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 139, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "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.12356.101.4.3.2.1.4.1", + "sensor_index": "fgHwSensorEntIndex.1", + "sensor_type": "fgHwSensors", + "sensor_descr": "CPU ON-DIE Temperature", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.2", + "sensor_index": "fgHwSensorEntIndex.2", + "sensor_type": "fgHwSensors", + "sensor_descr": "B50182 Temperature", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.3", + "sensor_index": "fgHwSensorEntIndex.3", + "sensor_type": "fgHwSensors", + "sensor_descr": "B50210_1 Temperature", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.3.2.1.4.4", + "sensor_index": "fgHwSensorEntIndex.4", + "sensor_type": "fgHwSensors", + "sensor_descr": "B50210_2 Temperature", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgHwSensors" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.3.1.1.1", + "sensor_index": "fgVpnSslState.1", + "sensor_type": "fgVpnSslState", + "sensor_descr": "SSL-VPN Status", + "group": "SSL VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnSslState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.1.2", + "sensor_index": "fgVpnTunEntIndex.1.2", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (20.73.106.4)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.2.2", + "sensor_index": "fgVpnTunEntIndex.2.2", + "sensor_type": "fgVpnTunEntStatus", + "sensor_descr": "redacted\\redacted (20.73.106.61)", + "group": "IPSEC VPN", + "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": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "fgVpnTunEntStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.13.2.1.1.12.1", + "sensor_index": "fgHaStatsSyncStatus.1", + "sensor_type": "haSyncStatus 1", + "sensor_descr": "HA sync status redacted", + "group": "HA", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "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": null + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.13.2.1.1.12.2", + "sensor_index": "fgHaStatsSyncStatus.2", + "sensor_type": "haSyncStatus 2", + "sensor_descr": "HA sync status redacted", + "group": "HA", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + } + ], + "state_indexes": [ + { + "state_name": "fgHwSensors", + "state_descr": "OK", + "state_draw_graph": 1, + "state_value": 0, + "state_generic_value": 0 + }, + { + "state_name": "fgHwSensors", + "state_descr": "ERROR", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 2 + }, + { + "state_name": "fgVpnSslState", + "state_descr": "Disabled", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 3 + }, + { + "state_name": "fgVpnSslState", + "state_descr": "Enabled", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "fgVpnTunEntStatus", + "state_descr": "Down", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 2 + }, + { + "state_name": "fgVpnTunEntStatus", + "state_descr": "Up", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 0 + } + ] + } + }, + "wireless": { + "discovery": { + "wireless_sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "ap-count", + "sensor_index": "1", + "sensor_type": "fortigate", + "sensor_descr": "Connected APs", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 0, + "sensor_prev": null, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_oids": "[\".1.3.6.1.4.1.12356.101.14.2.5.0\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "clients", + "sensor_index": "1", + "sensor_type": "fortigate", + "sensor_descr": "Clients: Total", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 0, + "sensor_prev": null, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_oids": "[\".1.3.6.1.4.1.12356.101.14.2.7.0\"]" + } + ] + }, + "poller": "matches discovery" + } +} diff --git a/tests/snmpsim/fortigate_1500d.snmprec b/tests/snmpsim/fortigate_1500d.snmprec index 5bc14dca36..5db4502fb6 100644 --- a/tests/snmpsim/fortigate_1500d.snmprec +++ b/tests/snmpsim/fortigate_1500d.snmprec @@ -1,117 +1,117 @@ -1.3.6.1.2.1.1.1.0|4|FG1K5D3I14802135 +1.3.6.1.2.1.1.1.0|4|our firewall 1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.12356.101.1.15000 -1.3.6.1.2.1.1.3.0|67|1513260660 +1.3.6.1.2.1.1.3.0|67|3885731864 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.1|4|if_10_mgmt1 -1.3.6.1.2.1.2.2.1.2.2|4|if_port1 +1.3.6.1.2.1.2.2.1.2.1|4|redacted +1.3.6.1.2.1.2.2.1.2.2|4|redacted 1.3.6.1.2.1.2.2.1.2.3|4| -1.3.6.1.2.1.2.2.1.2.4|4|if_port2 -1.3.6.1.2.1.2.2.1.2.5|4|if_port3 -1.3.6.1.2.1.2.2.1.2.6|4|if_port4 -1.3.6.1.2.1.2.2.1.2.7|4|if_port5 -1.3.6.1.2.1.2.2.1.2.8|4|if_port6 -1.3.6.1.2.1.2.2.1.2.9|4|if_port7 -1.3.6.1.2.1.2.2.1.2.10|4|if_port8 -1.3.6.1.2.1.2.2.1.2.11|4|if_port9 -1.3.6.1.2.1.2.2.1.2.12|4|if_port10 -1.3.6.1.2.1.2.2.1.2.13|4|if_port11 -1.3.6.1.2.1.2.2.1.2.14|4|if_port12 -1.3.6.1.2.1.2.2.1.2.15|4|if_port13 -1.3.6.1.2.1.2.2.1.2.16|4|if_port14 -1.3.6.1.2.1.2.2.1.2.17|4|if_port15_HA1 -1.3.6.1.2.1.2.2.1.2.18|4|if_port16_HA2 -1.3.6.1.2.1.2.2.1.2.19|4|if_port17 -1.3.6.1.2.1.2.2.1.2.20|4|if_port18 -1.3.6.1.2.1.2.2.1.2.21|4|if_port19 -1.3.6.1.2.1.2.2.1.2.22|4|if_port20 -1.3.6.1.2.1.2.2.1.2.23|4|if_port21 -1.3.6.1.2.1.2.2.1.2.24|4|if_port22 -1.3.6.1.2.1.2.2.1.2.25|4|if_port23 -1.3.6.1.2.1.2.2.1.2.26|4|if_port24 -1.3.6.1.2.1.2.2.1.2.27|4|if_port25 -1.3.6.1.2.1.2.2.1.2.28|4|if_port26 -1.3.6.1.2.1.2.2.1.2.29|4|if_port27 -1.3.6.1.2.1.2.2.1.2.30|4|if_port28 -1.3.6.1.2.1.2.2.1.2.31|4|if_port29 -1.3.6.1.2.1.2.2.1.2.32|4|if_port30 -1.3.6.1.2.1.2.2.1.2.33|4|if_port31 -1.3.6.1.2.1.2.2.1.2.34|4|if_port33 -1.3.6.1.2.1.2.2.1.2.35|4|SWITCH_DOWNLINK_1_OF_2 -1.3.6.1.2.1.2.2.1.2.36|4|SWITCH_DOWNLINK_2_OF_2 -1.3.6.1.2.1.2.2.1.2.37|4|SURFnoc Service id 3514IR1 -1.3.6.1.2.1.2.2.1.2.38|4|SURFnoc Service id 3514IR2 -1.3.6.1.2.1.2.2.1.2.39|4|if_port37 -1.3.6.1.2.1.2.2.1.2.40|4|if_port38 -1.3.6.1.2.1.2.2.1.2.41|4|if_port39 -1.3.6.1.2.1.2.2.1.2.42|4|if_port40 -1.3.6.1.2.1.2.2.1.2.43|4|if_mgmt2 +1.3.6.1.2.1.2.2.1.2.4|4|redacted +1.3.6.1.2.1.2.2.1.2.5|4|redacted +1.3.6.1.2.1.2.2.1.2.6|4|redacted +1.3.6.1.2.1.2.2.1.2.7|4|redacted +1.3.6.1.2.1.2.2.1.2.8|4|redacted +1.3.6.1.2.1.2.2.1.2.9|4|redacted +1.3.6.1.2.1.2.2.1.2.10|4|redacted +1.3.6.1.2.1.2.2.1.2.11|4|redacted +1.3.6.1.2.1.2.2.1.2.12|4|redacted +1.3.6.1.2.1.2.2.1.2.13|4|redacted +1.3.6.1.2.1.2.2.1.2.14|4|redacted +1.3.6.1.2.1.2.2.1.2.15|4|redacted +1.3.6.1.2.1.2.2.1.2.16|4|redacted +1.3.6.1.2.1.2.2.1.2.17|4|redacted +1.3.6.1.2.1.2.2.1.2.18|4|redacted +1.3.6.1.2.1.2.2.1.2.19|4|redacted +1.3.6.1.2.1.2.2.1.2.20|4|redacted +1.3.6.1.2.1.2.2.1.2.21|4|redacted +1.3.6.1.2.1.2.2.1.2.22|4|redacted +1.3.6.1.2.1.2.2.1.2.23|4|redacted +1.3.6.1.2.1.2.2.1.2.24|4|redacted +1.3.6.1.2.1.2.2.1.2.25|4|redacted +1.3.6.1.2.1.2.2.1.2.26|4|redacted +1.3.6.1.2.1.2.2.1.2.27|4|redacted +1.3.6.1.2.1.2.2.1.2.28|4|redacted +1.3.6.1.2.1.2.2.1.2.29|4|redacted +1.3.6.1.2.1.2.2.1.2.30|4|redacted +1.3.6.1.2.1.2.2.1.2.31|4|redacted +1.3.6.1.2.1.2.2.1.2.32|4|redacted +1.3.6.1.2.1.2.2.1.2.33|4|redacted +1.3.6.1.2.1.2.2.1.2.34|4|redacted +1.3.6.1.2.1.2.2.1.2.35|4|redacted +1.3.6.1.2.1.2.2.1.2.36|4|redacted +1.3.6.1.2.1.2.2.1.2.37|4|redacted +1.3.6.1.2.1.2.2.1.2.38|4|redacted +1.3.6.1.2.1.2.2.1.2.39|4|redacted +1.3.6.1.2.1.2.2.1.2.40|4|redacted +1.3.6.1.2.1.2.2.1.2.41|4|redacted +1.3.6.1.2.1.2.2.1.2.42|4|redacted +1.3.6.1.2.1.2.2.1.2.43|4|redacted 1.3.6.1.2.1.2.2.1.2.44|4| 1.3.6.1.2.1.2.2.1.2.45|4|npu0_vlink0 1.3.6.1.2.1.2.2.1.2.46|4|npu0_vlink1 -1.3.6.1.2.1.2.2.1.2.47|4|npu1_vlink0 -1.3.6.1.2.1.2.2.1.2.48|4|npu1_vlink1 -1.3.6.1.2.1.2.2.1.2.49|4|SWITCH_DOWNLINK -1.3.6.1.2.1.2.2.1.2.50|4|W1903 034 -1.3.6.1.2.1.2.2.1.2.51|4|if_0003_l3hdwroute -1.3.6.1.2.1.2.2.1.2.52|4|if_0004_l3pocroute -1.3.6.1.2.1.2.2.1.2.53|4|if_28_printers -1.3.6.1.2.1.2.2.1.2.54|4|if_101_security -1.3.6.1.2.1.2.2.1.2.55|4|if_32_voip +1.3.6.1.2.1.2.2.1.2.47|4| npu1_vlink0 +1.3.6.1.2.1.2.2.1.2.48|4| npu1_vlink1 +1.3.6.1.2.1.2.2.1.2.49|4|redacted +1.3.6.1.2.1.2.2.1.2.50|4|redacted +1.3.6.1.2.1.2.2.1.2.51|4| +1.3.6.1.2.1.2.2.1.2.52|4|redacted +1.3.6.1.2.1.2.2.1.2.53|4|redacted +1.3.6.1.2.1.2.2.1.2.54|4|redacted +1.3.6.1.2.1.2.2.1.2.55|4|redacted 1.3.6.1.2.1.2.2.1.2.56|4| -1.3.6.1.2.1.2.2.1.2.57|4|if_106_dlserv -1.3.6.1.2.1.2.2.1.2.58|4|if_109_gast -1.3.6.1.2.1.2.2.1.2.59|4|if_110_meet +1.3.6.1.2.1.2.2.1.2.57|4| +1.3.6.1.2.1.2.2.1.2.58|4| +1.3.6.1.2.1.2.2.1.2.59|4|redacted 1.3.6.1.2.1.2.2.1.2.60|4| -1.3.6.1.2.1.2.2.1.2.61|4|if_126_vpn_log -1.3.6.1.2.1.2.2.1.2.62|4|if_68_voip -1.3.6.1.2.1.2.2.1.2.63|4|if_122_test -1.3.6.1.2.1.2.2.1.2.64|4|W1903 034 -1.3.6.1.2.1.2.2.1.2.65|4|if_210_biman -1.3.6.1.2.1.2.2.1.2.66|4|if_211_buman -1.3.6.1.2.1.2.2.1.2.67|4|W1903 286 -1.3.6.1.2.1.2.2.1.2.68|4|if_301_dmz1 -1.3.6.1.2.1.2.2.1.2.69|4|if_302_dmz2 -1.3.6.1.2.1.2.2.1.2.70|4|if_303_dmz3 -1.3.6.1.2.1.2.2.1.2.71|4|if_60_avd -1.3.6.1.2.1.2.2.1.2.72|4| +1.3.6.1.2.1.2.2.1.2.61|4|redacted +1.3.6.1.2.1.2.2.1.2.62|4|redacted +1.3.6.1.2.1.2.2.1.2.63|4| +1.3.6.1.2.1.2.2.1.2.64|4|redacted +1.3.6.1.2.1.2.2.1.2.65|4|redacted +1.3.6.1.2.1.2.2.1.2.66|4|redacted +1.3.6.1.2.1.2.2.1.2.67|4|redacted +1.3.6.1.2.1.2.2.1.2.68|4|redacted +1.3.6.1.2.1.2.2.1.2.69|4|redacted +1.3.6.1.2.1.2.2.1.2.70|4|redacted +1.3.6.1.2.1.2.2.1.2.71|4|redacted +1.3.6.1.2.1.2.2.1.2.72|4|redacted 1.3.6.1.2.1.2.2.1.2.73|4| -1.3.6.1.2.1.2.2.1.2.74|4|if_307_dmzxtr -1.3.6.1.2.1.2.2.1.2.75|4|if_311_gmol -1.3.6.1.2.1.2.2.1.2.76|4|if_319_mts_deltagoot -1.3.6.1.2.1.2.2.1.2.77|4|if_320_hdwdmzinfra -1.3.6.1.2.1.2.2.1.2.78|4|W1903 034 -1.3.6.1.2.1.2.2.1.2.79|4|if_322_videoconf -1.3.6.1.2.1.2.2.1.2.80|4|if_323_cst_nhi -1.3.6.1.2.1.2.2.1.2.81|4|if_324_cst_mipwa -1.3.6.1.2.1.2.2.1.2.82|4|if_325_systemsuppport +1.3.6.1.2.1.2.2.1.2.74|4|redacted +1.3.6.1.2.1.2.2.1.2.75|4|redacted +1.3.6.1.2.1.2.2.1.2.76|4|redacted +1.3.6.1.2.1.2.2.1.2.77|4|redacted +1.3.6.1.2.1.2.2.1.2.78|4|redacted +1.3.6.1.2.1.2.2.1.2.79|4|redacted +1.3.6.1.2.1.2.2.1.2.80|4| +1.3.6.1.2.1.2.2.1.2.81|4|redacted +1.3.6.1.2.1.2.2.1.2.82|4|redacted 1.3.6.1.2.1.2.2.1.2.83|4| -1.3.6.1.2.1.2.2.1.2.84|4|if_327_cst_moria +1.3.6.1.2.1.2.2.1.2.84|4|redacted 1.3.6.1.2.1.2.2.1.2.85|4| 1.3.6.1.2.1.2.2.1.2.86|4| -1.3.6.1.2.1.2.2.1.2.87|4|if_330_cst_ibrahym +1.3.6.1.2.1.2.2.1.2.87|4|redacted 1.3.6.1.2.1.2.2.1.2.88|4| -1.3.6.1.2.1.2.2.1.2.89|4|if_334_hdwdmzpoc -1.3.6.1.2.1.2.2.1.2.90|4|if_350_xtr-infra +1.3.6.1.2.1.2.2.1.2.89|4|redacted +1.3.6.1.2.1.2.2.1.2.90|4|redacted 1.3.6.1.2.1.2.2.1.2.91|4| 1.3.6.1.2.1.2.2.1.2.92|4| 1.3.6.1.2.1.2.2.1.2.93|4| -1.3.6.1.2.1.2.2.1.2.94|4|if_108_gast -1.3.6.1.2.1.2.2.1.2.95|4|if_209_man_hpc +1.3.6.1.2.1.2.2.1.2.94|4|redacted +1.3.6.1.2.1.2.2.1.2.95|4|redacted 1.3.6.1.2.1.2.2.1.2.96|4| -1.3.6.1.2.1.2.2.1.2.97|4|if_5_idlab -1.3.6.1.2.1.2.2.1.2.98|4|if_114_winxp +1.3.6.1.2.1.2.2.1.2.97|4|redacted +1.3.6.1.2.1.2.2.1.2.98|4|redacted 1.3.6.1.2.1.2.2.1.2.99|4| -1.3.6.1.2.1.2.2.1.2.100|4|if_102_keyproc -1.3.6.1.2.1.2.2.1.2.101|4|transport VLAN Deltagoot +1.3.6.1.2.1.2.2.1.2.100|4|redacted +1.3.6.1.2.1.2.2.1.2.101|4|redacted 1.3.6.1.2.1.2.2.1.2.102|4| 1.3.6.1.2.1.2.2.1.2.103|4| 1.3.6.1.2.1.2.2.1.2.104|4| -1.3.6.1.2.1.2.2.1.2.105|4|if_p1_vpn_logger -1.3.6.1.2.1.2.2.1.2.106|4|if_304_maas +1.3.6.1.2.1.2.2.1.2.105|4| +1.3.6.1.2.1.2.2.1.2.106|4|redacted 1.3.6.1.2.1.2.2.1.2.107|4| -1.3.6.1.2.1.2.2.1.2.108|4|transport VLAN Geohal +1.3.6.1.2.1.2.2.1.2.108|4|redacted 1.3.6.1.2.1.2.2.1.2.109|4| 1.3.6.1.2.1.2.2.1.2.110|4| 1.3.6.1.2.1.2.2.1.2.111|4| @@ -122,50 +122,72 @@ 1.3.6.1.2.1.2.2.1.2.116|4| 1.3.6.1.2.1.2.2.1.2.117|4| 1.3.6.1.2.1.2.2.1.2.118|4| -1.3.6.1.2.1.2.2.1.2.119|4| +1.3.6.1.2.1.2.2.1.2.119|4|redacted 1.3.6.1.2.1.2.2.1.2.120|4| -1.3.6.1.2.1.2.2.1.2.121|4| +1.3.6.1.2.1.2.2.1.2.121|4|redacted 1.3.6.1.2.1.2.2.1.2.122|4| -1.3.6.1.2.1.2.2.1.2.123|4| -1.3.6.1.2.1.2.2.1.2.124|4| -1.3.6.1.2.1.2.2.1.2.125|4|transport VLAN Hydro Zuid +1.3.6.1.2.1.2.2.1.2.123|4|redacted +1.3.6.1.2.1.2.2.1.2.124|4|redacted +1.3.6.1.2.1.2.2.1.2.125|4|redacted 1.3.6.1.2.1.2.2.1.2.126|4| 1.3.6.1.2.1.2.2.1.2.127|4| -1.3.6.1.2.1.2.2.1.2.128|4| -1.3.6.1.2.1.2.2.1.2.129|4|transport VLAN Hydro Noord -1.3.6.1.2.1.2.2.1.2.130|4|transport VLAN Toren -1.3.6.1.2.1.2.2.1.2.131|4|transport VLAN Paviljoen -1.3.6.1.2.1.2.2.1.2.132|4|transport VLAN Sigma -1.3.6.1.2.1.2.2.1.2.133|4|transport VLAN Tetra -1.3.6.1.2.1.2.2.1.2.134|4|transport VLAN Daltonlaan -1.3.6.1.2.1.2.2.1.2.135|4|transport VLAN Werkplaatsen +1.3.6.1.2.1.2.2.1.2.128|4|A2203 196 +1.3.6.1.2.1.2.2.1.2.129|4|redacted +1.3.6.1.2.1.2.2.1.2.130|4|redacted +1.3.6.1.2.1.2.2.1.2.131|4|redacted +1.3.6.1.2.1.2.2.1.2.132|4|redacted +1.3.6.1.2.1.2.2.1.2.133|4|redacted +1.3.6.1.2.1.2.2.1.2.134|4x|227472616e73706f727420564c414e2044616c746f6e6c61616e0a22 +1.3.6.1.2.1.2.2.1.2.135|4|redacted 1.3.6.1.2.1.2.2.1.2.136|4| 1.3.6.1.2.1.2.2.1.2.137|4| -1.3.6.1.2.1.2.2.1.2.138|4| -1.3.6.1.2.1.2.2.1.2.139|4| -1.3.6.1.2.1.2.2.1.2.140|4| 1.3.6.1.2.1.2.2.1.2.141|4| 1.3.6.1.2.1.2.2.1.2.142|4| 1.3.6.1.2.1.2.2.1.2.143|4| 1.3.6.1.2.1.2.2.1.2.144|4| 1.3.6.1.2.1.2.2.1.2.145|4| 1.3.6.1.2.1.2.2.1.2.146|4| -1.3.6.1.2.1.2.2.1.2.147|4|transport VLAN DCD-B -1.3.6.1.2.1.2.2.1.2.148|4|WIFI TRUSTED +1.3.6.1.2.1.2.2.1.2.147|4|redacted +1.3.6.1.2.1.2.2.1.2.148|4|redacted 1.3.6.1.2.1.2.2.1.2.149|4| -1.3.6.1.2.1.2.2.1.2.150|4|Was in eerste design een DMZ netwerk. Onmogelijk naam te wijzigen zonder onderbreking dus heet nog steeds DMZ -1.3.6.1.2.1.2.2.1.2.151|4|W1801-180 +1.3.6.1.2.1.2.2.1.2.150|4|redacted +1.3.6.1.2.1.2.2.1.2.151|4|redacted 1.3.6.1.2.1.2.2.1.2.152|4| 1.3.6.1.2.1.2.2.1.2.153|4| 1.3.6.1.2.1.2.2.1.2.154|4| -1.3.6.1.2.1.2.2.1.2.155|4| +1.3.6.1.2.1.2.2.1.2.155|4|redacted 1.3.6.1.2.1.2.2.1.2.156|4| 1.3.6.1.2.1.2.2.1.2.157|4| -1.3.6.1.2.1.2.2.1.2.158|4|A1902 310 -1.3.6.1.2.1.2.2.1.2.159|4| -1.3.6.1.2.1.2.2.1.2.160|4|A1902 357 +1.3.6.1.2.1.2.2.1.2.158|4| +1.3.6.1.2.1.2.2.1.2.160|4| 1.3.6.1.2.1.2.2.1.2.161|4| 1.3.6.1.2.1.2.2.1.2.162|4| +1.3.6.1.2.1.2.2.1.2.163|4| +1.3.6.1.2.1.2.2.1.2.164|4|redacted +1.3.6.1.2.1.2.2.1.2.165|4| +1.3.6.1.2.1.2.2.1.2.166|4| +1.3.6.1.2.1.2.2.1.2.167|4| +1.3.6.1.2.1.2.2.1.2.168|4| +1.3.6.1.2.1.2.2.1.2.169|4|redacted +1.3.6.1.2.1.2.2.1.2.170|4|redacted +1.3.6.1.2.1.2.2.1.2.172|4| +1.3.6.1.2.1.2.2.1.2.173|4| +1.3.6.1.2.1.2.2.1.2.174|4|redacted +1.3.6.1.2.1.2.2.1.2.175|4| +1.3.6.1.2.1.2.2.1.2.176|4| +1.3.6.1.2.1.2.2.1.2.177|4| +1.3.6.1.2.1.2.2.1.2.178|4| +1.3.6.1.2.1.2.2.1.2.179|4| +1.3.6.1.2.1.2.2.1.2.180|4|redacted +1.3.6.1.2.1.2.2.1.2.181|4|redacted +1.3.6.1.2.1.2.2.1.2.182|4| +1.3.6.1.2.1.2.2.1.2.183|4| +1.3.6.1.2.1.2.2.1.2.184|4|redacted +1.3.6.1.2.1.2.2.1.2.185|4|redacted +1.3.6.1.2.1.2.2.1.2.186|4| +1.3.6.1.2.1.2.2.1.2.187|4| +1.3.6.1.2.1.2.2.1.2.188|4| +1.3.6.1.2.1.2.2.1.2.189|4| 1.3.6.1.2.1.2.2.1.3.1|2|6 1.3.6.1.2.1.2.2.1.3.2|2|6 1.3.6.1.2.1.2.2.1.3.3|2|6 @@ -237,7 +259,7 @@ 1.3.6.1.2.1.2.2.1.3.69|2|135 1.3.6.1.2.1.2.2.1.3.70|2|135 1.3.6.1.2.1.2.2.1.3.71|2|135 -1.3.6.1.2.1.2.2.1.3.72|2|131 +1.3.6.1.2.1.2.2.1.3.72|2|135 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|135 1.3.6.1.2.1.2.2.1.3.75|2|135 @@ -245,7 +267,7 @@ 1.3.6.1.2.1.2.2.1.3.77|2|135 1.3.6.1.2.1.2.2.1.3.78|2|135 1.3.6.1.2.1.2.2.1.3.79|2|135 -1.3.6.1.2.1.2.2.1.3.80|2|135 +1.3.6.1.2.1.2.2.1.3.80|2|131 1.3.6.1.2.1.2.2.1.3.81|2|135 1.3.6.1.2.1.2.2.1.3.82|2|135 1.3.6.1.2.1.2.2.1.3.83|2|1 @@ -269,7 +291,7 @@ 1.3.6.1.2.1.2.2.1.3.101|2|135 1.3.6.1.2.1.2.2.1.3.102|2|135 1.3.6.1.2.1.2.2.1.3.103|2|135 -1.3.6.1.2.1.2.2.1.3.104|2|135 +1.3.6.1.2.1.2.2.1.3.104|2|131 1.3.6.1.2.1.2.2.1.3.105|2|131 1.3.6.1.2.1.2.2.1.3.106|2|135 1.3.6.1.2.1.2.2.1.3.107|2|1 @@ -286,9 +308,9 @@ 1.3.6.1.2.1.2.2.1.3.118|2|135 1.3.6.1.2.1.2.2.1.3.119|2|135 1.3.6.1.2.1.2.2.1.3.120|2|135 -1.3.6.1.2.1.2.2.1.3.121|2|131 +1.3.6.1.2.1.2.2.1.3.121|2|135 1.3.6.1.2.1.2.2.1.3.122|2|135 -1.3.6.1.2.1.2.2.1.3.123|2|131 +1.3.6.1.2.1.2.2.1.3.123|2|135 1.3.6.1.2.1.2.2.1.3.124|2|135 1.3.6.1.2.1.2.2.1.3.125|2|135 1.3.6.1.2.1.2.2.1.3.126|2|135 @@ -303,9 +325,6 @@ 1.3.6.1.2.1.2.2.1.3.135|2|135 1.3.6.1.2.1.2.2.1.3.136|2|135 1.3.6.1.2.1.2.2.1.3.137|2|135 -1.3.6.1.2.1.2.2.1.3.138|2|135 -1.3.6.1.2.1.2.2.1.3.139|2|1 -1.3.6.1.2.1.2.2.1.3.140|2|1 1.3.6.1.2.1.2.2.1.3.141|2|135 1.3.6.1.2.1.2.2.1.3.142|2|135 1.3.6.1.2.1.2.2.1.3.143|2|135 @@ -324,10 +343,35 @@ 1.3.6.1.2.1.2.2.1.3.156|2|135 1.3.6.1.2.1.2.2.1.3.157|2|135 1.3.6.1.2.1.2.2.1.3.158|2|135 -1.3.6.1.2.1.2.2.1.3.159|2|135 1.3.6.1.2.1.2.2.1.3.160|2|135 1.3.6.1.2.1.2.2.1.3.161|2|135 1.3.6.1.2.1.2.2.1.3.162|2|135 +1.3.6.1.2.1.2.2.1.3.163|2|135 +1.3.6.1.2.1.2.2.1.3.164|2|135 +1.3.6.1.2.1.2.2.1.3.165|2|135 +1.3.6.1.2.1.2.2.1.3.166|2|135 +1.3.6.1.2.1.2.2.1.3.167|2|135 +1.3.6.1.2.1.2.2.1.3.168|2|135 +1.3.6.1.2.1.2.2.1.3.169|2|135 +1.3.6.1.2.1.2.2.1.3.170|2|135 +1.3.6.1.2.1.2.2.1.3.172|2|135 +1.3.6.1.2.1.2.2.1.3.173|2|135 +1.3.6.1.2.1.2.2.1.3.174|2|135 +1.3.6.1.2.1.2.2.1.3.175|2|135 +1.3.6.1.2.1.2.2.1.3.176|2|131 +1.3.6.1.2.1.2.2.1.3.177|2|135 +1.3.6.1.2.1.2.2.1.3.178|2|135 +1.3.6.1.2.1.2.2.1.3.179|2|1 +1.3.6.1.2.1.2.2.1.3.180|2|135 +1.3.6.1.2.1.2.2.1.3.181|2|135 +1.3.6.1.2.1.2.2.1.3.182|2|135 +1.3.6.1.2.1.2.2.1.3.183|2|135 +1.3.6.1.2.1.2.2.1.3.184|2|135 +1.3.6.1.2.1.2.2.1.3.185|2|135 +1.3.6.1.2.1.2.2.1.3.186|2|135 +1.3.6.1.2.1.2.2.1.3.187|2|135 +1.3.6.1.2.1.2.2.1.3.188|2|135 +1.3.6.1.2.1.2.2.1.3.189|2|135 1.3.6.1.2.1.2.2.1.4.1|2|1500 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|1500 @@ -372,10 +416,10 @@ 1.3.6.1.2.1.2.2.1.4.42|2|1500 1.3.6.1.2.1.2.2.1.4.43|2|1500 1.3.6.1.2.1.2.2.1.4.44|2|1500 -1.3.6.1.2.1.2.2.1.4.45|2|1500 -1.3.6.1.2.1.2.2.1.4.46|2|1500 -1.3.6.1.2.1.2.2.1.4.47|2|1500 -1.3.6.1.2.1.2.2.1.4.48|2|1500 +1.3.6.1.2.1.2.2.1.4.45|2|15324 +1.3.6.1.2.1.2.2.1.4.46|2|15324 +1.3.6.1.2.1.2.2.1.4.47|2|15324 +1.3.6.1.2.1.2.2.1.4.48|2|15324 1.3.6.1.2.1.2.2.1.4.49|2|1500 1.3.6.1.2.1.2.2.1.4.50|2|1500 1.3.6.1.2.1.2.2.1.4.51|2|1500 @@ -387,7 +431,7 @@ 1.3.6.1.2.1.2.2.1.4.57|2|1500 1.3.6.1.2.1.2.2.1.4.58|2|1500 1.3.6.1.2.1.2.2.1.4.59|2|1500 -1.3.6.1.2.1.2.2.1.4.60|2|1500 +1.3.6.1.2.1.2.2.1.4.60|2|1438 1.3.6.1.2.1.2.2.1.4.61|2|1500 1.3.6.1.2.1.2.2.1.4.62|2|1500 1.3.6.1.2.1.2.2.1.4.63|2|1500 @@ -407,13 +451,13 @@ 1.3.6.1.2.1.2.2.1.4.77|2|1500 1.3.6.1.2.1.2.2.1.4.78|2|1500 1.3.6.1.2.1.2.2.1.4.79|2|1500 -1.3.6.1.2.1.2.2.1.4.80|2|1500 +1.3.6.1.2.1.2.2.1.4.80|2|1438 1.3.6.1.2.1.2.2.1.4.81|2|1500 1.3.6.1.2.1.2.2.1.4.82|2|1500 1.3.6.1.2.1.2.2.1.4.83|2|1500 1.3.6.1.2.1.2.2.1.4.84|2|1500 -1.3.6.1.2.1.2.2.1.4.85|2|1500 -1.3.6.1.2.1.2.2.1.4.86|2|1500 +1.3.6.1.2.1.2.2.1.4.85|2|15324 +1.3.6.1.2.1.2.2.1.4.86|2|15324 1.3.6.1.2.1.2.2.1.4.87|2|1500 1.3.6.1.2.1.2.2.1.4.88|2|1500 1.3.6.1.2.1.2.2.1.4.89|2|1500 @@ -426,13 +470,13 @@ 1.3.6.1.2.1.2.2.1.4.96|2|1500 1.3.6.1.2.1.2.2.1.4.97|2|1500 1.3.6.1.2.1.2.2.1.4.98|2|1500 -1.3.6.1.2.1.2.2.1.4.99|2|1500 +1.3.6.1.2.1.2.2.1.4.99|2|1438 1.3.6.1.2.1.2.2.1.4.100|2|1500 1.3.6.1.2.1.2.2.1.4.101|2|1500 1.3.6.1.2.1.2.2.1.4.102|2|1500 1.3.6.1.2.1.2.2.1.4.103|2|1500 1.3.6.1.2.1.2.2.1.4.104|2|1500 -1.3.6.1.2.1.2.2.1.4.105|2|1500 +1.3.6.1.2.1.2.2.1.4.105|2|1438 1.3.6.1.2.1.2.2.1.4.106|2|1500 1.3.6.1.2.1.2.2.1.4.107|2|1500 1.3.6.1.2.1.2.2.1.4.108|2|1500 @@ -465,193 +509,237 @@ 1.3.6.1.2.1.2.2.1.4.135|2|1500 1.3.6.1.2.1.2.2.1.4.136|2|1500 1.3.6.1.2.1.2.2.1.4.137|2|1500 -1.3.6.1.2.1.2.2.1.4.138|2|1500 -1.3.6.1.2.1.2.2.1.4.139|2|1500 -1.3.6.1.2.1.2.2.1.4.140|2|1500 1.3.6.1.2.1.2.2.1.4.141|2|1500 1.3.6.1.2.1.2.2.1.4.142|2|1500 1.3.6.1.2.1.2.2.1.4.143|2|1500 -1.3.6.1.2.1.2.2.1.4.144|2|1500 -1.3.6.1.2.1.2.2.1.4.145|2|1500 +1.3.6.1.2.1.2.2.1.4.144|2|1438 +1.3.6.1.2.1.2.2.1.4.145|2|15324 1.3.6.1.2.1.2.2.1.4.146|2|1500 1.3.6.1.2.1.2.2.1.4.147|2|1500 1.3.6.1.2.1.2.2.1.4.148|2|1500 1.3.6.1.2.1.2.2.1.4.149|2|1500 1.3.6.1.2.1.2.2.1.4.150|2|1500 1.3.6.1.2.1.2.2.1.4.151|2|1500 -1.3.6.1.2.1.2.2.1.4.152|2|1500 +1.3.6.1.2.1.2.2.1.4.152|2|15324 1.3.6.1.2.1.2.2.1.4.153|2|1500 -1.3.6.1.2.1.2.2.1.4.154|2|1500 +1.3.6.1.2.1.2.2.1.4.154|2|15324 1.3.6.1.2.1.2.2.1.4.155|2|1500 1.3.6.1.2.1.2.2.1.4.156|2|1500 1.3.6.1.2.1.2.2.1.4.157|2|1500 1.3.6.1.2.1.2.2.1.4.158|2|1500 -1.3.6.1.2.1.2.2.1.4.159|2|1500 1.3.6.1.2.1.2.2.1.4.160|2|1500 1.3.6.1.2.1.2.2.1.4.161|2|1500 1.3.6.1.2.1.2.2.1.4.162|2|1500 -1.3.6.1.2.1.2.2.1.6.1|4x|085B0E9A5754 -1.3.6.1.2.1.2.2.1.6.2|4x|085B0E9A572C +1.3.6.1.2.1.2.2.1.4.163|2|1500 +1.3.6.1.2.1.2.2.1.4.164|2|1500 +1.3.6.1.2.1.2.2.1.4.165|2|1500 +1.3.6.1.2.1.2.2.1.4.166|2|1500 +1.3.6.1.2.1.2.2.1.4.167|2|1500 +1.3.6.1.2.1.2.2.1.4.168|2|1500 +1.3.6.1.2.1.2.2.1.4.169|2|1500 +1.3.6.1.2.1.2.2.1.4.170|2|1500 +1.3.6.1.2.1.2.2.1.4.172|2|1500 +1.3.6.1.2.1.2.2.1.4.173|2|1500 +1.3.6.1.2.1.2.2.1.4.174|2|1500 +1.3.6.1.2.1.2.2.1.4.175|2|1500 +1.3.6.1.2.1.2.2.1.4.176|2|1438 +1.3.6.1.2.1.2.2.1.4.177|2|15324 +1.3.6.1.2.1.2.2.1.4.178|2|15324 +1.3.6.1.2.1.2.2.1.4.179|2|1500 +1.3.6.1.2.1.2.2.1.4.180|2|1500 +1.3.6.1.2.1.2.2.1.4.181|2|1500 +1.3.6.1.2.1.2.2.1.4.182|2|1500 +1.3.6.1.2.1.2.2.1.4.183|2|1500 +1.3.6.1.2.1.2.2.1.4.184|2|1500 +1.3.6.1.2.1.2.2.1.4.185|2|1500 +1.3.6.1.2.1.2.2.1.4.186|2|1500 +1.3.6.1.2.1.2.2.1.4.187|2|1500 +1.3.6.1.2.1.2.2.1.4.188|2|1500 +1.3.6.1.2.1.2.2.1.4.189|2|1500 +1.3.6.1.2.1.2.2.1.6.1|4x|085B0E9A57D8 +1.3.6.1.2.1.2.2.1.6.2|4x|085B0E9A57B0 1.3.6.1.2.1.2.2.1.6.3|4x|000000000000 -1.3.6.1.2.1.2.2.1.6.4|4x|085B0E9A572D -1.3.6.1.2.1.2.2.1.6.5|4x|085B0E9A572E -1.3.6.1.2.1.2.2.1.6.6|4x|085B0E9A572F -1.3.6.1.2.1.2.2.1.6.7|4x|085B0E9A5730 -1.3.6.1.2.1.2.2.1.6.8|4x|085B0E9A5731 -1.3.6.1.2.1.2.2.1.6.9|4x|085B0E9A5732 -1.3.6.1.2.1.2.2.1.6.10|4x|085B0E9A5733 -1.3.6.1.2.1.2.2.1.6.11|4x|085B0E9A5740 -1.3.6.1.2.1.2.2.1.6.12|4x|085B0E9A5741 -1.3.6.1.2.1.2.2.1.6.13|4x|085B0E9A5742 -1.3.6.1.2.1.2.2.1.6.14|4x|085B0E9A5743 -1.3.6.1.2.1.2.2.1.6.15|4x|085B0E9A5744 -1.3.6.1.2.1.2.2.1.6.16|4x|085B0E9A5745 -1.3.6.1.2.1.2.2.1.6.17|4x|085B0E9A5746 -1.3.6.1.2.1.2.2.1.6.18|4x|085B0E9A5747 -1.3.6.1.2.1.2.2.1.6.19|4x|085B0E9A5734 -1.3.6.1.2.1.2.2.1.6.20|4x|085B0E9A5735 -1.3.6.1.2.1.2.2.1.6.21|4x|085B0E9A5736 -1.3.6.1.2.1.2.2.1.6.22|4x|085B0E9A5737 -1.3.6.1.2.1.2.2.1.6.23|4x|085B0E9A5738 -1.3.6.1.2.1.2.2.1.6.24|4x|085B0E9A5739 -1.3.6.1.2.1.2.2.1.6.25|4x|085B0E9A573A -1.3.6.1.2.1.2.2.1.6.26|4x|085B0E9A573B -1.3.6.1.2.1.2.2.1.6.27|4x|085B0E9A5748 -1.3.6.1.2.1.2.2.1.6.28|4x|085B0E9A5749 -1.3.6.1.2.1.2.2.1.6.29|4x|085B0E9A574A -1.3.6.1.2.1.2.2.1.6.30|4x|085B0E9A574B -1.3.6.1.2.1.2.2.1.6.31|4x|085B0E9A574C -1.3.6.1.2.1.2.2.1.6.32|4x|085B0E9A574D -1.3.6.1.2.1.2.2.1.6.33|4x|085B0E9A574E -1.3.6.1.2.1.2.2.1.6.34|4x|085B0E9A574F -1.3.6.1.2.1.2.2.1.6.35|4x|085B0E9A573C -1.3.6.1.2.1.2.2.1.6.36|4x|085B0E9A573D -1.3.6.1.2.1.2.2.1.6.37|4x|085B0E9A573E -1.3.6.1.2.1.2.2.1.6.38|4x|085B0E9A573F -1.3.6.1.2.1.2.2.1.6.39|4x|085B0E9A5750 -1.3.6.1.2.1.2.2.1.6.40|4x|085B0E9A5751 -1.3.6.1.2.1.2.2.1.6.41|4x|085B0E9A5752 -1.3.6.1.2.1.2.2.1.6.42|4x|085B0E9A5753 -1.3.6.1.2.1.2.2.1.6.43|4x|085B0E9A5755 +1.3.6.1.2.1.2.2.1.6.4|4x|085B0E9A57B1 +1.3.6.1.2.1.2.2.1.6.5|4x|085B0E9A57B2 +1.3.6.1.2.1.2.2.1.6.6|4x|085B0E9A57B3 +1.3.6.1.2.1.2.2.1.6.7|4x|085B0E9A57B4 +1.3.6.1.2.1.2.2.1.6.8|4x|085B0E9A57B5 +1.3.6.1.2.1.2.2.1.6.9|4x|085B0E9A57B6 +1.3.6.1.2.1.2.2.1.6.10|4x|085B0E9A57B7 +1.3.6.1.2.1.2.2.1.6.11|4x|085B0E9A57C4 +1.3.6.1.2.1.2.2.1.6.12|4x|085B0E9A57C5 +1.3.6.1.2.1.2.2.1.6.13|4x|085B0E9A57C6 +1.3.6.1.2.1.2.2.1.6.14|4x|085B0E9A57C7 +1.3.6.1.2.1.2.2.1.6.15|4x|085B0E9A57C8 +1.3.6.1.2.1.2.2.1.6.16|4x|085B0E9A57C9 +1.3.6.1.2.1.2.2.1.6.17|4x|085B0E9A57CA +1.3.6.1.2.1.2.2.1.6.18|4x|085B0E9A57CB +1.3.6.1.2.1.2.2.1.6.19|4x|085B0E9A57B8 +1.3.6.1.2.1.2.2.1.6.20|4x|085B0E9A57B9 +1.3.6.1.2.1.2.2.1.6.21|4x|085B0E9A57BA +1.3.6.1.2.1.2.2.1.6.22|4x|085B0E9A57BB +1.3.6.1.2.1.2.2.1.6.23|4x|085B0E9A57BC +1.3.6.1.2.1.2.2.1.6.24|4x|085B0E9A57BD +1.3.6.1.2.1.2.2.1.6.25|4x|085B0E9A57BE +1.3.6.1.2.1.2.2.1.6.26|4x|085B0E9A57BF +1.3.6.1.2.1.2.2.1.6.27|4x|085B0E9A57CC +1.3.6.1.2.1.2.2.1.6.28|4x|085B0E9A57CD +1.3.6.1.2.1.2.2.1.6.29|4x|085B0E9A57CE +1.3.6.1.2.1.2.2.1.6.30|4x|085B0E9A57CF +1.3.6.1.2.1.2.2.1.6.31|4x|085B0E9A57D0 +1.3.6.1.2.1.2.2.1.6.32|4x|085B0E9A57D1 +1.3.6.1.2.1.2.2.1.6.33|4x|085B0E9A57D2 +1.3.6.1.2.1.2.2.1.6.34|4x|085B0E9A57D3 +1.3.6.1.2.1.2.2.1.6.35|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.36|4x|085B0E9A57C1 +1.3.6.1.2.1.2.2.1.6.37|4x|085B0E9A57C2 +1.3.6.1.2.1.2.2.1.6.38|4x|085B0E9A57C3 +1.3.6.1.2.1.2.2.1.6.39|4x|085B0E9A57D4 +1.3.6.1.2.1.2.2.1.6.40|4x|085B0E9A57D5 +1.3.6.1.2.1.2.2.1.6.41|4x|085B0E9A57D6 +1.3.6.1.2.1.2.2.1.6.42|4x|085B0E9A57D7 +1.3.6.1.2.1.2.2.1.6.43|4x|085B0E9A57D9 1.3.6.1.2.1.2.2.1.6.44|4| -1.3.6.1.2.1.2.2.1.6.45|4x|025B0E9A572C -1.3.6.1.2.1.2.2.1.6.46|4x|025B0E9A572D -1.3.6.1.2.1.2.2.1.6.47|4x|025B0E9A5740 -1.3.6.1.2.1.2.2.1.6.48|4x|025B0E9A5741 -1.3.6.1.2.1.2.2.1.6.49|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.50|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.51|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.52|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.53|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.54|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.55|4x|00090F09001C +1.3.6.1.2.1.2.2.1.6.45|4x|025B0E9A57B0 +1.3.6.1.2.1.2.2.1.6.46|4x|025B0E9A57B1 +1.3.6.1.2.1.2.2.1.6.47|4x|025B0E9A57C4 +1.3.6.1.2.1.2.2.1.6.48|4x|025B0E9A57C5 +1.3.6.1.2.1.2.2.1.6.49|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.50|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.51|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.52|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.53|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.54|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.55|4x|085B0E9A57C0 1.3.6.1.2.1.2.2.1.6.56|4| -1.3.6.1.2.1.2.2.1.6.57|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.58|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.59|4x|00090F09001C +1.3.6.1.2.1.2.2.1.6.57|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.58|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.59|4x|085B0E9A57C0 1.3.6.1.2.1.2.2.1.6.60|4| -1.3.6.1.2.1.2.2.1.6.61|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.62|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.63|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.64|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.65|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.66|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.67|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.68|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.69|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.70|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.71|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.72|4| -1.3.6.1.2.1.2.2.1.6.73|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.74|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.75|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.76|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.77|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.78|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.79|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.80|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.81|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.82|4x|00090F09001C +1.3.6.1.2.1.2.2.1.6.61|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.62|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.63|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.64|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.65|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.66|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.67|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.68|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.69|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.70|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.71|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.72|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.73|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.74|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.75|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.76|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.77|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.78|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.79|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.80|4| +1.3.6.1.2.1.2.2.1.6.81|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.82|4x|085B0E9A57C0 1.3.6.1.2.1.2.2.1.6.83|4| -1.3.6.1.2.1.2.2.1.6.84|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.85|4x|025B0E9A572C -1.3.6.1.2.1.2.2.1.6.86|4x|025B0E9A572D -1.3.6.1.2.1.2.2.1.6.87|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.88|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.89|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.90|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.91|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.92|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.93|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.94|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.95|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.96|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.97|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.98|4x|00090F09001C +1.3.6.1.2.1.2.2.1.6.84|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.85|4x|025B0E9A57B0 +1.3.6.1.2.1.2.2.1.6.86|4x|025B0E9A57B1 +1.3.6.1.2.1.2.2.1.6.87|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.88|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.89|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.90|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.91|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.92|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.93|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.94|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.95|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.96|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.97|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.98|4x|085B0E9A57C0 1.3.6.1.2.1.2.2.1.6.99|4| -1.3.6.1.2.1.2.2.1.6.100|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.101|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.102|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.103|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.104|4x|00090F09001C +1.3.6.1.2.1.2.2.1.6.100|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.101|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.102|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.103|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.104|4| 1.3.6.1.2.1.2.2.1.6.105|4| -1.3.6.1.2.1.2.2.1.6.106|4x|00090F09001C +1.3.6.1.2.1.2.2.1.6.106|4x|085B0E9A57C0 1.3.6.1.2.1.2.2.1.6.107|4| -1.3.6.1.2.1.2.2.1.6.108|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.109|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.110|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.111|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.112|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.113|4x|00090F09001C +1.3.6.1.2.1.2.2.1.6.108|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.109|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.110|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.111|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.112|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.113|4x|085B0E9A57C0 1.3.6.1.2.1.2.2.1.6.114|4| -1.3.6.1.2.1.2.2.1.6.115|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.116|4x|00090F09001C +1.3.6.1.2.1.2.2.1.6.115|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.116|4x|085B0E9A57C0 1.3.6.1.2.1.2.2.1.6.117|4| -1.3.6.1.2.1.2.2.1.6.118|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.119|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.120|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.121|4| -1.3.6.1.2.1.2.2.1.6.122|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.123|4| -1.3.6.1.2.1.2.2.1.6.124|4x|025B0E9A572C -1.3.6.1.2.1.2.2.1.6.125|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.126|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.127|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.128|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.129|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.130|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.131|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.132|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.133|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.134|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.135|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.136|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.137|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.138|4x|025B0E9A572D -1.3.6.1.2.1.2.2.1.6.139|4| -1.3.6.1.2.1.2.2.1.6.140|4| -1.3.6.1.2.1.2.2.1.6.141|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.142|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.143|4x|00090F09001C +1.3.6.1.2.1.2.2.1.6.118|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.119|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.120|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.121|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.122|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.123|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.124|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.125|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.126|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.127|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.128|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.129|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.130|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.131|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.132|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.133|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.134|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.135|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.136|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.137|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.141|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.142|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.143|4x|085B0E9A57C0 1.3.6.1.2.1.2.2.1.6.144|4| -1.3.6.1.2.1.2.2.1.6.145|4x|025B0E9A572D -1.3.6.1.2.1.2.2.1.6.146|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.147|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.148|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.149|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.150|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.151|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.152|4x|025B0E9A572D -1.3.6.1.2.1.2.2.1.6.153|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.154|4x|025B0E9A572D -1.3.6.1.2.1.2.2.1.6.155|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.156|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.157|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.158|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.159|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.160|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.161|4x|00090F09001C -1.3.6.1.2.1.2.2.1.6.162|4x|00090F09001C +1.3.6.1.2.1.2.2.1.6.145|4x|025B0E9A57C5 +1.3.6.1.2.1.2.2.1.6.146|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.147|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.148|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.149|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.150|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.151|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.152|4x|025B0E9A57C5 +1.3.6.1.2.1.2.2.1.6.153|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.154|4x|025B0E9A57B1 +1.3.6.1.2.1.2.2.1.6.155|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.156|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.157|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.158|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.160|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.161|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.162|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.163|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.164|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.165|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.166|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.167|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.168|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.169|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.170|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.172|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.173|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.174|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.175|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.176|4| +1.3.6.1.2.1.2.2.1.6.177|4x|025B0E9A57C4 +1.3.6.1.2.1.2.2.1.6.178|4x|025B0E9A57C5 +1.3.6.1.2.1.2.2.1.6.179|4| +1.3.6.1.2.1.2.2.1.6.180|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.181|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.182|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.183|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.184|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.185|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.186|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.187|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.188|4x|085B0E9A57C0 +1.3.6.1.2.1.2.2.1.6.189|4x|085B0E9A57C0 1.3.6.1.2.1.2.2.1.7.1|2|1 1.3.6.1.2.1.2.2.1.7.2|2|2 1.3.6.1.2.1.2.2.1.7.3|2|2 @@ -698,8 +786,8 @@ 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|1 1.3.6.1.2.1.2.2.1.7.46|2|1 -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.47|2|1 +1.3.6.1.2.1.2.2.1.7.48|2|1 1.3.6.1.2.1.2.2.1.7.49|2|1 1.3.6.1.2.1.2.2.1.7.50|2|1 1.3.6.1.2.1.2.2.1.7.51|2|1 @@ -756,8 +844,8 @@ 1.3.6.1.2.1.2.2.1.7.102|2|1 1.3.6.1.2.1.2.2.1.7.103|2|1 1.3.6.1.2.1.2.2.1.7.104|2|1 -1.3.6.1.2.1.2.2.1.7.105|2|2 -1.3.6.1.2.1.2.2.1.7.106|2|1 +1.3.6.1.2.1.2.2.1.7.105|2|1 +1.3.6.1.2.1.2.2.1.7.106|2|2 1.3.6.1.2.1.2.2.1.7.107|2|1 1.3.6.1.2.1.2.2.1.7.108|2|1 1.3.6.1.2.1.2.2.1.7.109|2|1 @@ -789,9 +877,6 @@ 1.3.6.1.2.1.2.2.1.7.135|2|1 1.3.6.1.2.1.2.2.1.7.136|2|1 1.3.6.1.2.1.2.2.1.7.137|2|1 -1.3.6.1.2.1.2.2.1.7.138|2|1 -1.3.6.1.2.1.2.2.1.7.139|2|1 -1.3.6.1.2.1.2.2.1.7.140|2|1 1.3.6.1.2.1.2.2.1.7.141|2|1 1.3.6.1.2.1.2.2.1.7.142|2|1 1.3.6.1.2.1.2.2.1.7.143|2|1 @@ -799,7 +884,7 @@ 1.3.6.1.2.1.2.2.1.7.145|2|1 1.3.6.1.2.1.2.2.1.7.146|2|1 1.3.6.1.2.1.2.2.1.7.147|2|1 -1.3.6.1.2.1.2.2.1.7.148|2|1 +1.3.6.1.2.1.2.2.1.7.148|2|2 1.3.6.1.2.1.2.2.1.7.149|2|1 1.3.6.1.2.1.2.2.1.7.150|2|1 1.3.6.1.2.1.2.2.1.7.151|2|1 @@ -810,10 +895,35 @@ 1.3.6.1.2.1.2.2.1.7.156|2|1 1.3.6.1.2.1.2.2.1.7.157|2|1 1.3.6.1.2.1.2.2.1.7.158|2|1 -1.3.6.1.2.1.2.2.1.7.159|2|1 1.3.6.1.2.1.2.2.1.7.160|2|1 1.3.6.1.2.1.2.2.1.7.161|2|1 1.3.6.1.2.1.2.2.1.7.162|2|1 +1.3.6.1.2.1.2.2.1.7.163|2|1 +1.3.6.1.2.1.2.2.1.7.164|2|1 +1.3.6.1.2.1.2.2.1.7.165|2|1 +1.3.6.1.2.1.2.2.1.7.166|2|1 +1.3.6.1.2.1.2.2.1.7.167|2|1 +1.3.6.1.2.1.2.2.1.7.168|2|1 +1.3.6.1.2.1.2.2.1.7.169|2|1 +1.3.6.1.2.1.2.2.1.7.170|2|1 +1.3.6.1.2.1.2.2.1.7.172|2|1 +1.3.6.1.2.1.2.2.1.7.173|2|1 +1.3.6.1.2.1.2.2.1.7.174|2|1 +1.3.6.1.2.1.2.2.1.7.175|2|1 +1.3.6.1.2.1.2.2.1.7.176|2|1 +1.3.6.1.2.1.2.2.1.7.177|2|1 +1.3.6.1.2.1.2.2.1.7.178|2|1 +1.3.6.1.2.1.2.2.1.7.179|2|1 +1.3.6.1.2.1.2.2.1.7.180|2|1 +1.3.6.1.2.1.2.2.1.7.181|2|1 +1.3.6.1.2.1.2.2.1.7.182|2|1 +1.3.6.1.2.1.2.2.1.7.183|2|1 +1.3.6.1.2.1.2.2.1.7.184|2|1 +1.3.6.1.2.1.2.2.1.7.185|2|1 +1.3.6.1.2.1.2.2.1.7.186|2|1 +1.3.6.1.2.1.2.2.1.7.187|2|1 +1.3.6.1.2.1.2.2.1.7.188|2|1 +1.3.6.1.2.1.2.2.1.7.189|2|1 1.3.6.1.2.1.2.2.1.8.1|2|1 1.3.6.1.2.1.2.2.1.8.2|2|2 1.3.6.1.2.1.2.2.1.8.3|2|2 @@ -860,8 +970,8 @@ 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|1 1.3.6.1.2.1.2.2.1.8.46|2|1 -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.47|2|1 +1.3.6.1.2.1.2.2.1.8.48|2|1 1.3.6.1.2.1.2.2.1.8.49|2|1 1.3.6.1.2.1.2.2.1.8.50|2|1 1.3.6.1.2.1.2.2.1.8.51|2|1 @@ -893,7 +1003,7 @@ 1.3.6.1.2.1.2.2.1.8.77|2|1 1.3.6.1.2.1.2.2.1.8.78|2|1 1.3.6.1.2.1.2.2.1.8.79|2|1 -1.3.6.1.2.1.2.2.1.8.80|2|1 +1.3.6.1.2.1.2.2.1.8.80|2|2 1.3.6.1.2.1.2.2.1.8.81|2|1 1.3.6.1.2.1.2.2.1.8.82|2|1 1.3.6.1.2.1.2.2.1.8.83|2|1 @@ -919,7 +1029,7 @@ 1.3.6.1.2.1.2.2.1.8.103|2|1 1.3.6.1.2.1.2.2.1.8.104|2|1 1.3.6.1.2.1.2.2.1.8.105|2|2 -1.3.6.1.2.1.2.2.1.8.106|2|1 +1.3.6.1.2.1.2.2.1.8.106|2|2 1.3.6.1.2.1.2.2.1.8.107|2|1 1.3.6.1.2.1.2.2.1.8.108|2|1 1.3.6.1.2.1.2.2.1.8.109|2|1 @@ -951,9 +1061,6 @@ 1.3.6.1.2.1.2.2.1.8.135|2|1 1.3.6.1.2.1.2.2.1.8.136|2|1 1.3.6.1.2.1.2.2.1.8.137|2|1 -1.3.6.1.2.1.2.2.1.8.138|2|1 -1.3.6.1.2.1.2.2.1.8.139|2|1 -1.3.6.1.2.1.2.2.1.8.140|2|1 1.3.6.1.2.1.2.2.1.8.141|2|1 1.3.6.1.2.1.2.2.1.8.142|2|1 1.3.6.1.2.1.2.2.1.8.143|2|1 @@ -961,7 +1068,7 @@ 1.3.6.1.2.1.2.2.1.8.145|2|1 1.3.6.1.2.1.2.2.1.8.146|2|1 1.3.6.1.2.1.2.2.1.8.147|2|1 -1.3.6.1.2.1.2.2.1.8.148|2|1 +1.3.6.1.2.1.2.2.1.8.148|2|2 1.3.6.1.2.1.2.2.1.8.149|2|1 1.3.6.1.2.1.2.2.1.8.150|2|1 1.3.6.1.2.1.2.2.1.8.151|2|1 @@ -972,10 +1079,35 @@ 1.3.6.1.2.1.2.2.1.8.156|2|1 1.3.6.1.2.1.2.2.1.8.157|2|1 1.3.6.1.2.1.2.2.1.8.158|2|1 -1.3.6.1.2.1.2.2.1.8.159|2|1 1.3.6.1.2.1.2.2.1.8.160|2|1 1.3.6.1.2.1.2.2.1.8.161|2|1 1.3.6.1.2.1.2.2.1.8.162|2|1 +1.3.6.1.2.1.2.2.1.8.163|2|1 +1.3.6.1.2.1.2.2.1.8.164|2|1 +1.3.6.1.2.1.2.2.1.8.165|2|1 +1.3.6.1.2.1.2.2.1.8.166|2|1 +1.3.6.1.2.1.2.2.1.8.167|2|1 +1.3.6.1.2.1.2.2.1.8.168|2|1 +1.3.6.1.2.1.2.2.1.8.169|2|1 +1.3.6.1.2.1.2.2.1.8.170|2|1 +1.3.6.1.2.1.2.2.1.8.172|2|1 +1.3.6.1.2.1.2.2.1.8.173|2|1 +1.3.6.1.2.1.2.2.1.8.174|2|1 +1.3.6.1.2.1.2.2.1.8.175|2|1 +1.3.6.1.2.1.2.2.1.8.176|2|1 +1.3.6.1.2.1.2.2.1.8.177|2|1 +1.3.6.1.2.1.2.2.1.8.178|2|1 +1.3.6.1.2.1.2.2.1.8.179|2|1 +1.3.6.1.2.1.2.2.1.8.180|2|1 +1.3.6.1.2.1.2.2.1.8.181|2|1 +1.3.6.1.2.1.2.2.1.8.182|2|1 +1.3.6.1.2.1.2.2.1.8.183|2|1 +1.3.6.1.2.1.2.2.1.8.184|2|1 +1.3.6.1.2.1.2.2.1.8.185|2|1 +1.3.6.1.2.1.2.2.1.8.186|2|1 +1.3.6.1.2.1.2.2.1.8.187|2|1 +1.3.6.1.2.1.2.2.1.8.188|2|1 +1.3.6.1.2.1.2.2.1.8.189|2|1 1.3.6.1.2.1.2.2.1.9.1|67|0 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|0 @@ -1113,9 +1245,6 @@ 1.3.6.1.2.1.2.2.1.9.135|67|0 1.3.6.1.2.1.2.2.1.9.136|67|0 1.3.6.1.2.1.2.2.1.9.137|67|0 -1.3.6.1.2.1.2.2.1.9.138|67|0 -1.3.6.1.2.1.2.2.1.9.139|67|0 -1.3.6.1.2.1.2.2.1.9.140|67|0 1.3.6.1.2.1.2.2.1.9.141|67|0 1.3.6.1.2.1.2.2.1.9.142|67|0 1.3.6.1.2.1.2.2.1.9.143|67|0 @@ -1134,10 +1263,35 @@ 1.3.6.1.2.1.2.2.1.9.156|67|0 1.3.6.1.2.1.2.2.1.9.157|67|0 1.3.6.1.2.1.2.2.1.9.158|67|0 -1.3.6.1.2.1.2.2.1.9.159|67|0 1.3.6.1.2.1.2.2.1.9.160|67|0 1.3.6.1.2.1.2.2.1.9.161|67|0 1.3.6.1.2.1.2.2.1.9.162|67|0 +1.3.6.1.2.1.2.2.1.9.163|67|0 +1.3.6.1.2.1.2.2.1.9.164|67|0 +1.3.6.1.2.1.2.2.1.9.165|67|0 +1.3.6.1.2.1.2.2.1.9.166|67|0 +1.3.6.1.2.1.2.2.1.9.167|67|0 +1.3.6.1.2.1.2.2.1.9.168|67|0 +1.3.6.1.2.1.2.2.1.9.169|67|0 +1.3.6.1.2.1.2.2.1.9.170|67|0 +1.3.6.1.2.1.2.2.1.9.172|67|0 +1.3.6.1.2.1.2.2.1.9.173|67|0 +1.3.6.1.2.1.2.2.1.9.174|67|0 +1.3.6.1.2.1.2.2.1.9.175|67|0 +1.3.6.1.2.1.2.2.1.9.176|67|0 +1.3.6.1.2.1.2.2.1.9.177|67|0 +1.3.6.1.2.1.2.2.1.9.178|67|0 +1.3.6.1.2.1.2.2.1.9.179|67|0 +1.3.6.1.2.1.2.2.1.9.180|67|0 +1.3.6.1.2.1.2.2.1.9.181|67|0 +1.3.6.1.2.1.2.2.1.9.182|67|0 +1.3.6.1.2.1.2.2.1.9.183|67|0 +1.3.6.1.2.1.2.2.1.9.184|67|0 +1.3.6.1.2.1.2.2.1.9.185|67|0 +1.3.6.1.2.1.2.2.1.9.186|67|0 +1.3.6.1.2.1.2.2.1.9.187|67|0 +1.3.6.1.2.1.2.2.1.9.188|67|0 +1.3.6.1.2.1.2.2.1.9.189|67|0 1.3.6.1.2.1.2.2.1.13.1|65|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 @@ -1251,10 +1405,10 @@ 1.3.6.1.2.1.2.2.1.13.111|65|0 1.3.6.1.2.1.2.2.1.13.112|65|0 1.3.6.1.2.1.2.2.1.13.113|65|0 -1.3.6.1.2.1.2.2.1.13.114|65|900 +1.3.6.1.2.1.2.2.1.13.114|65|0 1.3.6.1.2.1.2.2.1.13.115|65|0 1.3.6.1.2.1.2.2.1.13.116|65|0 -1.3.6.1.2.1.2.2.1.13.117|65|900 +1.3.6.1.2.1.2.2.1.13.117|65|0 1.3.6.1.2.1.2.2.1.13.118|65|0 1.3.6.1.2.1.2.2.1.13.119|65|0 1.3.6.1.2.1.2.2.1.13.120|65|0 @@ -1275,9 +1429,6 @@ 1.3.6.1.2.1.2.2.1.13.135|65|0 1.3.6.1.2.1.2.2.1.13.136|65|0 1.3.6.1.2.1.2.2.1.13.137|65|0 -1.3.6.1.2.1.2.2.1.13.138|65|0 -1.3.6.1.2.1.2.2.1.13.139|65|900 -1.3.6.1.2.1.2.2.1.13.140|65|0 1.3.6.1.2.1.2.2.1.13.141|65|0 1.3.6.1.2.1.2.2.1.13.142|65|0 1.3.6.1.2.1.2.2.1.13.143|65|0 @@ -1296,10 +1447,35 @@ 1.3.6.1.2.1.2.2.1.13.156|65|0 1.3.6.1.2.1.2.2.1.13.157|65|0 1.3.6.1.2.1.2.2.1.13.158|65|0 -1.3.6.1.2.1.2.2.1.13.159|65|0 1.3.6.1.2.1.2.2.1.13.160|65|0 1.3.6.1.2.1.2.2.1.13.161|65|0 1.3.6.1.2.1.2.2.1.13.162|65|0 +1.3.6.1.2.1.2.2.1.13.163|65|0 +1.3.6.1.2.1.2.2.1.13.164|65|0 +1.3.6.1.2.1.2.2.1.13.165|65|0 +1.3.6.1.2.1.2.2.1.13.166|65|0 +1.3.6.1.2.1.2.2.1.13.167|65|0 +1.3.6.1.2.1.2.2.1.13.168|65|0 +1.3.6.1.2.1.2.2.1.13.169|65|0 +1.3.6.1.2.1.2.2.1.13.170|65|0 +1.3.6.1.2.1.2.2.1.13.172|65|0 +1.3.6.1.2.1.2.2.1.13.173|65|0 +1.3.6.1.2.1.2.2.1.13.174|65|0 +1.3.6.1.2.1.2.2.1.13.175|65|0 +1.3.6.1.2.1.2.2.1.13.176|65|0 +1.3.6.1.2.1.2.2.1.13.177|65|0 +1.3.6.1.2.1.2.2.1.13.178|65|0 +1.3.6.1.2.1.2.2.1.13.179|65|0 +1.3.6.1.2.1.2.2.1.13.180|65|0 +1.3.6.1.2.1.2.2.1.13.181|65|0 +1.3.6.1.2.1.2.2.1.13.182|65|0 +1.3.6.1.2.1.2.2.1.13.183|65|0 +1.3.6.1.2.1.2.2.1.13.184|65|0 +1.3.6.1.2.1.2.2.1.13.185|65|0 +1.3.6.1.2.1.2.2.1.13.186|65|0 +1.3.6.1.2.1.2.2.1.13.187|65|0 +1.3.6.1.2.1.2.2.1.13.188|65|0 +1.3.6.1.2.1.2.2.1.13.189|65|0 1.3.6.1.2.1.2.2.1.14.1|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 @@ -1359,7 +1535,7 @@ 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.14.59|65|0 -1.3.6.1.2.1.2.2.1.14.60|65|2131 +1.3.6.1.2.1.2.2.1.14.60|65|0 1.3.6.1.2.1.2.2.1.14.61|65|0 1.3.6.1.2.1.2.2.1.14.62|65|0 1.3.6.1.2.1.2.2.1.14.63|65|0 @@ -1413,14 +1589,14 @@ 1.3.6.1.2.1.2.2.1.14.111|65|0 1.3.6.1.2.1.2.2.1.14.112|65|0 1.3.6.1.2.1.2.2.1.14.113|65|0 -1.3.6.1.2.1.2.2.1.14.114|65|15 +1.3.6.1.2.1.2.2.1.14.114|65|0 1.3.6.1.2.1.2.2.1.14.115|65|0 1.3.6.1.2.1.2.2.1.14.116|65|0 -1.3.6.1.2.1.2.2.1.14.117|65|15 +1.3.6.1.2.1.2.2.1.14.117|65|0 1.3.6.1.2.1.2.2.1.14.118|65|0 1.3.6.1.2.1.2.2.1.14.119|65|0 1.3.6.1.2.1.2.2.1.14.120|65|0 -1.3.6.1.2.1.2.2.1.14.121|65|4071 +1.3.6.1.2.1.2.2.1.14.121|65|0 1.3.6.1.2.1.2.2.1.14.122|65|0 1.3.6.1.2.1.2.2.1.14.123|65|0 1.3.6.1.2.1.2.2.1.14.124|65|0 @@ -1437,13 +1613,10 @@ 1.3.6.1.2.1.2.2.1.14.135|65|0 1.3.6.1.2.1.2.2.1.14.136|65|0 1.3.6.1.2.1.2.2.1.14.137|65|0 -1.3.6.1.2.1.2.2.1.14.138|65|0 -1.3.6.1.2.1.2.2.1.14.139|65|15 -1.3.6.1.2.1.2.2.1.14.140|65|0 1.3.6.1.2.1.2.2.1.14.141|65|0 1.3.6.1.2.1.2.2.1.14.142|65|0 1.3.6.1.2.1.2.2.1.14.143|65|0 -1.3.6.1.2.1.2.2.1.14.144|65|6 +1.3.6.1.2.1.2.2.1.14.144|65|0 1.3.6.1.2.1.2.2.1.14.145|65|0 1.3.6.1.2.1.2.2.1.14.146|65|0 1.3.6.1.2.1.2.2.1.14.147|65|0 @@ -1458,10 +1631,35 @@ 1.3.6.1.2.1.2.2.1.14.156|65|0 1.3.6.1.2.1.2.2.1.14.157|65|0 1.3.6.1.2.1.2.2.1.14.158|65|0 -1.3.6.1.2.1.2.2.1.14.159|65|0 1.3.6.1.2.1.2.2.1.14.160|65|0 1.3.6.1.2.1.2.2.1.14.161|65|0 1.3.6.1.2.1.2.2.1.14.162|65|0 +1.3.6.1.2.1.2.2.1.14.163|65|0 +1.3.6.1.2.1.2.2.1.14.164|65|0 +1.3.6.1.2.1.2.2.1.14.165|65|0 +1.3.6.1.2.1.2.2.1.14.166|65|0 +1.3.6.1.2.1.2.2.1.14.167|65|0 +1.3.6.1.2.1.2.2.1.14.168|65|0 +1.3.6.1.2.1.2.2.1.14.169|65|0 +1.3.6.1.2.1.2.2.1.14.170|65|0 +1.3.6.1.2.1.2.2.1.14.172|65|0 +1.3.6.1.2.1.2.2.1.14.173|65|0 +1.3.6.1.2.1.2.2.1.14.174|65|0 +1.3.6.1.2.1.2.2.1.14.175|65|0 +1.3.6.1.2.1.2.2.1.14.176|65|0 +1.3.6.1.2.1.2.2.1.14.177|65|0 +1.3.6.1.2.1.2.2.1.14.178|65|0 +1.3.6.1.2.1.2.2.1.14.179|65|0 +1.3.6.1.2.1.2.2.1.14.180|65|0 +1.3.6.1.2.1.2.2.1.14.181|65|0 +1.3.6.1.2.1.2.2.1.14.182|65|0 +1.3.6.1.2.1.2.2.1.14.183|65|0 +1.3.6.1.2.1.2.2.1.14.184|65|0 +1.3.6.1.2.1.2.2.1.14.185|65|0 +1.3.6.1.2.1.2.2.1.14.186|65|0 +1.3.6.1.2.1.2.2.1.14.187|65|0 +1.3.6.1.2.1.2.2.1.14.188|65|0 +1.3.6.1.2.1.2.2.1.14.189|65|0 1.3.6.1.2.1.2.2.1.19.1|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 @@ -1565,7 +1763,7 @@ 1.3.6.1.2.1.2.2.1.19.101|65|0 1.3.6.1.2.1.2.2.1.19.102|65|0 1.3.6.1.2.1.2.2.1.19.103|65|0 -1.3.6.1.2.1.2.2.1.19.104|65|0 +1.3.6.1.2.1.2.2.1.19.104|65|2 1.3.6.1.2.1.2.2.1.19.105|65|0 1.3.6.1.2.1.2.2.1.19.106|65|0 1.3.6.1.2.1.2.2.1.19.107|65|0 @@ -1584,7 +1782,7 @@ 1.3.6.1.2.1.2.2.1.19.120|65|0 1.3.6.1.2.1.2.2.1.19.121|65|0 1.3.6.1.2.1.2.2.1.19.122|65|0 -1.3.6.1.2.1.2.2.1.19.123|65|2 +1.3.6.1.2.1.2.2.1.19.123|65|0 1.3.6.1.2.1.2.2.1.19.124|65|0 1.3.6.1.2.1.2.2.1.19.125|65|0 1.3.6.1.2.1.2.2.1.19.126|65|0 @@ -1599,9 +1797,6 @@ 1.3.6.1.2.1.2.2.1.19.135|65|0 1.3.6.1.2.1.2.2.1.19.136|65|0 1.3.6.1.2.1.2.2.1.19.137|65|0 -1.3.6.1.2.1.2.2.1.19.138|65|0 -1.3.6.1.2.1.2.2.1.19.139|65|0 -1.3.6.1.2.1.2.2.1.19.140|65|0 1.3.6.1.2.1.2.2.1.19.141|65|0 1.3.6.1.2.1.2.2.1.19.142|65|0 1.3.6.1.2.1.2.2.1.19.143|65|0 @@ -1620,10 +1815,35 @@ 1.3.6.1.2.1.2.2.1.19.156|65|0 1.3.6.1.2.1.2.2.1.19.157|65|0 1.3.6.1.2.1.2.2.1.19.158|65|0 -1.3.6.1.2.1.2.2.1.19.159|65|0 1.3.6.1.2.1.2.2.1.19.160|65|0 1.3.6.1.2.1.2.2.1.19.161|65|0 1.3.6.1.2.1.2.2.1.19.162|65|0 +1.3.6.1.2.1.2.2.1.19.163|65|0 +1.3.6.1.2.1.2.2.1.19.164|65|0 +1.3.6.1.2.1.2.2.1.19.165|65|0 +1.3.6.1.2.1.2.2.1.19.166|65|0 +1.3.6.1.2.1.2.2.1.19.167|65|0 +1.3.6.1.2.1.2.2.1.19.168|65|0 +1.3.6.1.2.1.2.2.1.19.169|65|0 +1.3.6.1.2.1.2.2.1.19.170|65|0 +1.3.6.1.2.1.2.2.1.19.172|65|0 +1.3.6.1.2.1.2.2.1.19.173|65|0 +1.3.6.1.2.1.2.2.1.19.174|65|0 +1.3.6.1.2.1.2.2.1.19.175|65|0 +1.3.6.1.2.1.2.2.1.19.176|65|0 +1.3.6.1.2.1.2.2.1.19.177|65|0 +1.3.6.1.2.1.2.2.1.19.178|65|0 +1.3.6.1.2.1.2.2.1.19.179|65|0 +1.3.6.1.2.1.2.2.1.19.180|65|0 +1.3.6.1.2.1.2.2.1.19.181|65|0 +1.3.6.1.2.1.2.2.1.19.182|65|0 +1.3.6.1.2.1.2.2.1.19.183|65|0 +1.3.6.1.2.1.2.2.1.19.184|65|0 +1.3.6.1.2.1.2.2.1.19.185|65|0 +1.3.6.1.2.1.2.2.1.19.186|65|0 +1.3.6.1.2.1.2.2.1.19.187|65|0 +1.3.6.1.2.1.2.2.1.19.188|65|0 +1.3.6.1.2.1.2.2.1.19.189|65|0 1.3.6.1.2.1.2.2.1.20.1|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 @@ -1683,7 +1903,7 @@ 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.2.2.1.20.59|65|0 -1.3.6.1.2.1.2.2.1.20.60|65|595 +1.3.6.1.2.1.2.2.1.20.60|65|0 1.3.6.1.2.1.2.2.1.20.61|65|0 1.3.6.1.2.1.2.2.1.20.62|65|0 1.3.6.1.2.1.2.2.1.20.63|65|0 @@ -1744,7 +1964,7 @@ 1.3.6.1.2.1.2.2.1.20.118|65|0 1.3.6.1.2.1.2.2.1.20.119|65|0 1.3.6.1.2.1.2.2.1.20.120|65|0 -1.3.6.1.2.1.2.2.1.20.121|65|3241 +1.3.6.1.2.1.2.2.1.20.121|65|0 1.3.6.1.2.1.2.2.1.20.122|65|0 1.3.6.1.2.1.2.2.1.20.123|65|0 1.3.6.1.2.1.2.2.1.20.124|65|0 @@ -1761,13 +1981,10 @@ 1.3.6.1.2.1.2.2.1.20.135|65|0 1.3.6.1.2.1.2.2.1.20.136|65|0 1.3.6.1.2.1.2.2.1.20.137|65|0 -1.3.6.1.2.1.2.2.1.20.138|65|0 -1.3.6.1.2.1.2.2.1.20.139|65|0 -1.3.6.1.2.1.2.2.1.20.140|65|0 1.3.6.1.2.1.2.2.1.20.141|65|0 1.3.6.1.2.1.2.2.1.20.142|65|0 1.3.6.1.2.1.2.2.1.20.143|65|0 -1.3.6.1.2.1.2.2.1.20.144|65|1 +1.3.6.1.2.1.2.2.1.20.144|65|0 1.3.6.1.2.1.2.2.1.20.145|65|0 1.3.6.1.2.1.2.2.1.20.146|65|0 1.3.6.1.2.1.2.2.1.20.147|65|0 @@ -1782,15959 +1999,233 @@ 1.3.6.1.2.1.2.2.1.20.156|65|0 1.3.6.1.2.1.2.2.1.20.157|65|0 1.3.6.1.2.1.2.2.1.20.158|65|0 -1.3.6.1.2.1.2.2.1.20.159|65|0 1.3.6.1.2.1.2.2.1.20.160|65|0 1.3.6.1.2.1.2.2.1.20.161|65|0 1.3.6.1.2.1.2.2.1.20.162|65|0 -1.3.6.1.2.1.4.20.1.2.10.0.0.20|2|113 -1.3.6.1.2.1.4.20.1.2.10.0.1.1|2|127 -1.3.6.1.2.1.4.20.1.2.10.0.1.5|2|128 -1.3.6.1.2.1.4.20.1.2.10.8.0.1|2|116 -1.3.6.1.2.1.4.20.1.2.10.16.0.1|2|122 -1.3.6.1.2.1.4.20.1.2.10.16.0.24|2|85 -1.3.6.1.2.1.4.20.1.2.10.16.0.25|2|86 -1.3.6.1.2.1.4.20.1.2.10.16.0.26|2|124 -1.3.6.1.2.1.4.20.1.2.10.16.0.27|2|138 -1.3.6.1.2.1.4.20.1.2.10.16.0.33|2|159 -1.3.6.1.2.1.4.20.1.2.127.0.0.1|2|114 -1.3.6.1.2.1.4.20.1.2.136.231.0.1|2|114 -1.3.6.1.2.1.4.20.1.2.136.231.0.2|2|117 -1.3.6.1.2.1.4.20.1.2.136.231.0.3|2|139 -1.3.6.1.2.1.4.20.1.2.136.231.1.1|2|145 -1.3.6.1.2.1.4.20.1.2.136.231.1.129|2|152 -1.3.6.1.2.1.4.20.1.2.136.231.2.33|2|51 -1.3.6.1.2.1.4.20.1.2.136.231.2.65|2|52 -1.3.6.1.2.1.4.20.1.2.136.231.2.97|2|97 -1.3.6.1.2.1.4.20.1.2.136.231.2.113|2|120 -1.3.6.1.2.1.4.20.1.2.136.231.2.129|2|155 -1.3.6.1.2.1.4.20.1.2.136.231.2.169|2|151 -1.3.6.1.2.1.4.20.1.2.136.231.2.177|2|157 -1.3.6.1.2.1.4.20.1.2.136.231.2.193|2|162 -1.3.6.1.2.1.4.20.1.2.136.231.3.1|2|118 -1.3.6.1.2.1.4.20.1.2.136.231.3.33|2|149 -1.3.6.1.2.1.4.20.1.2.136.231.3.41|2|150 -1.3.6.1.2.1.4.20.1.2.136.231.3.64|2|101 -1.3.6.1.2.1.4.20.1.2.136.231.3.66|2|108 -1.3.6.1.2.1.4.20.1.2.136.231.3.68|2|125 -1.3.6.1.2.1.4.20.1.2.136.231.3.70|2|129 -1.3.6.1.2.1.4.20.1.2.136.231.3.72|2|130 -1.3.6.1.2.1.4.20.1.2.136.231.3.74|2|131 -1.3.6.1.2.1.4.20.1.2.136.231.3.76|2|132 -1.3.6.1.2.1.4.20.1.2.136.231.3.78|2|133 -1.3.6.1.2.1.4.20.1.2.136.231.3.80|2|134 -1.3.6.1.2.1.4.20.1.2.136.231.3.82|2|135 -1.3.6.1.2.1.4.20.1.2.136.231.3.84|2|147 -1.3.6.1.2.1.4.20.1.2.136.231.4.1|2|153 -1.3.6.1.2.1.4.20.1.2.136.231.6.1|2|154 -1.3.6.1.2.1.4.20.1.2.136.231.8.1|2|58 -1.3.6.1.2.1.4.20.1.2.136.231.12.1|2|63 -1.3.6.1.2.1.4.20.1.2.136.231.15.1|2|59 -1.3.6.1.2.1.4.20.1.2.136.231.16.1|2|119 -1.3.6.1.2.1.4.20.1.2.136.231.16.33|2|156 -1.3.6.1.2.1.4.20.1.2.136.231.19.1|2|106 -1.3.6.1.2.1.4.20.1.2.136.231.20.1|2|126 -1.3.6.1.2.1.4.20.1.2.136.231.26.1|2|54 -1.3.6.1.2.1.4.20.1.2.136.231.27.1|2|100 -1.3.6.1.2.1.4.20.1.2.136.231.28.1|2|53 -1.3.6.1.2.1.4.20.1.2.136.231.30.1|2|1 -1.3.6.1.2.1.4.20.1.2.136.231.32.1|2|55 -1.3.6.1.2.1.4.20.1.2.136.231.40.1|2|76 -1.3.6.1.2.1.4.20.1.2.136.231.40.17|2|77 -1.3.6.1.2.1.4.20.1.2.136.231.40.49|2|79 -1.3.6.1.2.1.4.20.1.2.136.231.40.65|2|80 -1.3.6.1.2.1.4.20.1.2.136.231.40.81|2|81 -1.3.6.1.2.1.4.20.1.2.136.231.40.97|2|82 -1.3.6.1.2.1.4.20.1.2.136.231.40.129|2|84 -1.3.6.1.2.1.4.20.1.2.136.231.40.225|2|87 -1.3.6.1.2.1.4.20.1.2.136.231.41.65|2|88 -1.3.6.1.2.1.4.20.1.2.136.231.41.97|2|89 -1.3.6.1.2.1.4.20.1.2.136.231.41.129|2|102 -1.3.6.1.2.1.4.20.1.2.136.231.45.1|2|103 -1.3.6.1.2.1.4.20.1.2.136.231.48.1|2|70 -1.3.6.1.2.1.4.20.1.2.136.231.50.1|2|68 -1.3.6.1.2.1.4.20.1.2.136.231.52.1|2|69 -1.3.6.1.2.1.4.20.1.2.136.231.56.1|2|65 -1.3.6.1.2.1.4.20.1.2.136.231.58.1|2|66 -1.3.6.1.2.1.4.20.1.2.136.231.62.1|2|95 -1.3.6.1.2.1.4.20.1.2.136.231.68.1|2|62 -1.3.6.1.2.1.4.20.1.2.136.231.70.1|2|91 -1.3.6.1.2.1.4.20.1.2.136.231.71.1|2|93 -1.3.6.1.2.1.4.20.1.2.136.231.72.1|2|109 -1.3.6.1.2.1.4.20.1.2.136.231.73.1|2|110 -1.3.6.1.2.1.4.20.1.2.136.231.74.1|2|111 -1.3.6.1.2.1.4.20.1.2.136.231.75.1|2|112 -1.3.6.1.2.1.4.20.1.2.136.231.76.1|2|74 -1.3.6.1.2.1.4.20.1.2.136.231.80.1|2|90 -1.3.6.1.2.1.4.20.1.2.136.231.88.1|2|94 -1.3.6.1.2.1.4.20.1.2.136.231.99.1|2|73 -1.3.6.1.2.1.4.20.1.2.136.231.100.1|2|141 -1.3.6.1.2.1.4.20.1.2.136.231.101.1|2|142 -1.3.6.1.2.1.4.20.1.2.136.231.102.1|2|143 -1.3.6.1.2.1.4.20.1.2.136.231.128.1|2|67 -1.3.6.1.2.1.4.20.1.2.136.231.129.1|2|71 -1.3.6.1.2.1.4.20.1.2.136.231.180.1|2|104 -1.3.6.1.2.1.4.20.1.2.136.231.200.1|2|98 -1.3.6.1.2.1.4.20.1.2.136.231.224.1|2|148 -1.3.6.1.2.1.4.20.1.2.136.231.234.1|2|75 -1.3.6.1.2.1.4.20.1.2.136.231.244.1|2|57 -1.3.6.1.2.1.4.20.1.2.136.231.245.17|2|61 -1.3.6.1.2.1.4.20.1.2.136.231.245.33|2|96 -1.3.6.1.2.1.4.20.1.2.136.231.245.65|2|64 -1.3.6.1.2.1.4.20.1.2.145.145.20.174|2|37 -1.3.6.1.2.1.4.20.1.2.145.145.26.34|2|38 -1.3.6.1.2.1.4.20.1.2.172.19.1.4|2|43 -1.3.6.1.2.1.4.20.1.2.172.19.1.5|2|43 -1.3.6.1.2.1.4.20.1.2.172.23.0.1|2|115 -1.3.6.1.2.1.4.20.1.2.172.23.0.33|2|92 -1.3.6.1.2.1.4.20.1.2.172.23.1.1|2|136 -1.3.6.1.2.1.4.20.1.2.172.23.2.1|2|137 -1.3.6.1.2.1.4.20.1.2.172.24.0.1|2|158 -1.3.6.1.2.1.4.20.1.2.172.24.0.129|2|160 -1.3.6.1.2.1.4.20.1.2.172.24.5.1|2|161 -1.3.6.1.2.1.4.20.1.2.172.25.0.1|2|50 -1.3.6.1.2.1.4.20.1.2.172.25.0.17|2|78 -1.3.6.1.2.1.4.20.1.3.10.0.0.20|64|255.255.255.254 -1.3.6.1.2.1.4.20.1.3.10.0.1.1|64|255.255.255.252 -1.3.6.1.2.1.4.20.1.3.10.0.1.5|64|255.255.255.252 -1.3.6.1.2.1.4.20.1.3.10.8.0.1|64|255.255.255.240 -1.3.6.1.2.1.4.20.1.3.10.16.0.1|64|255.255.255.240 -1.3.6.1.2.1.4.20.1.3.10.16.0.24|64|255.255.255.254 -1.3.6.1.2.1.4.20.1.3.10.16.0.25|64|255.255.255.254 -1.3.6.1.2.1.4.20.1.3.10.16.0.26|64|255.255.255.254 -1.3.6.1.2.1.4.20.1.3.10.16.0.27|64|255.255.255.254 -1.3.6.1.2.1.4.20.1.3.10.16.0.33|64|255.255.255.248 -1.3.6.1.2.1.4.20.1.3.127.0.0.1|64|255.0.0.0 -1.3.6.1.2.1.4.20.1.3.136.231.0.1|64|255.255.255.255 -1.3.6.1.2.1.4.20.1.3.136.231.0.2|64|255.255.255.255 -1.3.6.1.2.1.4.20.1.3.136.231.0.3|64|255.255.255.255 -1.3.6.1.2.1.4.20.1.3.136.231.1.1|64|255.255.255.128 -1.3.6.1.2.1.4.20.1.3.136.231.1.129|64|255.255.255.128 -1.3.6.1.2.1.4.20.1.3.136.231.2.33|64|255.255.255.224 -1.3.6.1.2.1.4.20.1.3.136.231.2.65|64|255.255.255.224 -1.3.6.1.2.1.4.20.1.3.136.231.2.97|64|255.255.255.240 -1.3.6.1.2.1.4.20.1.3.136.231.2.113|64|255.255.255.240 -1.3.6.1.2.1.4.20.1.3.136.231.2.129|64|255.255.255.224 -1.3.6.1.2.1.4.20.1.3.136.231.2.169|64|255.255.255.248 -1.3.6.1.2.1.4.20.1.3.136.231.2.177|64|255.255.255.240 -1.3.6.1.2.1.4.20.1.3.136.231.2.193|64|255.255.255.248 -1.3.6.1.2.1.4.20.1.3.136.231.3.1|64|255.255.255.224 -1.3.6.1.2.1.4.20.1.3.136.231.3.33|64|255.255.255.248 -1.3.6.1.2.1.4.20.1.3.136.231.3.41|64|255.255.255.248 -1.3.6.1.2.1.4.20.1.3.136.231.3.64|64|255.255.255.254 -1.3.6.1.2.1.4.20.1.3.136.231.3.66|64|255.255.255.254 -1.3.6.1.2.1.4.20.1.3.136.231.3.68|64|255.255.255.254 -1.3.6.1.2.1.4.20.1.3.136.231.3.70|64|255.255.255.254 -1.3.6.1.2.1.4.20.1.3.136.231.3.72|64|255.255.255.254 -1.3.6.1.2.1.4.20.1.3.136.231.3.74|64|255.255.255.254 -1.3.6.1.2.1.4.20.1.3.136.231.3.76|64|255.255.255.254 -1.3.6.1.2.1.4.20.1.3.136.231.3.78|64|255.255.255.254 -1.3.6.1.2.1.4.20.1.3.136.231.3.80|64|255.255.255.254 -1.3.6.1.2.1.4.20.1.3.136.231.3.82|64|255.255.255.254 -1.3.6.1.2.1.4.20.1.3.136.231.3.84|64|255.255.255.254 -1.3.6.1.2.1.4.20.1.3.136.231.4.1|64|255.255.255.0 -1.3.6.1.2.1.4.20.1.3.136.231.6.1|64|255.255.255.128 -1.3.6.1.2.1.4.20.1.3.136.231.8.1|64|255.255.252.0 -1.3.6.1.2.1.4.20.1.3.136.231.12.1|64|255.255.255.0 -1.3.6.1.2.1.4.20.1.3.136.231.15.1|64|255.255.255.0 -1.3.6.1.2.1.4.20.1.3.136.231.16.1|64|255.255.255.224 -1.3.6.1.2.1.4.20.1.3.136.231.16.33|64|255.255.255.224 -1.3.6.1.2.1.4.20.1.3.136.231.19.1|64|255.255.255.0 -1.3.6.1.2.1.4.20.1.3.136.231.20.1|64|255.255.254.0 -1.3.6.1.2.1.4.20.1.3.136.231.26.1|64|255.255.255.0 -1.3.6.1.2.1.4.20.1.3.136.231.27.1|64|255.255.255.0 -1.3.6.1.2.1.4.20.1.3.136.231.28.1|64|255.255.255.0 -1.3.6.1.2.1.4.20.1.3.136.231.30.1|64|255.255.254.0 -1.3.6.1.2.1.4.20.1.3.136.231.32.1|64|255.255.255.0 -1.3.6.1.2.1.4.20.1.3.136.231.40.1|64|255.255.255.240 -1.3.6.1.2.1.4.20.1.3.136.231.40.17|64|255.255.255.240 -1.3.6.1.2.1.4.20.1.3.136.231.40.49|64|255.255.255.240 -1.3.6.1.2.1.4.20.1.3.136.231.40.65|64|255.255.255.240 -1.3.6.1.2.1.4.20.1.3.136.231.40.81|64|255.255.255.240 -1.3.6.1.2.1.4.20.1.3.136.231.40.97|64|255.255.255.240 -1.3.6.1.2.1.4.20.1.3.136.231.40.129|64|255.255.255.224 -1.3.6.1.2.1.4.20.1.3.136.231.40.225|64|255.255.255.224 -1.3.6.1.2.1.4.20.1.3.136.231.41.65|64|255.255.255.224 -1.3.6.1.2.1.4.20.1.3.136.231.41.97|64|255.255.255.224 -1.3.6.1.2.1.4.20.1.3.136.231.41.129|64|255.255.255.224 -1.3.6.1.2.1.4.20.1.3.136.231.45.1|64|255.255.255.128 -1.3.6.1.2.1.4.20.1.3.136.231.48.1|64|255.255.255.0 -1.3.6.1.2.1.4.20.1.3.136.231.50.1|64|255.255.254.0 -1.3.6.1.2.1.4.20.1.3.136.231.52.1|64|255.255.252.0 -1.3.6.1.2.1.4.20.1.3.136.231.56.1|64|255.255.254.0 -1.3.6.1.2.1.4.20.1.3.136.231.58.1|64|255.255.254.0 -1.3.6.1.2.1.4.20.1.3.136.231.62.1|64|255.255.254.0 -1.3.6.1.2.1.4.20.1.3.136.231.68.1|64|255.255.254.0 -1.3.6.1.2.1.4.20.1.3.136.231.70.1|64|255.255.255.0 -1.3.6.1.2.1.4.20.1.3.136.231.71.1|64|255.255.255.0 -1.3.6.1.2.1.4.20.1.3.136.231.72.1|64|255.255.255.0 -1.3.6.1.2.1.4.20.1.3.136.231.73.1|64|255.255.255.0 -1.3.6.1.2.1.4.20.1.3.136.231.74.1|64|255.255.255.0 -1.3.6.1.2.1.4.20.1.3.136.231.75.1|64|255.255.255.0 -1.3.6.1.2.1.4.20.1.3.136.231.76.1|64|255.255.252.0 -1.3.6.1.2.1.4.20.1.3.136.231.80.1|64|255.255.248.0 -1.3.6.1.2.1.4.20.1.3.136.231.88.1|64|255.255.248.0 -1.3.6.1.2.1.4.20.1.3.136.231.99.1|64|255.255.255.0 -1.3.6.1.2.1.4.20.1.3.136.231.100.1|64|255.255.255.0 -1.3.6.1.2.1.4.20.1.3.136.231.101.1|64|255.255.255.0 -1.3.6.1.2.1.4.20.1.3.136.231.102.1|64|255.255.255.248 -1.3.6.1.2.1.4.20.1.3.136.231.128.1|64|255.255.255.0 -1.3.6.1.2.1.4.20.1.3.136.231.129.1|64|255.255.255.0 -1.3.6.1.2.1.4.20.1.3.136.231.180.1|64|255.255.254.0 -1.3.6.1.2.1.4.20.1.3.136.231.200.1|64|255.255.255.0 -1.3.6.1.2.1.4.20.1.3.136.231.224.1|64|255.255.248.0 -1.3.6.1.2.1.4.20.1.3.136.231.234.1|64|255.255.255.128 -1.3.6.1.2.1.4.20.1.3.136.231.244.1|64|255.255.255.0 -1.3.6.1.2.1.4.20.1.3.136.231.245.17|64|255.255.255.248 -1.3.6.1.2.1.4.20.1.3.136.231.245.33|64|255.255.255.224 -1.3.6.1.2.1.4.20.1.3.136.231.245.65|64|255.255.255.248 -1.3.6.1.2.1.4.20.1.3.145.145.20.174|64|255.255.255.252 -1.3.6.1.2.1.4.20.1.3.145.145.26.34|64|255.255.255.252 -1.3.6.1.2.1.4.20.1.3.172.19.1.4|64|255.255.255.0 -1.3.6.1.2.1.4.20.1.3.172.19.1.5|64|255.255.255.0 -1.3.6.1.2.1.4.20.1.3.172.23.0.1|64|255.255.255.248 -1.3.6.1.2.1.4.20.1.3.172.23.0.33|64|255.255.255.224 -1.3.6.1.2.1.4.20.1.3.172.23.1.1|64|255.255.255.0 -1.3.6.1.2.1.4.20.1.3.172.23.2.1|64|255.255.255.0 -1.3.6.1.2.1.4.20.1.3.172.24.0.1|64|255.255.255.128 -1.3.6.1.2.1.4.20.1.3.172.24.0.129|64|255.255.255.128 -1.3.6.1.2.1.4.20.1.3.172.24.5.1|64|255.255.255.0 -1.3.6.1.2.1.4.20.1.3.172.25.0.1|64|255.255.255.240 -1.3.6.1.2.1.4.20.1.3.172.25.0.17|64|255.255.255.240 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.5|4x|001B78CE794C -1.3.6.1.2.1.4.22.1.2.1.136.231.30.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.7|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.9|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.10|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.11|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.12|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.13|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.14|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.15|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.16|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.17|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.18|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.19|4x|C08ADE3EC49A -1.3.6.1.2.1.4.22.1.2.1.136.231.30.20|4x|C08ADE3EC49C -1.3.6.1.2.1.4.22.1.2.1.136.231.30.21|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.22|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.23|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.24|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.25|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.28|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.29|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.30|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.31|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.32|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.33|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.34|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.35|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.36|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.37|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.38|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.39|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.43|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.44|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.45|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.46|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.47|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.48|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.49|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.50|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.51|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.52|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.53|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.54|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.56|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.57|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.58|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.59|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.61|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.64|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.65|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.66|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.67|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.68|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.70|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.72|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.73|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.74|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.76|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.77|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.78|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.79|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.80|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.81|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.83|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.87|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.88|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.89|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.92|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.93|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.94|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.95|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.96|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.97|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.99|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.108|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.114|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.117|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.121|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.123|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.125|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.127|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.128|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.129|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.130|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.132|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.133|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.134|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.135|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.136|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.137|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.138|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.139|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.140|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.141|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.142|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.143|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.146|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.149|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.150|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.151|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.152|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.153|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.155|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.157|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.159|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.160|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.161|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.162|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.164|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.165|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.166|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.167|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.168|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.169|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.170|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.171|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.172|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.173|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.175|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.176|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.177|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.178|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.179|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.180|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.181|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.182|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.184|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.185|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.186|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.187|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.188|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.189|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.190|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.191|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.192|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.193|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.194|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.196|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.197|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.198|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.200|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.201|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.202|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.203|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.204|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.206|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.207|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.208|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.209|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.210|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.211|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.212|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.213|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.214|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.215|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.216|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.217|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.218|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.219|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.221|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.222|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.223|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.224|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.225|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.226|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.227|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.228|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.229|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.230|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.232|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.233|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.234|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.235|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.236|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.237|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.238|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.239|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.242|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.243|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.244|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.245|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.246|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.248|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.250|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.252|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.30.255|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.0|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.1|4x|E81DA81FB520 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.2|4x|E81DA81FB1A0 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.3|4x|E81DA81FB590 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.4|4x|F8E71E0EC4F0 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.5|4x|E81DA81FB9E0 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.6|4x|348F272F83C0 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.7|4x|E81DA81FBA70 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.8|4x|E81DA81FBBC0 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.9|4x|E81DA81FC1E0 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.10|4x|E81DA81FB6E0 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.11|4x|F8E71E0EB9F0 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.12|4x|E81DA81FBC40 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.13|4x|E81DA81F9CE0 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.14|4x|E81DA81FB610 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.15|4x|F8E71E0EBE70 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.16|4x|E81DA81FBDB0 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.17|4x|E81DA81FB570 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.18|4x|E81DA81FBB40 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.19|4x|E81DA81FAC20 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.20|4x|E81DA815B600 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.21|4x|348F272F8530 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.22|4x|E81DA81FAC40 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.23|4x|E81DA81F9D50 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.24|4x|E81DA81FB410 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.25|4x|E81DA81FB680 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.26|4x|F8E71E0EC5A0 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.27|4x|E81DA81FADE0 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.28|4x|E81DA81FB180 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.29|4x|348F272F83D0 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.30|4x|E81DA81FBAC0 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.31|4x|E81DA81FA9B0 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.32|4x|E81DA81FA9C0 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.33|4x|E81DA81FB7E0 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.34|4x|E81DA81FBE40 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.35|4x|E81DA81FB4F0 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.36|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.37|4x|E81DA81FBBD0 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.38|4x|E81DA81FAE40 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.39|4x|348F272F8290 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.40|4x|348F272F83B0 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.41|4x|F8E71E0E7650 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.42|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.43|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.44|4x|E81DA81FB9D0 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.45|4x|E81DA81FB820 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.46|4x|E81DA81FACE0 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.47|4x|E81DA81FC240 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.48|4x|E81DA81FB980 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.49|4x|E81DA81FB220 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.50|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.51|4x|F8E71E0EB980 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.52|4x|F8E71E0EBD80 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.53|4x|F8E71E0EBD90 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.54|4x|F8E71E0EB840 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.55|4x|F8E71E0EC980 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.56|4x|E81DA81FB7C0 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.57|4x|E81DA81FBA50 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.58|4x|F8E71E0EB880 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.59|4x|E81DA81FB6C0 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.60|4x|348F272F7E40 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.61|4x|F8E71E0EB770 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.62|4x|348F272F84E0 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.63|4x|0CF4D5168430 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.64|4x|E81DA81FAE50 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.65|4x|E81DA81FB3D0 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.66|4x|E81DA81FB090 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.67|4x|E81DA81FAC50 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.68|4x|E81DA81F9DB0 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.69|4x|E81DA81FB0F0 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.70|4x|F8E71E0E7590 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.71|4x|E81DA81FB290 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.72|4x|E81DA81FB1F0 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.73|4x|F8E71E0EB960 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.74|4x|348F272F84D0 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.75|4x|348F272F82C0 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.76|4x|348F272F8360 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.77|4x|348F272F8390 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.78|4x|E81DA81FADB0 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.79|4x|E81DA81FB040 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.80|4x|E81DA81FC090 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.81|4x|E81DA81F9B80 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.82|4x|E81DA81FB7D0 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.83|4x|E81DA81FAED0 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.84|4x|E81DA81FB4C0 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.85|4x|E81DA81FC230 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.86|4x|E81DA81F9C50 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.87|4x|E81DA81FADC0 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.88|4x|E81DA81FA970 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.89|4x|F0B052135460 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.92|4x|348F272F83E0 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.93|4x|F8E71E0EBB70 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.94|4x|E81DA81FBA60 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.95|4x|F8E71E0EB9B0 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.96|4x|F8E71E0EBDB0 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.97|4x|F8E71E0EB8E0 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.98|4x|F8E71E0EBDF0 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.99|4x|E81DA81FBBA0 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.101|4x|348F27244A40 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.108|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.114|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.117|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.121|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.123|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.125|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.127|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.128|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.129|4x|F8E71E0EBC80 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.132|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.133|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.134|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.135|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.136|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.137|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.138|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.140|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.141|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.142|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.143|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.145|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.149|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.150|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.151|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.153|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.157|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.159|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.160|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.161|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.162|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.163|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.164|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.165|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.166|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.167|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.168|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.169|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.170|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.171|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.172|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.173|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.175|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.176|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.177|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.178|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.179|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.180|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.181|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.182|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.184|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.185|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.186|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.187|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.188|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.189|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.190|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.191|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.192|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.193|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.194|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.196|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.197|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.198|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.199|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.200|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.201|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.202|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.203|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.204|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.205|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.206|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.207|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.208|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.209|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.210|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.211|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.212|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.213|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.214|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.215|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.216|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.217|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.218|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.222|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.223|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.224|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.225|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.226|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.227|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.228|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.229|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.230|4x|008CFAB05548 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.231|4x|E81DA81FB120 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.232|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.233|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.234|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.235|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.236|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.237|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.238|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.239|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.243|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.244|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.245|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.246|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.248|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.250|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.252|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.1.136.231.31.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.17.169.254.0.1|4x|085B0E9A57CA -1.3.6.1.2.1.4.22.1.2.37.145.145.20.173|4x|C20380AF2198 -1.3.6.1.2.1.4.22.1.2.38.145.145.26.33|4x|7E2586ABB859 -1.3.6.1.2.1.4.22.1.2.43.172.19.1.1|4x|00090F090002 -1.3.6.1.2.1.4.22.1.2.50.172.25.0.4|4x|ACCC8E5B6C24 -1.3.6.1.2.1.4.22.1.2.50.172.25.0.5|4x|ACCC8E40B299 -1.3.6.1.2.1.4.22.1.2.50.172.25.0.6|4x|ACCC8E5B249D -1.3.6.1.2.1.4.22.1.2.50.172.25.0.7|4x|ACCC8E5B1F76 -1.3.6.1.2.1.4.22.1.2.50.172.25.0.8|4x|ACCC8E40AFD1 -1.3.6.1.2.1.4.22.1.2.50.172.25.0.9|4x|ACCC8E40B4F8 -1.3.6.1.2.1.4.22.1.2.50.172.25.0.10|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.51.136.231.2.34|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.51.136.231.2.35|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.51.136.231.2.36|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.51.136.231.2.37|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.51.136.231.2.38|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.51.136.231.2.39|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.51.136.231.2.40|4x|001C7300CAFE -1.3.6.1.2.1.4.22.1.2.51.136.231.2.41|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.51.136.231.2.42|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.51.136.231.2.43|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.51.136.231.2.44|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.51.136.231.2.45|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.51.136.231.2.46|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.51.136.231.2.47|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.51.136.231.2.48|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.51.136.231.2.49|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.51.136.231.2.50|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.51.136.231.2.51|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.51.136.231.2.52|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.51.136.231.2.53|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.51.136.231.2.54|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.51.136.231.2.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.51.136.231.2.56|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.51.136.231.2.57|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.51.136.231.2.58|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.51.136.231.2.61|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.51.136.231.2.62|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.52.136.231.2.66|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.52.136.231.2.67|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.52.136.231.2.68|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.52.136.231.2.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.52.136.231.2.70|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.52.136.231.2.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.52.136.231.2.72|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.52.136.231.2.73|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.52.136.231.2.74|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.52.136.231.2.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.52.136.231.2.76|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.52.136.231.2.77|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.52.136.231.2.78|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.52.136.231.2.79|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.52.136.231.2.80|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.52.136.231.2.81|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.52.136.231.2.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.52.136.231.2.83|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.52.136.231.2.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.52.136.231.2.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.52.136.231.2.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.52.136.231.2.87|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.52.136.231.2.88|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.52.136.231.2.89|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.52.136.231.2.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.52.136.231.2.92|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.52.136.231.2.93|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.52.136.231.2.94|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.5|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.7|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.9|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.10|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.11|4x|888717807179 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.12|4x|888717806DF2 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.13|4x|888717803BAB -1.3.6.1.2.1.4.22.1.2.53.136.231.28.14|4x|88871781650F -1.3.6.1.2.1.4.22.1.2.53.136.231.28.15|4x|888717816606 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.16|4x|8887177EC5A7 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.17|4x|8887177EC467 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.18|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.19|4x|8887178097E6 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.20|4x|88871780975B -1.3.6.1.2.1.4.22.1.2.53.136.231.28.21|4x|888717809822 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.22|4x|888717818BE5 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.23|4x|888717818BEE -1.3.6.1.2.1.4.22.1.2.53.136.231.28.24|4x|8887177EEBA7 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.25|4x|888717809702 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.26|4x|8887177EE645 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.27|4x|888717818C97 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.28|4x|8887177EEB14 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.29|4x|888717818B55 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.30|4x|8887178160D0 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.31|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.32|4x|8887177EEB81 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.33|4x|888717809160 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.34|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.35|4x|8887177EE675 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.36|4x|8887178185CE -1.3.6.1.2.1.4.22.1.2.53.136.231.28.37|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.38|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.39|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.40|4x|00199917D18D -1.3.6.1.2.1.4.22.1.2.53.136.231.28.41|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.42|4x|F48139C7BE59 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.43|4x|A0423F3A554D -1.3.6.1.2.1.4.22.1.2.53.136.231.28.44|4x|F48139C7BE70 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.45|4x|F48139AAB651 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.46|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.47|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.48|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.49|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.50|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.51|4x|000BAB954C65 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.52|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.53|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.54|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.56|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.57|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.58|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.59|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.60|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.61|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.63|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.64|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.65|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.66|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.67|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.68|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.70|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.72|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.73|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.74|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.76|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.77|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.78|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.79|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.80|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.81|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.83|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.87|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.88|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.89|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.92|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.93|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.94|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.95|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.96|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.97|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.99|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.104|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.108|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.114|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.117|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.121|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.123|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.125|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.127|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.128|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.129|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.130|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.132|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.133|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.134|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.135|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.136|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.137|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.138|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.139|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.140|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.141|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.142|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.143|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.145|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.146|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.149|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.150|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.151|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.152|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.153|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.155|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.157|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.159|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.160|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.161|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.162|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.163|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.164|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.165|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.166|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.167|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.168|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.169|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.170|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.171|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.172|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.173|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.175|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.176|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.177|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.178|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.179|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.180|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.181|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.182|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.184|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.185|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.186|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.187|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.188|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.189|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.190|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.191|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.192|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.193|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.194|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.196|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.199|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.200|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.201|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.202|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.203|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.204|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.205|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.206|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.207|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.208|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.209|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.210|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.211|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.212|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.213|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.214|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.215|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.216|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.217|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.218|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.219|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.221|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.222|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.223|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.224|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.225|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.226|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.228|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.229|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.231|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.232|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.233|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.235|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.237|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.238|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.239|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.242|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.243|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.244|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.245|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.246|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.248|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.250|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.252|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.53.136.231.28.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.5|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.7|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.9|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.10|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.11|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.12|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.13|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.14|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.15|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.16|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.17|4x|001ED110192A -1.3.6.1.2.1.4.22.1.2.54.136.231.26.18|4x|001ED110186C -1.3.6.1.2.1.4.22.1.2.54.136.231.26.19|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.20|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.21|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.22|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.23|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.24|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.25|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.28|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.29|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.30|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.31|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.32|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.33|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.34|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.35|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.36|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.37|4x|00117800EF53 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.38|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.39|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.40|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.41|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.42|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.43|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.44|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.46|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.47|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.48|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.49|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.50|4x|0011780111E9 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.51|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.52|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.53|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.54|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.56|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.57|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.58|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.59|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.60|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.61|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.62|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.63|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.64|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.65|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.66|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.67|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.68|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.70|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.72|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.73|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.74|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.76|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.77|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.78|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.79|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.80|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.81|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.83|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.87|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.88|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.89|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.92|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.93|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.94|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.95|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.96|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.97|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.98|4x|005056B207DB -1.3.6.1.2.1.4.22.1.2.54.136.231.26.99|4x|005056B232E9 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.100|4x|005056B232CB -1.3.6.1.2.1.4.22.1.2.54.136.231.26.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.104|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.108|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.114|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.117|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.125|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.127|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.128|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.129|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.132|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.133|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.135|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.136|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.137|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.138|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.139|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.141|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.142|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.143|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.145|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.146|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.149|4x|001ED110206D -1.3.6.1.2.1.4.22.1.2.54.136.231.26.150|4x|40D85500C4DE -1.3.6.1.2.1.4.22.1.2.54.136.231.26.151|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.152|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.153|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.155|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.156|4x|000AB004CD7D -1.3.6.1.2.1.4.22.1.2.54.136.231.26.157|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.158|4x|000AB004CD7F -1.3.6.1.2.1.4.22.1.2.54.136.231.26.160|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.161|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.162|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.163|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.165|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.166|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.167|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.168|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.169|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.171|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.172|4x|000060E851CA -1.3.6.1.2.1.4.22.1.2.54.136.231.26.173|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.175|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.176|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.177|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.178|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.179|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.180|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.181|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.182|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.184|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.186|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.187|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.188|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.189|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.190|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.191|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.192|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.193|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.194|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.196|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.197|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.199|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.200|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.201|4x|0010F339EA5A -1.3.6.1.2.1.4.22.1.2.54.136.231.26.202|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.203|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.204|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.205|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.206|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.207|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.208|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.209|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.210|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.211|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.212|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.213|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.214|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.215|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.216|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.217|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.218|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.219|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.221|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.222|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.223|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.224|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.225|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.226|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.227|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.228|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.229|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.230|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.231|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.233|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.234|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.235|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.236|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.237|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.238|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.239|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.242|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.243|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.244|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.245|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.246|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.248|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.250|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.252|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.54.136.231.26.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.5|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.7|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.9|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.10|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.11|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.12|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.13|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.14|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.15|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.16|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.17|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.18|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.19|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.20|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.21|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.22|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.23|4x|0050C28E837B -1.3.6.1.2.1.4.22.1.2.55.136.231.32.24|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.25|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.28|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.29|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.30|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.31|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.32|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.33|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.34|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.35|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.36|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.37|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.38|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.39|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.40|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.41|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.42|4x|005056B24A24 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.43|4x|005056B24A24 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.44|4x|005056B25ADE -1.3.6.1.2.1.4.22.1.2.55.136.231.32.45|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.46|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.47|4x|005056B2A04D -1.3.6.1.2.1.4.22.1.2.55.136.231.32.48|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.49|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.50|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.51|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.52|4x|005056B284F9 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.53|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.54|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.56|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.57|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.58|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.59|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.60|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.61|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.62|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.63|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.64|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.65|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.66|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.67|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.68|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.70|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.72|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.73|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.74|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.76|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.77|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.78|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.79|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.80|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.81|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.83|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.87|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.88|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.89|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.92|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.93|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.94|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.95|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.96|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.97|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.99|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.104|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.108|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.114|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.117|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.121|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.123|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.125|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.127|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.128|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.129|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.130|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.132|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.133|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.134|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.135|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.136|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.137|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.138|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.139|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.140|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.141|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.142|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.143|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.145|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.146|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.149|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.150|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.151|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.152|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.153|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.155|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.157|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.159|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.160|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.161|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.162|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.163|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.164|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.165|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.168|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.169|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.170|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.171|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.172|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.173|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.175|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.176|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.177|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.178|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.179|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.180|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.181|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.182|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.184|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.185|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.186|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.187|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.188|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.189|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.190|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.191|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.192|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.193|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.194|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.196|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.197|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.198|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.199|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.200|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.202|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.203|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.204|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.205|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.206|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.207|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.208|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.209|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.210|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.211|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.212|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.213|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.214|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.215|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.216|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.217|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.218|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.219|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.221|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.222|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.224|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.225|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.226|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.227|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.228|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.229|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.230|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.231|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.232|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.233|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.234|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.235|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.237|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.238|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.239|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.242|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.243|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.245|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.246|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.248|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.250|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.252|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.55.136.231.32.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.5|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.7|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.9|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.10|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.11|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.12|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.13|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.14|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.15|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.17|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.18|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.19|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.20|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.21|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.22|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.23|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.24|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.25|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.28|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.29|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.30|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.31|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.32|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.34|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.35|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.36|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.37|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.38|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.39|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.40|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.41|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.42|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.43|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.44|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.45|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.46|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.47|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.48|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.49|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.50|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.51|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.52|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.53|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.54|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.57|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.58|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.59|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.60|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.61|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.62|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.63|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.64|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.65|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.66|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.67|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.68|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.70|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.72|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.73|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.74|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.76|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.77|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.78|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.79|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.80|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.81|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.83|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.87|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.88|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.89|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.92|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.93|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.95|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.96|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.97|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.99|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.104|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.108|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.117|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.121|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.123|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.125|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.128|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.129|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.130|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.132|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.133|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.135|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.136|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.137|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.138|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.139|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.140|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.141|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.142|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.143|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.145|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.146|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.149|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.150|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.151|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.152|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.153|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.155|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.157|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.159|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.160|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.161|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.162|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.163|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.164|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.165|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.166|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.167|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.168|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.169|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.170|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.171|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.172|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.173|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.175|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.176|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.177|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.178|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.179|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.180|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.181|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.182|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.184|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.185|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.186|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.188|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.189|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.190|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.191|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.192|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.193|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.194|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.196|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.197|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.198|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.199|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.200|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.201|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.202|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.203|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.205|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.206|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.207|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.208|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.209|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.210|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.211|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.212|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.214|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.215|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.216|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.217|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.218|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.219|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.221|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.222|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.223|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.224|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.225|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.226|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.227|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.228|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.229|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.230|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.231|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.232|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.233|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.234|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.235|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.236|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.237|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.238|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.239|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.242|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.243|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.244|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.245|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.246|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.248|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.250|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.252|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.57.136.231.244.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.3|4x|005056B248E4 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.5|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.7|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.9|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.10|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.11|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.12|4x|84B541D297E0 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.13|4x|B48B19977040 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.14|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.15|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.16|4x|24920ED2F2B2 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.17|4x|84B541E0C4F8 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.18|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.19|4x|84B541D295C0 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.20|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.21|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.22|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.23|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.24|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.25|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.28|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.29|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.31|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.32|4x|24920E713D1C -1.3.6.1.2.1.4.22.1.2.58.136.231.8.33|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.34|4x|203956798D63 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.35|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.36|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.37|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.38|4x|84B541D297B6 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.39|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.40|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.41|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.42|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.43|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.44|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.45|4x|DC667250C48D -1.3.6.1.2.1.4.22.1.2.58.136.231.8.47|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.48|4x|84B541D84590 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.49|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.50|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.51|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.52|4x|CC79CFE8595D -1.3.6.1.2.1.4.22.1.2.58.136.231.8.53|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.54|4x|84B541E0CC30 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.55|4x|C4618B358C6A -1.3.6.1.2.1.4.22.1.2.58.136.231.8.56|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.57|4x|A0C5891459BF -1.3.6.1.2.1.4.22.1.2.58.136.231.8.58|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.59|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.60|4x|44783EE67ED5 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.61|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.62|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.63|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.64|4x|348A7B2AA9F8 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.65|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.66|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.67|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.68|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.70|4x|B4F61CA57489 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.72|4x|84B541D29B9A -1.3.6.1.2.1.4.22.1.2.58.136.231.8.73|4x|84B541D2A22A -1.3.6.1.2.1.4.22.1.2.58.136.231.8.74|4x|84B541D2A060 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.76|4x|843A4B7FBCE8 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.77|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.78|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.79|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.80|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.81|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.83|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.85|4x|6C72E774C1AD -1.3.6.1.2.1.4.22.1.2.58.136.231.8.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.87|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.88|4x|A46CF10E0CCA -1.3.6.1.2.1.4.22.1.2.58.136.231.8.89|4x|348A7B2AC98A -1.3.6.1.2.1.4.22.1.2.58.136.231.8.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.92|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.93|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.94|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.95|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.96|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.97|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.98|4x|8485060AC8A7 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.99|4x|D4E6B7C55855 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.100|4x|283F6968DA0F -1.3.6.1.2.1.4.22.1.2.58.136.231.8.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.102|4x|CC3A615E4B41 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.104|4x|DC66726DB3DF -1.3.6.1.2.1.4.22.1.2.58.136.231.8.105|4x|84B541D83EBC -1.3.6.1.2.1.4.22.1.2.58.136.231.8.106|4x|8CF5A341E59C -1.3.6.1.2.1.4.22.1.2.58.136.231.8.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.108|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.110|4x|84B541E0C39E -1.3.6.1.2.1.4.22.1.2.58.136.231.8.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.114|4x|A46CF10E0900 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.115|4x|F07960867399 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.117|4x|DC667250C4C9 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.118|4x|84B541E0C68A -1.3.6.1.2.1.4.22.1.2.58.136.231.8.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.120|4x|A08D16719ED0 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.121|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.122|4x|A056F3628EE3 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.123|4x|9CE65E2C6B89 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.125|4x|DC667250C48B -1.3.6.1.2.1.4.22.1.2.58.136.231.8.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.127|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.128|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.129|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.130|4x|84B541E0C692 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.132|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.133|4x|C01173E3E056 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.134|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.135|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.136|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.137|4x|84B541E0CBCE -1.3.6.1.2.1.4.22.1.2.58.136.231.8.138|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.139|4x|108EE093986C -1.3.6.1.2.1.4.22.1.2.58.136.231.8.140|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.141|4x|108EE0939886 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.142|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.143|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.145|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.146|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.148|4x|84B541D84358 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.150|4x|BC5451F729A0 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.151|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.152|4x|84B541E0CCDE -1.3.6.1.2.1.4.22.1.2.58.136.231.8.153|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.155|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.157|4x|348A7B2AA976 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.159|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.160|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.161|4x|08C5E1B26701 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.162|4x|84B541D2A120 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.163|4x|84B541D83A5E -1.3.6.1.2.1.4.22.1.2.58.136.231.8.164|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.165|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.166|4x|40CBC0269F95 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.167|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.168|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.169|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.170|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.171|4x|84B541D83FFA -1.3.6.1.2.1.4.22.1.2.58.136.231.8.172|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.173|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.175|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.176|4x|9060F12C7AA4 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.177|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.178|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.179|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.180|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.181|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.182|4x|58B035738E3B -1.3.6.1.2.1.4.22.1.2.58.136.231.8.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.184|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.185|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.186|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.187|4x|84CFBF8ABF6F -1.3.6.1.2.1.4.22.1.2.58.136.231.8.189|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.190|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.191|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.192|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.193|4x|3CDCBC24A696 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.194|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.196|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.197|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.198|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.199|4x|38CADA462452 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.200|4x|68E7C2414E0B -1.3.6.1.2.1.4.22.1.2.58.136.231.8.201|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.202|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.203|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.204|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.205|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.206|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.207|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.208|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.209|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.210|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.211|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.212|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.213|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.214|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.215|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.216|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.218|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.219|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.221|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.222|4x|64A2F9292F11 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.223|4x|58B10F678EE8 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.224|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.225|4|TrOHo% -1.3.6.1.2.1.4.22.1.2.58.136.231.8.226|4x|9C2EA122C394 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.228|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.229|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.230|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.231|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.232|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.233|4x|68E7C233A64B -1.3.6.1.2.1.4.22.1.2.58.136.231.8.234|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.235|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.236|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.237|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.238|4x|84B541E0C70A -1.3.6.1.2.1.4.22.1.2.58.136.231.8.239|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.241|4x|8086F280E03F -1.3.6.1.2.1.4.22.1.2.58.136.231.8.242|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.243|4x|84B541D83E9C -1.3.6.1.2.1.4.22.1.2.58.136.231.8.244|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.245|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.246|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.248|4x|08C5E1C5E35E -1.3.6.1.2.1.4.22.1.2.58.136.231.8.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.252|4x|389496A8C4A3 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.253|4x|84B541E0C6FA -1.3.6.1.2.1.4.22.1.2.58.136.231.8.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.8.255|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.0|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.1|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.5|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.7|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.9|4x|84B541E0C3B4 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.10|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.11|4x|84B541E0C70E -1.3.6.1.2.1.4.22.1.2.58.136.231.9.12|4x|108EE0939872 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.13|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.14|4x|84B541D84352 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.15|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.16|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.17|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.18|4x|10F005065194 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.19|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.20|4x|84B541E0C740 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.21|4x|84B541E0CC34 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.22|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.23|4x|70700D914236 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.24|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.28|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.29|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.30|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.31|4x|84B541E0C2BE -1.3.6.1.2.1.4.22.1.2.58.136.231.9.32|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.33|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.34|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.35|4x|BCE143A2355E -1.3.6.1.2.1.4.22.1.2.58.136.231.9.36|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.37|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.38|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.39|4x|84B541D83EA8 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.40|4x|84B541E0CBD8 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.41|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.42|4x|D81C79DB9A24 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.43|4x|20395610EB74 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.44|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.45|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.46|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.47|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.48|4x|00AEFA55F83F -1.3.6.1.2.1.4.22.1.2.58.136.231.9.49|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.50|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.51|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.52|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.53|4x|FC3D9393A0EA -1.3.6.1.2.1.4.22.1.2.58.136.231.9.54|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.55|4x|84B541D299BC -1.3.6.1.2.1.4.22.1.2.58.136.231.9.56|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.57|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.58|4x|9C4E360A42E8 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.60|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.61|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.63|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.64|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.65|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.66|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.67|4x|342D0D83F78D -1.3.6.1.2.1.4.22.1.2.58.136.231.9.68|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.70|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.72|4x|2CF0EEB78E62 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.74|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.76|4x|84B541D296BE -1.3.6.1.2.1.4.22.1.2.58.136.231.9.77|4x|84B541E0C700 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.78|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.80|4x|DC667250C5B1 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.81|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.83|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.85|4x|84B541D83918 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.87|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.88|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.89|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.91|4x|84B5414EB414 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.92|4x|5CC3075B6DAB -1.3.6.1.2.1.4.22.1.2.58.136.231.9.93|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.94|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.95|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.96|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.97|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.99|4x|78009E5F0678 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.101|4x|044BEDF079DE -1.3.6.1.2.1.4.22.1.2.58.136.231.9.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.104|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.107|4x|2C0E3DED3A48 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.108|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.114|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.117|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.118|4x|100BA97F5018 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.121|4x|4491606E3240 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.123|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.127|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.128|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.129|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.130|4x|DC667250C819 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.132|4x|58E6BA0924F8 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.133|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.134|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.135|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.136|4x|409C28C4D617 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.137|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.138|4x|84B541D846BC -1.3.6.1.2.1.4.22.1.2.58.136.231.9.139|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.140|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.141|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.142|4x|D4E6B7C04AF7 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.143|4x|58B10F677DF0 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.145|4x|E05F4500C347 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.146|4x|9CF48E13EBF8 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.149|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.150|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.151|4x|BC545189542E -1.3.6.1.2.1.4.22.1.2.58.136.231.9.152|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.153|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.154|4x|F45C89D0C5EA -1.3.6.1.2.1.4.22.1.2.58.136.231.9.155|4x|B853ACDDEEF7 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.157|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.159|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.161|4x|84B541D83BA6 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.162|4x|AC5F3EFFC1BB -1.3.6.1.2.1.4.22.1.2.58.136.231.9.164|4x|4C3488445B42 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.165|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.166|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.167|4x|68E7C233B9FD -1.3.6.1.2.1.4.22.1.2.58.136.231.9.168|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.169|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.170|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.171|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.172|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.173|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.175|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.176|4x|D0B128CD5FA9 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.178|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.180|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.181|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.182|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.184|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.185|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.186|4x|108EE08F1BF4 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.187|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.188|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.189|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.190|4x|741BB2332959 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.191|4x|5004B83888A3 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.192|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.193|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.194|4x|84B541E0CBBE -1.3.6.1.2.1.4.22.1.2.58.136.231.9.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.196|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.197|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.198|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.199|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.200|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.201|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.202|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.203|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.204|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.205|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.206|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.207|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.208|4x|2C0E3D21180F -1.3.6.1.2.1.4.22.1.2.58.136.231.9.209|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.210|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.211|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.212|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.213|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.214|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.215|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.216|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.217|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.218|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.219|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.221|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.222|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.223|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.224|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.225|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.226|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.227|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.228|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.229|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.230|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.231|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.232|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.233|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.234|4x|84B541D843A0 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.235|4x|84B541E0C822 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.236|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.237|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.238|4x|C4618B2E0297 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.239|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.242|4x|38892CB3CD7C -1.3.6.1.2.1.4.22.1.2.58.136.231.9.243|4x|4C6641B3F8C5 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.244|4x|F00FECF8F8EC -1.3.6.1.2.1.4.22.1.2.58.136.231.9.245|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.248|4x|DC56E7DF4021 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.250|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.252|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.9.255|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.0|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.1|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.5|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.7|4x|84B541D84070 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.9|4x|84B541E0C9B0 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.10|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.11|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.12|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.13|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.14|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.15|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.16|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.17|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.18|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.19|4x|F4F524099175 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.20|4x|B0CA682F65CA -1.3.6.1.2.1.4.22.1.2.58.136.231.10.21|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.22|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.23|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.24|4x|64A2F92F2566 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.25|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.28|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.29|4x|484BAA067CAD -1.3.6.1.2.1.4.22.1.2.58.136.231.10.30|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.31|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.32|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.33|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.34|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.35|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.36|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.37|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.38|4x|7C9122B1F9C0 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.39|4x|F45C898B29CB -1.3.6.1.2.1.4.22.1.2.58.136.231.10.40|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.41|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.42|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.43|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.44|4x|609AC13CACA9 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.45|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.46|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.47|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.48|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.49|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.50|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.51|4x|68E7C233BAE1 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.52|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.53|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.54|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.55|4x|28ED6A33FCE6 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.56|4x|584822A533EC -1.3.6.1.2.1.4.22.1.2.58.136.231.10.57|4x|DC66726DB3A1 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.58|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.59|4x|AC37430169F2 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.60|4x|348A7B2AA9E8 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.61|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.62|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.63|4x|84B541D84346 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.64|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.65|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.66|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.67|4x|8058F85B70FC -1.3.6.1.2.1.4.22.1.2.58.136.231.10.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.70|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.71|4x|38A4ED618815 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.72|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.73|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.74|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.75|4x|58B10F678CA4 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.76|4x|84B541D83E8C -1.3.6.1.2.1.4.22.1.2.58.136.231.10.77|4x|DC667250C7B7 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.78|4x|84B541E0CB8C -1.3.6.1.2.1.4.22.1.2.58.136.231.10.79|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.80|4x|04D6AA34157F -1.3.6.1.2.1.4.22.1.2.58.136.231.10.81|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.83|4x|D4E6B7C04AC3 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.86|4x|84B541D842D6 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.87|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.88|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.89|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.92|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.94|4x|84B541E0CCA2 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.95|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.96|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.97|4x|B0702D3F6817 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.99|4x|3C15C2C99156 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.101|4x|04D6AAB0B1CC -1.3.6.1.2.1.4.22.1.2.58.136.231.10.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.104|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.105|4x|BCA58BB51203 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.107|4x|84B541D83F24 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.108|4x|84B541E0C31C -1.3.6.1.2.1.4.22.1.2.58.136.231.10.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.114|4x|A46CF1D24443 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.115|4x|F0D7AA8EB807 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.117|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.120|4x|DC667250C7E3 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.121|4x|8C8EF2EF7612 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.123|4x|10F1F22FF838 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.125|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.127|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.128|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.129|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.130|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.132|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.133|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.134|4x|647033326DCD -1.3.6.1.2.1.4.22.1.2.58.136.231.10.135|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.136|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.137|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.138|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.139|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.140|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.141|4x|8CF5A3BB5FD8 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.142|4x|64A2F951B763 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.143|4x|F099B6401164 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.146|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.149|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.150|4x|84B541E0CBB0 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.151|4x|84B541E0C6E4 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.152|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.153|4x|B0F1EC596E10 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.155|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.156|4x|A4C361E69131 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.157|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.159|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.160|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.161|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.162|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.163|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.164|4x|484BAABB1C68 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.165|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.166|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.167|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.168|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.169|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.170|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.171|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.172|4x|68E7C233BA89 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.173|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.175|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.176|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.177|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.178|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.179|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.180|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.181|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.182|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.184|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.185|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.186|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.187|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.188|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.189|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.190|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.191|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.192|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.193|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.194|4x|8C83E103C30E -1.3.6.1.2.1.4.22.1.2.58.136.231.10.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.196|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.197|4x|6C8814869D10 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.198|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.199|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.200|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.201|4x|14C213E402DD -1.3.6.1.2.1.4.22.1.2.58.136.231.10.202|4x|D4389C02C264 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.203|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.204|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.205|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.207|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.208|4x|84B541E0C9BC -1.3.6.1.2.1.4.22.1.2.58.136.231.10.209|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.210|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.211|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.212|4x|84B541D2A056 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.213|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.214|4x|141F7862CB2C -1.3.6.1.2.1.4.22.1.2.58.136.231.10.215|4x|D0B128CD6187 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.216|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.217|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.218|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.219|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.221|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.222|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.223|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.224|4x|84B541E0C320 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.225|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.226|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.227|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.228|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.229|4x|84B541E0CCC4 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.230|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.231|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.232|4x|00AEFA768ACC -1.3.6.1.2.1.4.22.1.2.58.136.231.10.233|4x|F895EA5169EE -1.3.6.1.2.1.4.22.1.2.58.136.231.10.234|4x|84B541D83DCC -1.3.6.1.2.1.4.22.1.2.58.136.231.10.235|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.236|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.237|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.238|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.239|4x|80C5E64120A0 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.242|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.243|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.244|4x|84B541E0CEBA -1.3.6.1.2.1.4.22.1.2.58.136.231.10.245|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.246|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.248|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.250|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.251|4x|A89675B3AD37 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.252|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.10.255|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.0|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.1|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.2|4x|D0B128CD613F -1.3.6.1.2.1.4.22.1.2.58.136.231.11.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.4|4x|90CDB647B153 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.5|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.7|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.9|4x|3880DF676CEB -1.3.6.1.2.1.4.22.1.2.58.136.231.11.10|4x|F895C7F50333 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.11|4x|90B0ED1865F5 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.12|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.13|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.14|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.15|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.16|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.17|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.18|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.19|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.20|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.22|4x|84B541E0CCB4 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.23|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.24|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.25|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.27|4x|A46CF1D245E3 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.28|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.29|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.30|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.31|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.33|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.34|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.35|4x|108EE0939876 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.36|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.37|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.39|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.40|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.41|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.42|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.43|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.44|4x|84B541D846C4 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.47|4x|8866A5B11AEE -1.3.6.1.2.1.4.22.1.2.58.136.231.11.48|4x|4C57CA029793 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.49|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.50|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.51|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.52|4x|84B541D29E1E -1.3.6.1.2.1.4.22.1.2.58.136.231.11.53|4x|C0B6584DF418 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.54|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.56|4x|84B541D2A362 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.57|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.58|4x|EC107BBC60A8 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.59|4x|ACBC3202A39C -1.3.6.1.2.1.4.22.1.2.58.136.231.11.60|4x|64A2F984649E -1.3.6.1.2.1.4.22.1.2.58.136.231.11.61|4x|404D7FA050A5 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.62|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.63|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.64|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.65|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.66|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.68|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.70|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.72|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.73|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.74|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.76|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.77|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.78|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.79|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.80|4x|84B541D2A2B6 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.81|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.83|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.88|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.89|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.92|4x|DC667250C4B1 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.93|4x|4827EAF695F2 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.94|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.95|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.96|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.97|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.98|4x|0CD746970507 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.99|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.101|4x|D81C796D1B22 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.104|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.108|4x|108EE08F0C04 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.114|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.117|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.121|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.123|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.125|4x|C43ABEAF9201 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.127|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.128|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.129|4x|70EF00DB0867 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.132|4x|64A2F984DE48 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.133|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.134|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.135|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.136|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.137|4x|84B541E0CCD2 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.138|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.139|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.140|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.141|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.142|4x|58B10F902214 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.143|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.145|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.146|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.147|4x|84B541D83C8E -1.3.6.1.2.1.4.22.1.2.58.136.231.11.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.149|4x|84B541E0C506 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.150|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.151|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.152|4x|6C8DC12AE8C9 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.155|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.157|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.159|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.160|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.161|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.162|4x|00110003F89E -1.3.6.1.2.1.4.22.1.2.58.136.231.11.163|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.164|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.165|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.166|4x|C0EEFB58BB1D -1.3.6.1.2.1.4.22.1.2.58.136.231.11.167|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.168|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.169|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.170|4x|84B541E0C4A2 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.171|4x|2CF0A238F882 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.172|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.173|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.175|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.176|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.177|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.178|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.179|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.180|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.181|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.182|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.184|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.185|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.186|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.187|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.189|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.190|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.191|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.192|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.193|4x|A44E317A46E4 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.194|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.195|4x|34F39A565DC9 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.196|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.197|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.198|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.199|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.200|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.201|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.202|4x|88ADD2A78046 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.203|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.204|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.205|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.206|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.207|4x|108EE0939864 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.208|4x|84B541E0C6CE -1.3.6.1.2.1.4.22.1.2.58.136.231.11.209|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.210|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.211|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.212|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.213|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.214|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.215|4x|68E7C233B8F3 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.216|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.217|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.218|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.219|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.221|4x|84B541E0CC78 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.222|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.223|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.224|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.225|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.226|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.227|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.228|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.229|4x|08C5E1B8A755 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.230|4x|68E7C233BAE5 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.231|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.232|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.233|4x|F4F524DAE93D -1.3.6.1.2.1.4.22.1.2.58.136.231.11.234|4x|2CAE2B6DB243 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.235|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.236|4x|108EE093A866 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.237|4x|DC667250C82D -1.3.6.1.2.1.4.22.1.2.58.136.231.11.238|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.239|4x|E0B52D0AC84D -1.3.6.1.2.1.4.22.1.2.58.136.231.11.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.242|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.244|4x|E0338E21E757 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.245|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.246|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.248|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.250|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.252|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.58.136.231.11.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.5|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.7|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.9|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.10|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.11|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.12|4x|005056B2C5D6 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.13|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.14|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.15|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.16|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.17|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.18|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.19|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.20|4x|186024AC940B -1.3.6.1.2.1.4.22.1.2.59.136.231.15.21|4x|186024AC94BA -1.3.6.1.2.1.4.22.1.2.59.136.231.15.22|4x|183DA20AB12C -1.3.6.1.2.1.4.22.1.2.59.136.231.15.23|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.24|4x|186024AC940A -1.3.6.1.2.1.4.22.1.2.59.136.231.15.25|4x|186024AC94D5 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.26|4x|D8D38575E0DF -1.3.6.1.2.1.4.22.1.2.59.136.231.15.27|4x|D8D385762D6B -1.3.6.1.2.1.4.22.1.2.59.136.231.15.28|4x|C4346B533EA4 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.29|4x|186024AC940D -1.3.6.1.2.1.4.22.1.2.59.136.231.15.30|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.31|4x|D8D38575EA6F -1.3.6.1.2.1.4.22.1.2.59.136.231.15.32|4x|D8D3857669B0 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.33|4x|186024AC94E3 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.34|4x|186024AC9405 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.35|4x|186024AFC1D5 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.36|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.37|4x|186024AFC1C4 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.38|4x|705A0F3A000F -1.3.6.1.2.1.4.22.1.2.59.136.231.15.39|4x|186024ACD4CC -1.3.6.1.2.1.4.22.1.2.59.136.231.15.40|4x|6805CA46A124 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.41|4x|186024ACD408 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.42|4x|B4B52FE02401 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.43|4x|8C705A576A2C -1.3.6.1.2.1.4.22.1.2.59.136.231.15.44|4x|186024AFC144 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.45|4x|D8D38574B514 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.46|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.47|4x|186024ACD409 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.48|4x|D8D3857881CB -1.3.6.1.2.1.4.22.1.2.59.136.231.15.49|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.50|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.51|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.53|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.54|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.56|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.57|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.58|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.59|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.60|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.61|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.62|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.63|4x|183DA2087060 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.64|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.65|4x|D8D3857669B3 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.66|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.67|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.68|4x|D8D385788089 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.70|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.72|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.73|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.74|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.76|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.77|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.78|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.79|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.80|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.81|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.83|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.87|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.88|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.89|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.92|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.94|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.95|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.96|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.99|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.104|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.108|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.114|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.117|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.121|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.123|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.125|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.127|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.128|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.129|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.132|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.133|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.134|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.135|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.136|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.137|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.138|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.139|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.140|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.141|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.142|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.143|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.145|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.146|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.149|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.150|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.151|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.152|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.155|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.157|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.159|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.160|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.161|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.163|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.164|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.165|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.166|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.167|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.168|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.169|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.170|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.172|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.173|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.175|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.176|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.177|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.178|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.179|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.181|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.182|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.184|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.185|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.186|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.187|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.188|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.189|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.190|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.191|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.192|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.193|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.194|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.196|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.197|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.198|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.199|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.201|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.202|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.203|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.204|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.205|4x|186024AFC1EA -1.3.6.1.2.1.4.22.1.2.59.136.231.15.206|4x|186024ACD402 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.207|4x|186024ACD4CA -1.3.6.1.2.1.4.22.1.2.59.136.231.15.208|4x|D8D385762AFC -1.3.6.1.2.1.4.22.1.2.59.136.231.15.209|4x|186024ACD4CD -1.3.6.1.2.1.4.22.1.2.59.136.231.15.210|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.211|4x|002421825DE0 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.212|4x|10604B5FC538 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.213|4x|D8D3857D4D18 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.214|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.215|4x|D02788DEB644 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.216|4x|D8D38575EA60 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.217|4x|186024AC94A8 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.218|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.219|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.221|4x|186024AFC1BF -1.3.6.1.2.1.4.22.1.2.59.136.231.15.222|4x|186024A5BFDD -1.3.6.1.2.1.4.22.1.2.59.136.231.15.223|4x|186024ACD4E4 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.224|4x|186024AFC1E7 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.225|4x|186024ACD245 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.226|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.227|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.228|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.229|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.230|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.231|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.232|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.233|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.234|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.235|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.236|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.237|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.239|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.242|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.243|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.244|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.245|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.246|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.248|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.250|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.136.231.15.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.59.255.255.255.255|4x|FFFFFFFFFFFF -1.3.6.1.2.1.4.22.1.2.61.136.231.245.18|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.61.136.231.245.19|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.61.136.231.245.21|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.61.136.231.245.22|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.5|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.7|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.9|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.10|4x|005056B275B2 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.11|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.14|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.15|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.16|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.17|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.18|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.19|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.20|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.21|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.22|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.23|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.24|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.25|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.28|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.30|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.31|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.32|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.33|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.34|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.35|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.36|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.37|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.38|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.40|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.41|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.42|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.43|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.44|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.45|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.46|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.47|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.48|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.49|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.50|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.51|4x|08000F2BEDEB -1.3.6.1.2.1.4.22.1.2.62.136.231.68.52|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.53|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.54|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.56|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.57|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.58|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.59|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.60|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.61|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.62|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.63|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.64|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.65|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.66|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.67|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.68|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.70|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.72|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.73|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.74|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.76|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.77|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.78|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.79|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.80|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.81|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.83|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.87|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.88|4x|08000F30EF67 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.89|4x|08000F22448F -1.3.6.1.2.1.4.22.1.2.62.136.231.68.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.92|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.93|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.94|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.95|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.96|4x|08000F1B8930 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.97|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.99|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.100|4x|08000F1E0270 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.101|4x|08000F2B3EBD -1.3.6.1.2.1.4.22.1.2.62.136.231.68.102|4x|08000F2BD3B6 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.103|4x|08000F2AB876 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.104|4x|08000F314F4D -1.3.6.1.2.1.4.22.1.2.62.136.231.68.105|4x|08000F1E140F -1.3.6.1.2.1.4.22.1.2.62.136.231.68.106|4x|08000F2BE36B -1.3.6.1.2.1.4.22.1.2.62.136.231.68.107|4x|08000F1DD213 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.108|4x|08000F2BD01A -1.3.6.1.2.1.4.22.1.2.62.136.231.68.109|4x|08000F2BD012 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.111|4x|08000F1B8C06 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.112|4x|08000F2BD1E0 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.114|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.117|4x|08000F1B9317 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.119|4x|08000F42F0ED -1.3.6.1.2.1.4.22.1.2.62.136.231.68.120|4x|08000F469129 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.121|4x|08000F2BEDA5 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.123|4x|08000F314EB3 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.124|4x|08000F1DF889 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.125|4x|08000F2FFB2A -1.3.6.1.2.1.4.22.1.2.62.136.231.68.126|4x|08000F1E14CA -1.3.6.1.2.1.4.22.1.2.62.136.231.68.127|4x|08000F1DFF9D -1.3.6.1.2.1.4.22.1.2.62.136.231.68.128|4x|08000F2BD2B2 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.129|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.130|4x|08000F2BECB3 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.132|4x|08000F47C4E0 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.133|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.134|4x|08000F1DFF7D -1.3.6.1.2.1.4.22.1.2.62.136.231.68.135|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.136|4x|08000F1DCF80 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.137|4x|08000F1DF613 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.138|4x|08000F3FD53E -1.3.6.1.2.1.4.22.1.2.62.136.231.68.139|4x|08000F314F0B -1.3.6.1.2.1.4.22.1.2.62.136.231.68.140|4x|08000F314DB4 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.141|4x|08000F314F45 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.142|4x|08000F314F38 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.143|4x|08000F2BABC5 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.144|4x|08000F1B96F7 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.145|4x|08000F1DF5BB -1.3.6.1.2.1.4.22.1.2.62.136.231.68.146|4x|08000F303D28 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.149|4x|08000F30F648 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.150|4x|08000F30F640 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.151|4x|08000F30EEFF -1.3.6.1.2.1.4.22.1.2.62.136.231.68.152|4x|08000F30EF74 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.153|4x|08000F30EFB2 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.154|4x|08000F30F659 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.155|4x|08000F30EF6E -1.3.6.1.2.1.4.22.1.2.62.136.231.68.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.157|4x|08000F30EF2D -1.3.6.1.2.1.4.22.1.2.62.136.231.68.158|4x|08000F30EF03 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.159|4x|08000F1DF935 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.160|4x|08000F314F09 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.161|4x|08000F305CDA -1.3.6.1.2.1.4.22.1.2.62.136.231.68.162|4x|08000F2BED9E -1.3.6.1.2.1.4.22.1.2.62.136.231.68.163|4x|08000F2BD2A0 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.164|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.165|4x|08000F304163 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.166|4x|08000F2FE7DE -1.3.6.1.2.1.4.22.1.2.62.136.231.68.167|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.168|4x|08000F314F25 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.169|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.170|4x|08000F1B95F5 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.171|4x|08000F7D86DD -1.3.6.1.2.1.4.22.1.2.62.136.231.68.172|4x|08000F30EC45 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.173|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.174|4x|08000F3DA94C -1.3.6.1.2.1.4.22.1.2.62.136.231.68.175|4x|08000F42F3D4 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.176|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.177|4x|08000F314CAA -1.3.6.1.2.1.4.22.1.2.62.136.231.68.178|4x|08000F2FE753 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.179|4x|08000F1E0E04 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.181|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.182|4x|08000F2B3EBF -1.3.6.1.2.1.4.22.1.2.62.136.231.68.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.184|4x|08000F1DF8FC -1.3.6.1.2.1.4.22.1.2.62.136.231.68.185|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.186|4x|08000F30EF6A -1.3.6.1.2.1.4.22.1.2.62.136.231.68.187|4x|08000F30EF8A -1.3.6.1.2.1.4.22.1.2.62.136.231.68.188|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.189|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.190|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.191|4x|08000F3000B6 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.192|4x|08000F314EAE -1.3.6.1.2.1.4.22.1.2.62.136.231.68.193|4x|08000F3160E9 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.194|4x|08000F2FE96E -1.3.6.1.2.1.4.22.1.2.62.136.231.68.195|4x|08000F314E67 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.196|4x|08000F314C84 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.197|4x|08000F300BB5 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.198|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.199|4x|08000F2BED37 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.200|4x|08000F1B9B8B -1.3.6.1.2.1.4.22.1.2.62.136.231.68.201|4x|08000F42F4A8 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.202|4x|08000F2FE7FB -1.3.6.1.2.1.4.22.1.2.62.136.231.68.203|4x|08000F2FFEB4 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.204|4x|08000F30350A -1.3.6.1.2.1.4.22.1.2.62.136.231.68.205|4x|08000F2BEE12 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.206|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.207|4x|08000F7D869D -1.3.6.1.2.1.4.22.1.2.62.136.231.68.208|4x|08000F7D870C -1.3.6.1.2.1.4.22.1.2.62.136.231.68.209|4x|08000F7D86FC -1.3.6.1.2.1.4.22.1.2.62.136.231.68.210|4x|08000F7D876D -1.3.6.1.2.1.4.22.1.2.62.136.231.68.211|4x|08000F344C60 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.212|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.213|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.214|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.215|4x|08000F47BC9C -1.3.6.1.2.1.4.22.1.2.62.136.231.68.216|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.217|4x|08000F30EF1C -1.3.6.1.2.1.4.22.1.2.62.136.231.68.218|4x|08000F4168DD -1.3.6.1.2.1.4.22.1.2.62.136.231.68.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.221|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.222|4x|08000F469152 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.223|4x|08000F469B28 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.224|4x|08000F468DD1 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.225|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.226|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.227|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.228|4x|08000F42F4AB -1.3.6.1.2.1.4.22.1.2.62.136.231.68.229|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.230|4x|08000F46913C -1.3.6.1.2.1.4.22.1.2.62.136.231.68.231|4x|08000F42F40B -1.3.6.1.2.1.4.22.1.2.62.136.231.68.232|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.233|4x|08000F42F4A1 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.234|4x|08000F469151 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.235|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.236|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.237|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.238|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.239|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.242|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.243|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.244|4x|08000F1B96EC -1.3.6.1.2.1.4.22.1.2.62.136.231.68.245|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.246|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.247|4x|08000F2BACBA -1.3.6.1.2.1.4.22.1.2.62.136.231.68.248|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.249|4x|08000F1E017F -1.3.6.1.2.1.4.22.1.2.62.136.231.68.250|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.252|4x|08000F2BAB59 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.253|4x|08000F1E1849 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.254|4x|08000F300047 -1.3.6.1.2.1.4.22.1.2.62.136.231.68.255|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.0|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.1|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.5|4x|08000F2BE3F1 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.9|4x|08000F1E0BD1 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.10|4x|08000F1DF924 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.11|4x|08000F2BEC6E -1.3.6.1.2.1.4.22.1.2.62.136.231.69.12|4x|08000F1B88F8 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.13|4x|08000F1E144D -1.3.6.1.2.1.4.22.1.2.62.136.231.69.14|4x|08000F1B73DB -1.3.6.1.2.1.4.22.1.2.62.136.231.69.15|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.16|4x|08000F47C4FE -1.3.6.1.2.1.4.22.1.2.62.136.231.69.18|4x|08000F3DA941 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.19|4x|08000F30EF16 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.20|4x|08000F468D2B -1.3.6.1.2.1.4.22.1.2.62.136.231.69.21|4x|08000F30EF88 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.22|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.23|4x|08000F30EC43 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.24|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.25|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.28|4x|08000F1B93C0 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.29|4x|08000F314DF2 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.30|4x|08000F316137 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.31|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.32|4x|08000F2FF9D4 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.33|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.34|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.35|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.36|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.37|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.38|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.39|4x|08000F2BD8A3 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.40|4x|08000F30EF57 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.41|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.42|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.43|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.44|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.45|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.46|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.47|4x|08000F469AE7 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.48|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.49|4x|08000F469ADB -1.3.6.1.2.1.4.22.1.2.62.136.231.69.50|4x|08000F469149 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.51|4x|08000F30EF6D -1.3.6.1.2.1.4.22.1.2.62.136.231.69.52|4x|08000F468ED5 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.53|4x|08000F30EF29 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.54|4x|08000F1E1431 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.55|4x|08000F3005A0 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.56|4x|08000F314C60 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.57|4x|08000F2BE38D -1.3.6.1.2.1.4.22.1.2.62.136.231.69.59|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.60|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.61|4x|08000F46910B -1.3.6.1.2.1.4.22.1.2.62.136.231.69.62|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.63|4x|08000F3D9F6F -1.3.6.1.2.1.4.22.1.2.62.136.231.69.64|4x|08000F225EBB -1.3.6.1.2.1.4.22.1.2.62.136.231.69.65|4x|08000F2B3EFD -1.3.6.1.2.1.4.22.1.2.62.136.231.69.68|4x|08000F23B1E1 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.70|4x|08000F2B3EE2 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.71|4x|08000F2FE77E -1.3.6.1.2.1.4.22.1.2.62.136.231.69.72|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.73|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.74|4x|08000F30EF81 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.76|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.77|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.78|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.79|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.80|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.81|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.83|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.84|4x|08000F314F07 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.87|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.88|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.89|4x|08000F469104 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.92|4x|08000F2BEE3D -1.3.6.1.2.1.4.22.1.2.62.136.231.69.93|4x|08000F2BEE28 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.94|4x|08000F2B3E9F -1.3.6.1.2.1.4.22.1.2.62.136.231.69.95|4x|08000F2BE45D -1.3.6.1.2.1.4.22.1.2.62.136.231.69.96|4x|08000F1DF835 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.97|4x|08000F300604 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.98|4x|08000F2BE4EB -1.3.6.1.2.1.4.22.1.2.62.136.231.69.99|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.104|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.108|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.114|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.117|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.121|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.123|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.125|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.127|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.128|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.129|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.130|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.132|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.133|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.134|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.135|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.136|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.138|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.139|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.140|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.141|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.142|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.143|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.145|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.146|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.149|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.150|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.151|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.152|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.153|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.155|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.157|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.159|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.160|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.161|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.163|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.164|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.165|4x|08000F469162 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.166|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.167|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.168|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.169|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.170|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.171|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.172|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.173|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.175|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.176|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.177|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.178|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.179|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.180|4x|08000F300B80 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.181|4x|08000F469141 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.182|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.184|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.185|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.186|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.187|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.188|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.189|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.190|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.191|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.192|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.193|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.194|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.196|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.197|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.198|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.199|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.200|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.201|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.202|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.203|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.204|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.205|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.206|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.207|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.209|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.210|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.211|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.212|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.213|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.214|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.215|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.216|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.217|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.218|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.219|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.221|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.222|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.223|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.224|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.225|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.226|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.227|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.228|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.229|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.230|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.231|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.232|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.233|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.234|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.235|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.236|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.237|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.238|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.242|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.243|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.244|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.245|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.246|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.248|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.250|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.252|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.62.136.231.69.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.5|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.7|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.9|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.10|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.11|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.12|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.13|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.14|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.15|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.16|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.17|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.18|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.19|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.20|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.21|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.22|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.23|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.24|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.25|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.28|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.30|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.31|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.32|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.33|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.34|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.35|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.36|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.37|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.38|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.39|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.40|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.41|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.42|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.44|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.45|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.46|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.47|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.48|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.49|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.50|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.51|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.52|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.53|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.54|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.56|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.57|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.58|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.59|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.60|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.61|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.62|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.63|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.64|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.65|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.66|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.67|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.68|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.70|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.72|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.73|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.76|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.77|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.78|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.79|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.80|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.81|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.83|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.87|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.88|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.89|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.92|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.93|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.94|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.95|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.96|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.97|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.99|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.104|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.108|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.114|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.117|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.121|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.123|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.125|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.127|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.128|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.129|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.130|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.132|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.133|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.134|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.135|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.136|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.137|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.138|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.139|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.141|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.142|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.143|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.145|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.146|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.149|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.150|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.151|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.152|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.153|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.155|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.157|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.160|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.161|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.162|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.163|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.164|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.165|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.166|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.167|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.169|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.170|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.171|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.172|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.173|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.175|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.176|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.178|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.179|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.180|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.181|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.182|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.185|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.186|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.187|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.188|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.189|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.190|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.191|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.192|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.193|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.196|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.197|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.198|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.199|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.200|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.201|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.202|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.203|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.204|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.205|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.206|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.207|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.208|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.209|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.210|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.211|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.212|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.213|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.214|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.215|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.216|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.217|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.218|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.219|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.221|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.222|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.223|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.224|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.225|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.226|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.227|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.228|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.229|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.230|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.231|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.232|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.233|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.234|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.235|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.236|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.237|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.238|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.239|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.242|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.243|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.244|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.245|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.246|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.248|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.250|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.252|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.63.136.231.12.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.64.136.231.245.69|4x|005056B2277F -1.3.6.1.2.1.4.22.1.2.64.224.0.0.5|4x|01005E000005 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.5|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.9|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.10|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.11|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.12|4x|AC1F6BC02794 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.13|4x|AC1F6BC07308 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.14|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.15|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.16|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.17|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.18|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.19|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.20|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.21|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.22|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.23|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.24|4x|0CC47AEDB153 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.25|4x|0030489EBDD5 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.28|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.29|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.30|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.31|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.32|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.33|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.34|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.35|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.36|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.37|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.38|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.39|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.40|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.41|4x|0CC47A1B1D3A -1.3.6.1.2.1.4.22.1.2.65.136.231.56.42|4x|0CC47A1C8AEE -1.3.6.1.2.1.4.22.1.2.65.136.231.56.43|4x|0CC47A1C8A86 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.44|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.45|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.46|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.47|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.48|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.49|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.51|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.52|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.53|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.54|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.56|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.58|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.59|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.60|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.61|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.62|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.63|4x|0CC47AAE2C2A -1.3.6.1.2.1.4.22.1.2.65.136.231.56.64|4x|0CC47AAE2C2B -1.3.6.1.2.1.4.22.1.2.65.136.231.56.65|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.66|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.67|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.68|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.70|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.72|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.73|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.74|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.76|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.77|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.78|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.79|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.80|4x|003048DD32D8 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.81|4x|AC1F6BC02711 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.82|4x|AC1F6BC02DDF -1.3.6.1.2.1.4.22.1.2.65.136.231.56.83|4x|AC1F6BC025EC -1.3.6.1.2.1.4.22.1.2.65.136.231.56.84|4x|AC1F6BC02E47 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.85|4x|AC1F6BC0271C -1.3.6.1.2.1.4.22.1.2.65.136.231.56.86|4x|AC1F6BC027BF -1.3.6.1.2.1.4.22.1.2.65.136.231.56.87|4x|AC1F6BC025FC -1.3.6.1.2.1.4.22.1.2.65.136.231.56.88|4x|AC1F6BC02DDD -1.3.6.1.2.1.4.22.1.2.65.136.231.56.89|4x|AC1F6BC02712 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.90|4x|AC1F6B5C38BF -1.3.6.1.2.1.4.22.1.2.65.136.231.56.91|4x|AC1F6BC02E48 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.92|4x|AC1F6BC02713 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.93|4x|AC1F6BC01E2C -1.3.6.1.2.1.4.22.1.2.65.136.231.56.94|4x|AC1F6BC027A2 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.95|4x|AC1F6BC025EB -1.3.6.1.2.1.4.22.1.2.65.136.231.56.96|4x|AC1F6BC02E46 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.97|4x|AC1F6B5C3A65 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.98|4x|AC1F6B5C38EB -1.3.6.1.2.1.4.22.1.2.65.136.231.56.99|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.104|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.108|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.117|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.121|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.123|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.125|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.127|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.128|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.129|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.132|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.133|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.134|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.135|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.136|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.137|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.138|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.139|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.140|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.142|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.143|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.145|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.146|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.149|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.151|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.152|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.153|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.155|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.157|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.159|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.160|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.161|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.162|4x|002590CC9E57 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.163|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.164|4x|002590CC9E4B -1.3.6.1.2.1.4.22.1.2.65.136.231.56.165|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.166|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.167|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.168|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.169|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.170|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.171|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.172|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.173|4x|AC1F6B4A6455 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.174|4x|AC1F6B4A643C -1.3.6.1.2.1.4.22.1.2.65.136.231.56.175|4x|AC1F6B4A6469 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.176|4x|AC1F6B4A643B -1.3.6.1.2.1.4.22.1.2.65.136.231.56.177|4x|0025908C0D74 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.178|4x|0025908C0A1C -1.3.6.1.2.1.4.22.1.2.65.136.231.56.179|4x|0025908FBE7C -1.3.6.1.2.1.4.22.1.2.65.136.231.56.180|4x|0025908C0A1D -1.3.6.1.2.1.4.22.1.2.65.136.231.56.181|4x|0CC47AC754CE -1.3.6.1.2.1.4.22.1.2.65.136.231.56.182|4x|0CC47AC755A1 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.183|4x|0CC47AC75602 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.184|4x|0CC47AC75606 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.185|4x|0CC47AC7565E -1.3.6.1.2.1.4.22.1.2.65.136.231.56.186|4x|0CC47AC7565D -1.3.6.1.2.1.4.22.1.2.65.136.231.56.187|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.188|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.190|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.191|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.192|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.193|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.194|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.196|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.197|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.198|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.199|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.200|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.201|4x|0CC47A6D500C -1.3.6.1.2.1.4.22.1.2.65.136.231.56.202|4x|0CC47A36095B -1.3.6.1.2.1.4.22.1.2.65.136.231.56.203|4x|002590FE8D7A -1.3.6.1.2.1.4.22.1.2.65.136.231.56.204|4x|0CC47AAF768B -1.3.6.1.2.1.4.22.1.2.65.136.231.56.205|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.206|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.207|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.208|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.209|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.210|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.211|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.212|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.213|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.214|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.215|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.216|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.217|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.218|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.219|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.221|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.222|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.223|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.224|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.225|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.226|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.227|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.228|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.229|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.230|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.231|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.232|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.233|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.234|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.235|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.236|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.237|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.238|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.239|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.242|4x|002590CDFB73 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.243|4x|002590CF2B15 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.244|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.245|4x|0CC47AAE2FE4 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.246|4x|0025906DFFF2 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.248|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.250|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.252|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.56.255|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.0|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.1|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.2|4x|0CC47A360CE3 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.3|4x|0CC47AAF6D76 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.5|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.7|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.9|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.10|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.11|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.12|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.13|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.14|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.15|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.16|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.17|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.18|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.19|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.20|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.21|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.22|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.23|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.24|4x|AC1F6B5B1DE2 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.25|4x|0CC47AF47DF5 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.28|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.29|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.30|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.31|4x|0CC47AF47DF8 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.32|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.33|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.34|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.35|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.36|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.37|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.38|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.39|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.40|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.41|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.42|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.43|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.44|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.45|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.46|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.47|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.48|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.49|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.50|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.51|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.52|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.54|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.56|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.57|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.58|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.59|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.60|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.62|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.63|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.64|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.65|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.66|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.67|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.68|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.70|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.72|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.73|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.74|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.76|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.77|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.78|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.79|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.80|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.81|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.87|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.88|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.89|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.92|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.93|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.94|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.95|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.96|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.97|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.99|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.104|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.108|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.114|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.117|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.121|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.123|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.125|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.127|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.128|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.129|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.130|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.132|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.133|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.134|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.135|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.136|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.137|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.138|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.139|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.141|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.142|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.143|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.145|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.146|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.149|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.150|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.151|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.152|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.153|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.155|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.157|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.159|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.160|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.161|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.162|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.163|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.164|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.165|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.166|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.167|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.168|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.169|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.171|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.172|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.173|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.175|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.176|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.177|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.178|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.179|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.180|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.181|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.182|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.184|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.185|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.186|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.187|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.188|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.189|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.190|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.191|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.192|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.194|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.196|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.198|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.199|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.200|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.201|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.202|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.203|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.204|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.205|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.206|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.207|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.208|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.209|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.210|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.211|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.212|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.213|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.214|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.215|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.216|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.217|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.218|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.219|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.221|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.222|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.223|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.224|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.225|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.226|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.228|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.229|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.230|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.231|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.232|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.233|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.234|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.235|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.236|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.237|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.238|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.239|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.242|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.243|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.244|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.245|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.246|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.248|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.250|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.252|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.65.136.231.57.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.5|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.9|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.10|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.11|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.12|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.13|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.14|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.15|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.16|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.17|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.18|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.19|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.20|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.21|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.22|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.23|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.24|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.25|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.28|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.29|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.30|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.31|4x|00259058724F -1.3.6.1.2.1.4.22.1.2.66.136.231.58.32|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.33|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.34|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.35|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.36|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.37|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.38|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.39|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.40|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.41|4x|D4B110B28BEF -1.3.6.1.2.1.4.22.1.2.66.136.231.58.42|4x|D4B110B28BEE -1.3.6.1.2.1.4.22.1.2.66.136.231.58.43|4x|D4B110ACC8F0 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.44|4x|FC48EFC70A0A -1.3.6.1.2.1.4.22.1.2.66.136.231.58.45|4x|D4B110ACC380 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.46|4x|FC48EFC70A10 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.47|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.48|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.49|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.50|4x|9017ACB279C1 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.51|4x|F84ABF56BDAF -1.3.6.1.2.1.4.22.1.2.66.136.231.58.52|4x|BC9C31D66961 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.53|4x|BC9C31D669C3 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.54|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.56|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.57|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.58|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.59|4x|5439DFC68189 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.60|4x|5439DFC6816D -1.3.6.1.2.1.4.22.1.2.66.136.231.58.61|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.62|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.63|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.64|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.65|4x|D4B110B25BE1 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.66|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.67|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.68|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.70|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.72|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.73|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.74|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.76|4x|04F93895F248 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.77|4x|04F93895F248 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.78|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.79|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.80|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.81|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.87|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.88|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.89|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.92|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.93|4x|04F93895F25C -1.3.6.1.2.1.4.22.1.2.66.136.231.58.94|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.95|4x|04F93895F25C -1.3.6.1.2.1.4.22.1.2.66.136.231.58.96|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.97|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.104|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.108|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.113|4x|04F9388AB620 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.114|4x|B41513F3C4F0 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.115|4x|04F9388AB570 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.116|4x|04F9388D3A3F -1.3.6.1.2.1.4.22.1.2.66.136.231.58.117|4x|04F9388D3AB7 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.119|4x|04F938835A39 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.121|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.122|4x|04F9388D3AC6 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.123|4x|04F9388D3A53 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.124|4x|04F938835A7D -1.3.6.1.2.1.4.22.1.2.66.136.231.58.125|4x|486276037143 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.127|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.128|4x|486276037143 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.129|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.130|4x|200BC7285554 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.131|4x|200BC7285586 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.132|4x|00C0DD303B8E -1.3.6.1.2.1.4.22.1.2.66.136.231.58.133|4x|00C0DD302D38 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.134|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.135|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.136|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.137|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.138|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.139|4x|0025904A6E9B -1.3.6.1.2.1.4.22.1.2.66.136.231.58.140|4x|0025904A6E9C -1.3.6.1.2.1.4.22.1.2.66.136.231.58.141|4x|0025904A7028 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.142|4x|0025904A6E95 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.143|4x|0025904A625B -1.3.6.1.2.1.4.22.1.2.66.136.231.58.144|4x|0025904A7026 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.145|4x|0025904A7023 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.146|4x|0025904A6F98 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.149|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.150|4x|04F9389996E3 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.151|4x|04F9389996DB -1.3.6.1.2.1.4.22.1.2.66.136.231.58.152|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.153|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.155|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.157|4x|00409D55F7DB -1.3.6.1.2.1.4.22.1.2.66.136.231.58.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.159|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.160|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.161|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.162|4x|E03676D87A5E -1.3.6.1.2.1.4.22.1.2.66.136.231.58.163|4x|E03676D87A4A -1.3.6.1.2.1.4.22.1.2.66.136.231.58.164|4x|E03676D868EE -1.3.6.1.2.1.4.22.1.2.66.136.231.58.165|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.166|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.168|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.169|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.171|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.172|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.173|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.175|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.176|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.177|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.178|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.179|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.180|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.181|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.182|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.184|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.185|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.186|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.187|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.188|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.189|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.190|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.191|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.192|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.193|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.196|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.197|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.198|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.199|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.200|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.201|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.202|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.203|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.204|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.205|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.206|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.207|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.208|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.209|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.210|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.211|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.212|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.213|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.214|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.215|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.216|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.217|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.218|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.219|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.221|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.222|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.223|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.224|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.225|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.226|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.227|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.228|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.229|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.230|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.231|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.232|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.233|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.234|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.235|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.236|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.237|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.238|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.239|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.242|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.243|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.244|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.245|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.246|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.248|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.250|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.252|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.58.255|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.0|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.1|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.5|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.7|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.9|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.10|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.11|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.12|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.13|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.14|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.15|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.16|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.17|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.18|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.19|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.20|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.21|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.22|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.23|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.24|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.25|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.28|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.29|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.30|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.31|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.32|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.33|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.34|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.35|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.36|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.37|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.38|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.39|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.41|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.42|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.43|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.44|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.45|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.46|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.47|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.48|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.49|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.50|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.51|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.52|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.53|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.54|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.56|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.58|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.59|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.60|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.61|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.62|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.63|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.64|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.65|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.66|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.67|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.68|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.70|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.72|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.73|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.74|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.76|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.77|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.78|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.79|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.80|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.81|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.83|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.87|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.88|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.89|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.92|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.93|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.94|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.95|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.96|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.97|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.99|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.104|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.108|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.114|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.117|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.121|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.123|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.125|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.128|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.129|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.130|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.132|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.133|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.134|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.135|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.136|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.137|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.138|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.139|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.140|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.141|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.145|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.146|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.149|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.150|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.151|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.152|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.153|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.155|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.157|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.159|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.160|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.161|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.162|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.163|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.164|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.165|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.166|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.167|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.168|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.169|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.170|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.171|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.172|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.173|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.175|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.176|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.177|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.178|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.179|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.180|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.181|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.184|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.185|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.186|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.187|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.188|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.189|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.190|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.191|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.192|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.193|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.194|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.197|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.198|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.199|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.201|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.202|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.203|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.204|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.205|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.206|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.207|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.208|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.209|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.210|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.211|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.212|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.213|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.214|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.215|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.216|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.217|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.218|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.219|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.221|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.222|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.225|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.226|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.227|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.228|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.229|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.230|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.231|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.232|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.233|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.234|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.235|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.236|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.237|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.238|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.239|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.242|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.243|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.245|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.246|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.248|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.250|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.252|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.66.136.231.59.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.67.136.231.128.77|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.67.136.231.128.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.67.136.231.128.115|4x|D89D67972ACD -1.3.6.1.2.1.4.22.1.2.67.224.0.0.5|4x|01005E000005 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.5|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.7|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.9|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.10|4x|005056B27836 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.11|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.12|4x|0050569F4C24 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.13|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.14|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.15|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.16|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.17|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.18|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.19|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.20|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.21|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.22|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.23|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.24|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.25|4x|0050568A7F1A -1.3.6.1.2.1.4.22.1.2.68.136.231.50.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.28|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.29|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.30|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.31|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.32|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.33|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.34|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.35|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.36|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.37|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.38|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.39|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.40|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.41|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.42|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.43|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.44|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.45|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.46|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.47|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.49|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.50|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.51|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.52|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.53|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.54|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.56|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.57|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.58|4x|0050568A45D3 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.59|4x|0050568A45D6 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.60|4x|0050568A45D7 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.61|4x|0050568A45D8 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.62|4x|005056B23887 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.63|4x|005056B22BF6 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.64|4x|005056B2053A -1.3.6.1.2.1.4.22.1.2.68.136.231.50.65|4x|005056B26939 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.66|4x|005056B21723 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.67|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.68|4x|005056B2544A -1.3.6.1.2.1.4.22.1.2.68.136.231.50.69|4x|54BEF765A6A5 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.70|4x|0050568A7A7F -1.3.6.1.2.1.4.22.1.2.68.136.231.50.71|4x|005056B2096B -1.3.6.1.2.1.4.22.1.2.68.136.231.50.72|4x|005056B23022 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.73|4x|005056B270AF -1.3.6.1.2.1.4.22.1.2.68.136.231.50.74|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.76|4x|005056B25DBD -1.3.6.1.2.1.4.22.1.2.68.136.231.50.77|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.78|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.79|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.80|4x|005056B24A95 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.81|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.87|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.88|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.89|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.92|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.94|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.95|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.96|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.97|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.99|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.108|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.114|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.117|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.121|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.123|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.125|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.127|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.128|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.129|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.130|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.132|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.133|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.134|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.135|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.136|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.137|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.139|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.140|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.141|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.142|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.143|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.145|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.146|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.150|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.151|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.152|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.153|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.155|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.157|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.159|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.160|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.161|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.162|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.163|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.164|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.165|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.166|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.167|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.168|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.169|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.170|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.171|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.172|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.173|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.175|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.177|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.178|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.179|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.180|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.182|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.184|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.185|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.186|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.187|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.188|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.189|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.190|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.191|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.192|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.193|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.194|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.196|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.198|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.199|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.200|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.201|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.202|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.203|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.204|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.206|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.207|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.208|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.209|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.210|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.212|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.213|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.214|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.215|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.216|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.217|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.218|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.219|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.221|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.222|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.223|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.224|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.225|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.226|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.227|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.228|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.229|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.230|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.231|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.232|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.233|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.234|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.235|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.236|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.237|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.238|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.239|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.242|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.243|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.244|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.245|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.246|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.248|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.250|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.252|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.50.255|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.0|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.1|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.7|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.9|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.10|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.11|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.12|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.13|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.14|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.15|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.16|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.17|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.18|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.19|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.21|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.22|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.23|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.24|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.25|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.29|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.30|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.31|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.32|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.33|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.34|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.35|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.36|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.37|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.38|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.39|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.40|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.41|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.42|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.43|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.44|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.45|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.47|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.48|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.49|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.50|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.51|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.52|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.54|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.56|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.57|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.58|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.59|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.60|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.61|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.62|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.63|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.64|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.65|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.66|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.67|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.68|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.70|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.72|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.73|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.74|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.76|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.77|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.80|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.81|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.83|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.87|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.88|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.89|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.92|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.93|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.94|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.95|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.96|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.97|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.99|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.104|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.108|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.114|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.117|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.121|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.123|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.125|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.127|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.128|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.129|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.130|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.132|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.133|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.134|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.135|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.136|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.137|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.138|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.139|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.140|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.141|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.142|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.143|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.145|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.146|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.149|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.150|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.151|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.152|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.153|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.155|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.157|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.159|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.160|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.161|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.162|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.163|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.164|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.165|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.166|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.167|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.168|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.169|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.170|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.171|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.172|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.173|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.175|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.176|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.177|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.178|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.179|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.180|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.181|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.182|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.184|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.185|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.186|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.187|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.188|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.189|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.190|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.191|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.192|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.194|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.196|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.197|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.199|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.200|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.201|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.202|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.203|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.204|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.205|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.206|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.207|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.208|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.209|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.210|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.211|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.212|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.213|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.214|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.215|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.216|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.217|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.218|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.219|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.221|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.223|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.224|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.225|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.226|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.227|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.228|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.229|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.230|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.231|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.232|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.233|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.234|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.236|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.237|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.238|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.239|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.242|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.243|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.244|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.246|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.248|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.250|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.252|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.68.136.231.51.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.5|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.7|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.9|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.10|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.11|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.12|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.13|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.14|4x|00408CC26D82 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.15|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.16|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.17|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.18|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.19|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.20|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.21|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.22|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.23|4x|005056B25E4E -1.3.6.1.2.1.4.22.1.2.69.136.231.52.24|4x|005056B27C4A -1.3.6.1.2.1.4.22.1.2.69.136.231.52.25|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.27|4x|005056B25EB8 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.28|4x|005056B2780D -1.3.6.1.2.1.4.22.1.2.69.136.231.52.29|4x|005056B221A7 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.30|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.31|4x|005056B23EB4 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.32|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.33|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.34|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.36|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.37|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.38|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.39|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.40|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.41|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.42|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.43|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.44|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.45|4x|005056B2D2B2 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.46|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.47|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.48|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.49|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.50|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.51|4x|005056B2055B -1.3.6.1.2.1.4.22.1.2.69.136.231.52.52|4x|005056B22246 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.53|4x|005056B26677 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.54|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.56|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.57|4x|005056B29C96 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.58|4x|005056B270E4 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.59|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.61|4x|005056B2D3A7 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.62|4x|005056B211B2 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.63|4x|005056B249D8 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.64|4x|005056B29520 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.65|4x|005056B27ED7 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.66|4x|005056B21009 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.67|4x|005056B20547 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.68|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.70|4x|005056B29A31 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.72|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.73|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.74|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.76|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.77|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.78|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.79|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.80|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.81|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.83|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.87|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.88|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.89|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.90|4x|005056B2FFD2 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.92|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.93|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.94|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.95|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.96|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.97|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.99|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.104|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.108|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.114|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.117|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.121|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.123|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.125|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.127|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.128|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.129|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.130|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.132|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.133|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.134|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.135|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.136|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.137|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.138|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.139|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.140|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.141|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.142|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.143|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.145|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.146|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.149|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.150|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.151|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.152|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.153|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.155|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.157|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.159|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.160|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.161|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.162|4x|000305187269 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.163|4x|00D093263C20 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.164|4x|00D093263D53 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.165|4x|00D093297671 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.166|4x|00D0932851D7 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.167|4x|00D0932ABF37 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.168|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.169|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.170|4x|000D5D0D2392 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.171|4x|000D5D0D24B0 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.172|4x|000D5D0D237F -1.3.6.1.2.1.4.22.1.2.69.136.231.52.173|4x|000D5D0D1833 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.174|4x|000D5D0D2376 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.175|4x|000D5D0D24B5 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.176|4x|000D5D0D2467 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.177|4x|000D5D0D24DC -1.3.6.1.2.1.4.22.1.2.69.136.231.52.178|4x|000D5D0D24DA -1.3.6.1.2.1.4.22.1.2.69.136.231.52.179|4x|000D5D0D2385 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.180|4x|000D5D0D24D6 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.181|4x|000D5D0D2514 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.182|4x|000D5D0D234A -1.3.6.1.2.1.4.22.1.2.69.136.231.52.183|4x|000D5D0D24AD -1.3.6.1.2.1.4.22.1.2.69.136.231.52.184|4x|000D5D0D2502 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.185|4x|000D5D0D24E4 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.186|4x|000D5D0D24C4 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.187|4x|000D5D0D24AF -1.3.6.1.2.1.4.22.1.2.69.136.231.52.188|4x|00D0932B7AED -1.3.6.1.2.1.4.22.1.2.69.136.231.52.189|4x|00D093365C2B -1.3.6.1.2.1.4.22.1.2.69.136.231.52.190|4x|00D093365CA0 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.191|4x|00D093365CBD -1.3.6.1.2.1.4.22.1.2.69.136.231.52.192|4x|00D093365CAE -1.3.6.1.2.1.4.22.1.2.69.136.231.52.193|4x|00D093365C2D -1.3.6.1.2.1.4.22.1.2.69.136.231.52.194|4x|00D093365CB2 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.195|4x|00D093365C98 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.196|4x|000305189452 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.197|4x|008067FD79B2 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.198|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.199|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.200|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.201|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.202|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.203|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.204|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.205|4x|BC620E09ADEC -1.3.6.1.2.1.4.22.1.2.69.136.231.52.206|4x|54511B905467 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.207|4x|BC620E09AE10 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.208|4x|A8CA7B7AFFAD -1.3.6.1.2.1.4.22.1.2.69.136.231.52.209|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.210|4x|000BDC0119C6 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.211|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.212|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.213|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.214|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.215|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.216|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.217|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.218|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.219|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.221|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.222|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.223|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.224|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.225|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.226|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.227|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.228|4x|D02212B04E64 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.229|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.230|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.231|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.232|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.233|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.234|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.235|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.236|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.237|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.238|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.239|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.242|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.243|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.244|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.245|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.246|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.248|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.250|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.252|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.52.255|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.1|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.5|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.7|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.9|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.10|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.11|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.12|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.14|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.15|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.16|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.17|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.18|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.19|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.20|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.21|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.22|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.23|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.24|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.25|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.28|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.29|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.30|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.31|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.32|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.34|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.35|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.36|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.37|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.38|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.39|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.40|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.41|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.42|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.43|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.44|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.45|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.46|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.47|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.48|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.49|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.50|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.51|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.52|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.53|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.54|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.56|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.58|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.59|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.60|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.61|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.62|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.63|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.64|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.65|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.66|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.67|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.68|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.70|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.73|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.74|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.76|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.77|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.78|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.79|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.80|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.81|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.83|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.87|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.88|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.89|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.92|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.93|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.94|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.95|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.96|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.97|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.99|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.104|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.108|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.114|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.117|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.121|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.123|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.125|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.127|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.128|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.129|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.130|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.132|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.133|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.134|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.135|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.136|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.137|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.138|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.139|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.140|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.141|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.142|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.143|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.146|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.150|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.151|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.153|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.155|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.157|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.159|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.161|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.162|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.163|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.164|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.165|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.166|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.167|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.168|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.169|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.170|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.171|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.172|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.175|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.176|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.177|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.178|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.179|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.180|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.182|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.184|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.185|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.186|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.187|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.188|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.189|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.190|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.191|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.192|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.193|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.194|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.196|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.197|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.198|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.199|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.200|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.201|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.202|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.203|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.204|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.205|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.206|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.207|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.208|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.210|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.211|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.212|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.213|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.214|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.215|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.216|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.217|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.218|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.219|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.221|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.222|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.223|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.224|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.225|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.226|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.227|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.228|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.229|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.230|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.231|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.232|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.233|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.235|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.236|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.237|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.238|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.239|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.242|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.243|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.244|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.245|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.246|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.248|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.250|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.252|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.53.255|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.0|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.1|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.7|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.9|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.10|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.11|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.12|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.13|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.14|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.15|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.16|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.17|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.18|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.19|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.20|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.21|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.22|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.23|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.24|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.25|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.28|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.29|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.30|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.31|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.32|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.33|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.34|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.36|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.37|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.38|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.39|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.40|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.41|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.42|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.43|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.44|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.45|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.46|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.47|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.49|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.50|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.51|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.52|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.53|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.56|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.57|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.58|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.59|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.60|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.61|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.62|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.63|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.64|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.65|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.67|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.68|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.70|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.72|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.73|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.74|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.77|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.79|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.80|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.83|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.87|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.88|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.89|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.92|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.93|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.94|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.95|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.96|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.97|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.99|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.104|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.108|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.114|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.117|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.121|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.123|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.125|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.127|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.128|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.129|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.130|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.132|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.133|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.134|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.135|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.136|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.137|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.138|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.139|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.140|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.141|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.142|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.143|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.145|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.146|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.149|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.150|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.151|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.152|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.153|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.155|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.157|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.159|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.160|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.161|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.162|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.163|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.164|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.165|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.166|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.167|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.168|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.169|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.170|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.171|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.172|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.173|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.175|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.176|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.177|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.178|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.179|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.180|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.181|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.182|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.184|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.185|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.186|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.187|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.188|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.190|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.191|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.193|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.194|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.196|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.197|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.198|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.199|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.200|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.201|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.202|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.204|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.205|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.206|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.207|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.208|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.209|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.210|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.211|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.212|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.213|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.214|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.215|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.216|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.217|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.218|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.219|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.221|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.222|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.223|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.224|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.225|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.226|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.227|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.228|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.229|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.230|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.231|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.232|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.233|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.234|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.235|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.236|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.237|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.238|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.239|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.242|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.243|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.244|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.245|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.250|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.252|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.54.255|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.0|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.1|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.5|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.7|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.10|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.11|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.12|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.13|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.14|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.15|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.16|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.17|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.18|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.19|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.20|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.21|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.22|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.23|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.24|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.25|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.28|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.29|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.30|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.31|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.32|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.33|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.34|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.35|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.36|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.37|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.38|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.39|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.40|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.41|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.43|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.44|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.45|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.46|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.47|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.48|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.49|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.51|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.52|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.53|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.54|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.56|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.57|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.58|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.59|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.60|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.61|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.62|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.63|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.64|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.65|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.66|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.67|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.68|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.72|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.73|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.74|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.76|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.77|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.78|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.79|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.80|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.81|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.83|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.87|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.88|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.89|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.92|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.93|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.94|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.95|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.97|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.99|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.104|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.121|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.123|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.125|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.127|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.128|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.129|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.130|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.132|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.133|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.134|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.135|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.136|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.137|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.138|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.139|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.140|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.141|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.142|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.143|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.146|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.149|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.150|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.151|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.152|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.153|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.155|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.157|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.159|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.161|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.162|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.163|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.164|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.165|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.166|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.167|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.168|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.169|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.170|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.171|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.172|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.173|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.175|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.177|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.178|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.179|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.180|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.181|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.184|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.185|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.187|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.188|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.189|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.190|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.191|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.192|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.193|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.194|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.196|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.197|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.198|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.199|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.200|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.201|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.203|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.204|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.205|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.206|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.207|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.208|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.209|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.210|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.211|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.212|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.213|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.214|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.215|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.216|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.217|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.218|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.219|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.221|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.222|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.223|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.224|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.225|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.226|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.228|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.229|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.230|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.231|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.232|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.233|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.234|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.235|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.236|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.237|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.238|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.239|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.242|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.243|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.244|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.245|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.246|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.248|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.250|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.252|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.69.136.231.55.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.5|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.7|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.9|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.10|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.11|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.12|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.13|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.14|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.16|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.17|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.18|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.19|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.20|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.21|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.22|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.23|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.24|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.25|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.28|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.29|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.30|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.31|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.32|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.33|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.34|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.35|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.36|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.37|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.38|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.39|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.40|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.41|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.42|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.43|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.44|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.45|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.46|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.47|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.48|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.49|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.51|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.52|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.53|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.54|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.56|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.57|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.58|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.59|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.60|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.61|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.62|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.63|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.64|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.65|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.66|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.67|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.68|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.70|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.72|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.73|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.74|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.76|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.77|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.78|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.79|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.80|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.81|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.87|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.88|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.89|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.92|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.93|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.94|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.95|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.96|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.99|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.104|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.108|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.114|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.117|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.121|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.123|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.125|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.127|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.128|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.129|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.130|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.132|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.133|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.134|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.135|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.136|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.137|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.138|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.139|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.140|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.141|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.142|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.143|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.145|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.146|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.149|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.150|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.151|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.152|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.153|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.155|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.159|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.160|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.162|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.163|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.164|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.165|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.166|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.167|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.168|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.169|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.170|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.171|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.172|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.173|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.175|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.176|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.177|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.178|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.179|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.180|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.181|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.182|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.184|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.185|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.186|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.187|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.188|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.189|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.190|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.191|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.192|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.193|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.194|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.196|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.198|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.199|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.200|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.201|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.202|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.203|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.205|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.206|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.207|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.208|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.209|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.210|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.211|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.212|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.213|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.214|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.215|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.216|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.217|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.218|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.219|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.221|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.222|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.223|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.224|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.225|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.226|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.227|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.228|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.229|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.230|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.231|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.232|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.233|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.234|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.235|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.236|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.237|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.238|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.239|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.242|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.243|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.244|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.245|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.246|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.248|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.252|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.70.136.231.48.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.5|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.7|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.10|4x|005056B2070D -1.3.6.1.2.1.4.22.1.2.71.136.231.129.11|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.12|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.14|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.15|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.16|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.17|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.18|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.19|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.20|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.21|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.22|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.24|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.25|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.28|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.29|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.30|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.31|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.32|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.33|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.34|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.36|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.37|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.38|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.39|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.40|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.41|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.42|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.43|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.44|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.46|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.47|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.48|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.49|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.50|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.51|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.52|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.53|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.54|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.56|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.57|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.58|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.59|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.60|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.62|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.64|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.65|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.66|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.67|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.68|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.70|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.72|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.73|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.74|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.76|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.77|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.78|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.79|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.80|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.81|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.83|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.87|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.88|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.89|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.92|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.93|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.94|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.95|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.96|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.97|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.99|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.100|4x|4437E6880295 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.101|4x|4437E687A594 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.102|4x|4437E68802C5 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.103|4x|4437E6879036 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.104|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.108|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.114|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.117|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.121|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.123|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.125|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.127|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.128|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.129|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.130|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.132|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.133|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.134|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.135|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.136|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.137|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.138|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.139|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.140|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.141|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.142|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.143|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.145|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.146|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.149|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.151|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.152|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.153|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.155|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.157|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.159|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.160|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.161|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.162|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.163|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.164|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.165|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.166|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.167|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.168|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.169|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.170|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.171|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.172|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.173|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.175|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.176|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.177|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.178|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.179|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.180|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.182|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.184|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.185|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.186|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.187|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.188|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.189|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.190|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.191|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.193|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.194|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.196|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.197|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.198|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.199|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.200|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.201|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.202|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.203|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.204|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.205|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.206|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.207|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.208|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.209|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.210|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.211|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.212|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.215|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.216|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.217|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.219|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.221|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.222|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.223|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.224|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.225|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.226|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.227|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.228|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.229|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.230|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.231|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.232|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.233|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.234|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.235|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.236|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.237|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.238|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.239|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.242|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.243|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.244|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.245|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.246|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.248|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.250|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.252|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.71.136.231.129.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.5|4x|005056B2D766 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.7|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.9|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.10|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.11|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.13|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.14|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.16|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.17|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.18|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.19|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.20|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.21|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.23|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.24|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.28|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.29|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.30|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.31|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.32|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.33|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.34|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.35|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.36|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.37|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.38|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.39|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.40|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.42|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.43|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.44|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.45|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.46|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.47|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.48|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.49|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.50|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.51|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.53|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.54|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.56|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.57|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.58|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.59|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.60|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.61|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.62|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.63|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.64|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.65|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.66|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.67|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.68|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.72|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.73|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.74|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.76|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.77|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.78|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.79|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.80|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.81|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.87|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.88|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.89|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.92|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.93|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.94|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.95|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.96|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.97|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.99|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.108|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.114|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.117|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.121|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.123|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.125|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.127|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.128|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.129|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.130|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.132|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.133|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.134|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.135|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.136|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.137|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.138|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.139|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.140|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.141|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.143|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.145|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.146|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.149|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.150|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.151|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.152|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.155|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.157|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.159|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.160|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.161|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.162|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.163|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.164|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.165|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.166|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.167|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.168|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.169|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.170|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.171|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.172|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.173|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.175|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.176|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.178|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.179|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.181|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.182|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.184|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.185|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.186|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.188|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.190|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.191|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.193|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.194|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.196|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.197|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.198|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.199|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.200|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.201|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.202|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.203|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.204|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.205|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.206|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.207|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.208|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.211|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.212|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.213|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.214|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.215|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.216|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.217|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.218|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.219|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.221|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.222|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.223|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.224|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.225|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.226|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.227|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.228|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.229|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.230|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.231|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.232|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.233|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.234|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.235|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.236|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.237|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.238|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.239|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.242|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.243|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.244|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.245|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.246|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.248|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.250|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.252|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.73.136.231.99.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.5|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.7|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.9|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.10|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.11|4x|0050569C3977 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.12|4x|005056AA75EF -1.3.6.1.2.1.4.22.1.2.74.136.231.76.13|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.14|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.15|4x|0050569C39A0 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.16|4x|0050569C7129 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.17|4x|005056AA5D48 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.18|4x|005056AA5D48 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.19|4x|005056AA9692 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.20|4x|005056AA9692 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.21|4x|005056AA4E38 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.22|4x|005056AA4E38 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.23|4x|005056AA4E38 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.24|4x|005056AA98CA -1.3.6.1.2.1.4.22.1.2.74.136.231.76.25|4x|005056AADB7C -1.3.6.1.2.1.4.22.1.2.74.136.231.76.26|4x|005056AADB7C -1.3.6.1.2.1.4.22.1.2.74.136.231.76.27|4x|005056AA2D41 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.28|4x|005056AA2D41 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.29|4x|005056AA98CA -1.3.6.1.2.1.4.22.1.2.74.136.231.76.30|4x|005056AA1192 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.31|4x|005056AA1192 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.32|4x|005056AA0B06 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.33|4x|005056AA0B06 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.34|4x|005056AA2CD5 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.35|4x|005056AA2CD5 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.36|4x|005056AAF4EB -1.3.6.1.2.1.4.22.1.2.74.136.231.76.37|4x|005056AAF4EB -1.3.6.1.2.1.4.22.1.2.74.136.231.76.38|4x|005056AA84C8 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.39|4x|005056AA6A09 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.40|4x|005056AA8B9F -1.3.6.1.2.1.4.22.1.2.74.136.231.76.41|4x|005056AA8B9F -1.3.6.1.2.1.4.22.1.2.74.136.231.76.42|4x|005056AA5454 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.43|4x|005056AA5454 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.44|4x|005056AAE110 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.45|4x|005056AAE110 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.46|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.47|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.48|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.49|4x|005056AA7CF1 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.50|4x|005056AA7CF1 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.51|4x|005056AA3FA3 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.52|4x|005056AA3FA3 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.53|4x|005056AAAE12 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.54|4x|005056AAD50D -1.3.6.1.2.1.4.22.1.2.74.136.231.76.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.56|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.57|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.58|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.59|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.60|4x|005056AA28F1 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.61|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.62|4x|005056AA17E7 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.63|4x|005056AA17E7 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.64|4x|005056AAF164 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.65|4x|005056AAF164 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.66|4x|0050569C3972 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.67|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.68|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.69|4x|005056AA75EF -1.3.6.1.2.1.4.22.1.2.74.136.231.76.70|4x|005056AA0EFB -1.3.6.1.2.1.4.22.1.2.74.136.231.76.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.72|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.73|4x|005056AA5974 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.74|4x|005056AA5974 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.75|4x|005056AA21F9 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.76|4x|005056AA21F9 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.77|4x|005056AAD8A3 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.78|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.79|4x|005056AA0EFB -1.3.6.1.2.1.4.22.1.2.74.136.231.76.80|4x|005056AA054B -1.3.6.1.2.1.4.22.1.2.74.136.231.76.81|4x|005056AA054B -1.3.6.1.2.1.4.22.1.2.74.136.231.76.82|4x|005056AA1C89 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.83|4x|005056AA9257 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.84|4x|005056AA9257 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.85|4x|005056AA1F25 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.86|4x|005056AA1F25 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.87|4x|005056AA1C89 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.88|4x|005056AAC109 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.89|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.91|4x|005056AA69CF -1.3.6.1.2.1.4.22.1.2.74.136.231.76.92|4x|005056AA69CF -1.3.6.1.2.1.4.22.1.2.74.136.231.76.93|4x|005056AADD66 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.94|4x|005056AADD66 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.95|4x|005056AAAD42 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.96|4x|005056AAAD42 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.97|4x|005056AAC109 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.99|4x|005059AA5974 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.102|4x|005056AA3155 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.103|4x|005056AA3155 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.104|4x|005056AAFC2D -1.3.6.1.2.1.4.22.1.2.74.136.231.76.105|4x|005056AAFC2D -1.3.6.1.2.1.4.22.1.2.74.136.231.76.106|4x|005056AACDEE -1.3.6.1.2.1.4.22.1.2.74.136.231.76.107|4x|005056AACDEE -1.3.6.1.2.1.4.22.1.2.74.136.231.76.108|4x|005056AABC74 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.109|4x|005056AA0229 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.110|4x|005056AA8F7C -1.3.6.1.2.1.4.22.1.2.74.136.231.76.111|4x|005056AA8F7C -1.3.6.1.2.1.4.22.1.2.74.136.231.76.112|4x|005056AAC54E -1.3.6.1.2.1.4.22.1.2.74.136.231.76.113|4x|005056AAC54E -1.3.6.1.2.1.4.22.1.2.74.136.231.76.114|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.116|4x|005056AAAA64 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.117|4x|005056AA0229 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.119|4x|005056AAB1EF -1.3.6.1.2.1.4.22.1.2.74.136.231.76.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.121|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.122|4x|005056AAA0B6 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.123|4x|0050569C12E1 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.125|4x|0050569C0034 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.126|4x|005056AA1ECC -1.3.6.1.2.1.4.22.1.2.74.136.231.76.127|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.128|4x|005056AA0F91 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.129|4x|005056AA0F91 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.130|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.132|4x|005056AA8D50 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.133|4x|005056AA8D50 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.134|4x|005056AA91D1 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.135|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.136|4x|005056AAB941 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.137|4x|005056AA91D1 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.138|4x|005056AAD531 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.139|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.140|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.141|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.142|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.143|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.145|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.146|4x|005056AA6049 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.147|4x|04F93894CA58 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.148|4x|005056AAC198 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.149|4x|005056AAC198 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.150|4x|005056AA1699 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.151|4x|005056AA1699 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.152|4x|005056AA2C50 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.153|4x|005056AA2C50 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.154|4x|005056AAAABD -1.3.6.1.2.1.4.22.1.2.74.136.231.76.155|4x|005056AAAABD -1.3.6.1.2.1.4.22.1.2.74.136.231.76.156|4x|005056AA7421 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.157|4x|005056AA7421 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.158|4x|005056AA6657 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.159|4x|005056AA6657 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.160|4x|005056AA849F -1.3.6.1.2.1.4.22.1.2.74.136.231.76.161|4x|005056AA849F -1.3.6.1.2.1.4.22.1.2.74.136.231.76.162|4x|005056AA8102 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.163|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.164|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.165|4x|005056AA8BE5 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.166|4x|005056AA8BE5 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.167|4x|005056AACDE5 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.168|4x|005056AAC66E -1.3.6.1.2.1.4.22.1.2.74.136.231.76.169|4x|005056AAC66E -1.3.6.1.2.1.4.22.1.2.74.136.231.76.170|4x|005056AAC6AE -1.3.6.1.2.1.4.22.1.2.74.136.231.76.171|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.172|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.173|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.175|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.176|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.177|4x|005056AA5A35 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.178|4x|005056AA5A35 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.179|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.180|4x|005056AA8867 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.181|4x|005056AA8867 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.182|4x|005056AA8102 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.183|4x|005056AA1ECC -1.3.6.1.2.1.4.22.1.2.74.136.231.76.184|4x|005056AA64D9 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.185|4x|005056AA64D9 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.186|4x|005056AA0223 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.187|4x|005056AA0223 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.188|4x|005056AA7EAC -1.3.6.1.2.1.4.22.1.2.74.136.231.76.189|4x|005056AA1F69 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.190|4x|005056AA7EAC -1.3.6.1.2.1.4.22.1.2.74.136.231.76.191|4x|005056AA1F69 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.192|4x|005056AABA9B -1.3.6.1.2.1.4.22.1.2.74.136.231.76.193|4x|005056AABA9B -1.3.6.1.2.1.4.22.1.2.74.136.231.76.194|4x|005056AA7690 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.196|4x|005056AA9759 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.197|4x|005056AA9759 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.198|4x|005056AA2F52 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.199|4x|005056AA2F52 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.200|4x|005056AA4E4E -1.3.6.1.2.1.4.22.1.2.74.136.231.76.201|4x|005056AA4E4E -1.3.6.1.2.1.4.22.1.2.74.136.231.76.202|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.203|4x|005056AA4BF0 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.204|4x|005056AA6AAD -1.3.6.1.2.1.4.22.1.2.74.136.231.76.205|4x|005056AA6AAD -1.3.6.1.2.1.4.22.1.2.74.136.231.76.206|4x|005056AAD50D -1.3.6.1.2.1.4.22.1.2.74.136.231.76.207|4x|005056AAAE12 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.208|4x|005056AACD85 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.209|4x|005056AACD85 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.210|4x|005056AA9BCD -1.3.6.1.2.1.4.22.1.2.74.136.231.76.211|4x|005056AA9BCD -1.3.6.1.2.1.4.22.1.2.74.136.231.76.212|4x|005056AACDE5 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.213|4x|005056AACDE5 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.214|4x|005056AAC6AE -1.3.6.1.2.1.4.22.1.2.74.136.231.76.215|4x|005059AA5974 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.216|4x|005056AAE0A1 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.217|4x|005056AAE0A1 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.218|4x|005056AA30A3 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.219|4x|005056AA30A3 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.220|4x|005056AA27A3 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.221|4x|005056AA7C49 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.222|4x|005056AA7C49 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.223|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.224|4x|005056AAAD6B -1.3.6.1.2.1.4.22.1.2.74.136.231.76.225|4x|005056AA7D96 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.226|4x|005056AAAD6B -1.3.6.1.2.1.4.22.1.2.74.136.231.76.227|4x|005056AABC74 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.228|4x|005056AA4ED2 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.229|4x|005056AA4ED2 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.230|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.231|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.232|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.233|4x|005056AA7816 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.234|4x|005056AA2AB4 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.235|4x|005056AA2AB4 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.236|4x|005056AA27A3 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.237|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.238|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.239|4x|005056AA27A3 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.240|4x|005056AAAA64 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.241|4x|005056AACAE1 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.242|4x|005056AACAE1 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.243|4x|005056AAB6FE -1.3.6.1.2.1.4.22.1.2.74.136.231.76.244|4x|005056AAB6FE -1.3.6.1.2.1.4.22.1.2.74.136.231.76.245|4x|005056AA27A3 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.246|4x|005056AA90D6 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.247|4x|005056AA0090 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.248|4x|005056AA0090 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.249|4x|005056AAA4C1 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.250|4x|005056AAA4C1 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.251|4x|005056AA9A5C -1.3.6.1.2.1.4.22.1.2.74.136.231.76.252|4x|005056AA9A5C -1.3.6.1.2.1.4.22.1.2.74.136.231.76.253|4x|005056AA7E98 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.254|4x|005056AA7E98 -1.3.6.1.2.1.4.22.1.2.74.136.231.76.255|4x|005056AA39E9 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.0|4x|005056AA39E9 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.1|4x|005056AA0722 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.4|4x|005056AA8E27 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.5|4x|005056AA8E27 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.7|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.9|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.10|4x|005056AAFCFF -1.3.6.1.2.1.4.22.1.2.74.136.231.77.11|4x|005056AAFCFF -1.3.6.1.2.1.4.22.1.2.74.136.231.77.12|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.13|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.14|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.15|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.16|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.17|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.18|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.19|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.20|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.21|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.22|4x|005056AA9183 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.23|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.24|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.25|4x|005056AA8A24 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.27|4x|005056AA6049 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.28|4x|005056AAC2FA -1.3.6.1.2.1.4.22.1.2.74.136.231.77.29|4x|005056AAC2FA -1.3.6.1.2.1.4.22.1.2.74.136.231.77.30|4x|005056AACCAC -1.3.6.1.2.1.4.22.1.2.74.136.231.77.31|4x|005056AACCAC -1.3.6.1.2.1.4.22.1.2.74.136.231.77.32|4x|005056AACCB5 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.33|4x|005056AACCB5 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.34|4x|005056AAD1FA -1.3.6.1.2.1.4.22.1.2.74.136.231.77.35|4x|005056AAD1FA -1.3.6.1.2.1.4.22.1.2.74.136.231.77.36|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.37|4x|005056AA88A8 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.38|4x|005056AA88A8 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.39|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.40|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.41|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.42|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.43|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.44|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.45|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.46|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.47|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.48|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.49|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.50|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.52|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.53|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.54|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.56|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.57|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.58|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.59|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.60|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.61|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.62|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.63|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.64|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.65|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.66|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.67|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.68|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.70|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.72|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.73|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.74|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.76|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.77|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.78|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.79|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.80|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.81|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.83|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.87|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.88|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.89|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.92|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.93|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.94|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.95|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.96|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.97|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.99|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.104|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.108|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.114|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.117|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.121|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.125|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.127|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.128|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.129|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.130|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.132|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.133|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.134|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.135|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.136|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.137|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.138|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.139|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.140|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.141|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.142|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.143|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.145|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.146|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.149|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.150|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.151|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.152|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.153|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.155|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.157|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.159|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.160|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.161|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.162|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.163|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.164|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.165|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.166|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.167|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.168|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.169|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.170|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.171|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.172|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.173|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.175|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.176|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.177|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.178|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.179|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.180|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.181|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.182|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.184|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.185|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.187|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.188|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.189|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.190|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.192|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.193|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.194|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.196|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.197|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.198|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.199|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.200|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.201|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.202|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.203|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.204|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.205|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.206|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.207|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.208|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.209|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.211|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.212|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.213|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.214|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.215|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.217|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.218|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.219|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.221|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.222|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.223|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.224|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.225|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.226|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.227|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.228|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.229|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.230|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.232|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.233|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.234|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.235|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.236|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.237|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.238|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.239|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.242|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.243|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.244|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.245|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.246|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.248|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.250|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.252|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.77.255|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.0|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.1|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.5|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.7|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.9|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.10|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.11|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.13|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.14|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.15|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.16|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.17|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.18|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.19|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.20|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.21|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.22|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.24|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.25|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.28|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.29|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.30|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.31|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.32|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.33|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.34|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.35|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.36|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.37|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.38|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.39|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.40|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.41|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.42|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.43|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.44|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.45|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.46|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.47|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.48|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.49|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.50|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.51|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.52|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.53|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.54|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.56|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.57|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.58|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.59|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.60|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.61|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.62|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.63|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.64|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.65|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.66|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.67|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.68|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.70|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.72|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.74|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.76|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.77|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.78|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.79|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.80|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.81|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.83|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.87|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.88|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.89|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.92|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.93|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.94|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.95|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.96|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.97|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.99|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.104|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.108|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.114|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.117|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.121|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.123|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.127|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.128|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.129|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.130|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.132|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.133|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.134|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.135|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.136|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.137|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.138|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.139|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.140|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.141|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.142|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.143|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.145|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.146|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.149|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.150|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.152|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.153|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.155|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.157|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.159|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.160|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.161|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.162|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.163|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.164|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.165|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.166|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.167|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.170|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.171|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.172|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.175|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.176|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.177|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.178|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.179|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.180|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.181|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.182|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.184|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.186|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.187|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.188|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.189|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.191|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.192|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.193|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.194|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.196|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.197|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.198|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.199|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.200|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.201|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.203|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.204|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.205|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.206|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.207|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.208|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.209|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.210|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.212|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.213|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.214|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.215|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.216|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.217|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.218|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.219|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.222|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.223|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.224|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.226|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.227|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.229|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.230|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.231|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.232|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.233|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.234|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.236|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.237|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.238|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.239|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.242|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.243|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.244|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.245|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.246|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.248|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.250|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.252|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.78.255|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.0|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.1|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.5|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.7|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.9|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.10|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.11|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.12|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.13|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.14|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.15|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.16|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.17|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.18|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.19|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.20|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.21|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.22|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.23|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.24|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.25|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.28|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.29|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.30|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.31|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.32|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.33|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.34|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.35|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.36|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.37|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.38|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.39|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.40|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.41|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.42|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.43|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.44|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.45|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.46|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.47|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.48|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.49|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.50|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.51|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.52|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.53|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.54|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.57|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.58|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.59|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.60|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.61|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.62|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.63|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.64|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.66|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.67|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.70|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.72|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.73|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.74|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.76|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.77|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.79|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.80|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.81|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.83|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.87|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.88|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.89|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.92|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.94|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.95|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.96|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.97|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.99|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.104|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.108|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.117|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.121|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.125|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.127|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.128|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.129|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.130|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.133|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.134|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.136|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.137|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.138|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.139|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.140|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.141|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.143|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.145|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.146|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.150|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.151|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.152|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.153|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.155|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.157|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.159|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.160|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.162|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.163|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.164|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.166|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.168|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.169|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.170|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.171|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.172|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.173|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.175|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.176|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.177|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.178|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.179|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.180|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.181|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.184|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.185|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.186|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.187|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.188|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.189|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.190|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.191|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.192|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.193|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.194|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.196|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.197|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.198|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.199|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.200|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.201|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.202|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.203|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.204|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.205|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.206|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.207|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.208|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.209|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.210|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.211|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.212|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.213|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.214|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.216|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.217|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.218|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.219|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.221|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.222|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.223|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.225|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.226|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.227|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.228|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.229|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.230|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.231|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.232|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.233|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.234|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.235|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.236|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.237|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.238|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.239|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.242|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.243|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.244|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.246|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.248|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.250|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.252|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.74.136.231.79.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.5|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.7|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.9|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.10|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.11|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.12|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.14|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.15|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.16|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.17|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.18|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.19|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.20|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.21|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.22|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.23|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.24|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.25|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.28|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.29|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.31|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.32|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.33|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.34|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.35|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.36|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.37|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.39|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.40|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.41|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.42|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.43|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.44|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.45|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.46|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.47|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.48|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.49|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.50|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.51|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.52|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.53|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.54|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.56|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.57|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.58|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.59|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.61|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.62|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.63|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.64|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.65|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.66|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.67|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.68|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.72|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.73|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.74|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.76|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.77|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.78|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.79|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.80|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.81|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.83|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.88|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.89|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.92|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.93|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.94|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.95|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.96|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.97|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.99|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.104|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.108|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.114|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.117|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.121|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.123|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.125|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.75.136.231.234.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.76.136.231.40.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.76.136.231.40.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.76.136.231.40.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.76.136.231.40.5|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.76.136.231.40.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.76.136.231.40.7|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.76.136.231.40.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.76.136.231.40.9|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.76.136.231.40.10|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.76.136.231.40.11|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.76.136.231.40.12|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.76.136.231.40.13|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.76.136.231.40.14|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.77.136.231.40.18|4x|005056B2971D -1.3.6.1.2.1.4.22.1.2.77.136.231.40.19|4x|005056B23C77 -1.3.6.1.2.1.4.22.1.2.77.136.231.40.20|4x|005056B27423 -1.3.6.1.2.1.4.22.1.2.77.136.231.40.21|4x|005056B20A96 -1.3.6.1.2.1.4.22.1.2.77.136.231.40.22|4x|005056B2588E -1.3.6.1.2.1.4.22.1.2.77.136.231.40.23|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.77.136.231.40.24|4x|005056B25537 -1.3.6.1.2.1.4.22.1.2.77.136.231.40.25|4x|005056B2587A -1.3.6.1.2.1.4.22.1.2.77.136.231.40.26|4x|005056B247B2 -1.3.6.1.2.1.4.22.1.2.77.136.231.40.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.77.136.231.40.28|4x|005056B21E4D -1.3.6.1.2.1.4.22.1.2.77.136.231.40.29|4x|005056B27127 -1.3.6.1.2.1.4.22.1.2.77.136.231.40.30|4x|005056B2AC77 -1.3.6.1.2.1.4.22.1.2.78.172.25.0.20|4x|FCF152DF56B5 -1.3.6.1.2.1.4.22.1.2.78.172.25.0.21|4x|FCF152DF5687 -1.3.6.1.2.1.4.22.1.2.78.172.25.0.22|4x|FCF152DF41D5 -1.3.6.1.2.1.4.22.1.2.78.172.25.0.23|4x|FCF152DF5685 -1.3.6.1.2.1.4.22.1.2.79.136.231.40.50|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.79.136.231.40.51|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.79.136.231.40.52|4x|0013FA063248 -1.3.6.1.2.1.4.22.1.2.79.136.231.40.53|4x|0013FA091E62 -1.3.6.1.2.1.4.22.1.2.79.136.231.40.54|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.79.136.231.40.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.79.136.231.40.56|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.79.136.231.40.57|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.79.136.231.40.58|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.79.136.231.40.59|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.79.136.231.40.60|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.79.136.231.40.61|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.79.136.231.40.62|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.80.136.231.40.66|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.80.136.231.40.67|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.80.136.231.40.68|4x|A0369F0F048C -1.3.6.1.2.1.4.22.1.2.80.136.231.40.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.80.136.231.40.70|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.80.136.231.40.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.80.136.231.40.72|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.80.136.231.40.73|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.80.136.231.40.74|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.80.136.231.40.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.80.136.231.40.76|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.80.136.231.40.77|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.80.136.231.40.78|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.81.136.231.40.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.81.136.231.40.83|4x|0CC47AA9A435 -1.3.6.1.2.1.4.22.1.2.81.136.231.40.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.81.136.231.40.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.81.136.231.40.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.81.136.231.40.87|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.81.136.231.40.88|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.81.136.231.40.89|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.81.136.231.40.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.81.136.231.40.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.81.136.231.40.92|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.81.136.231.40.93|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.81.136.231.40.94|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.82.136.231.40.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.82.136.231.40.99|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.82.136.231.40.100|4x|005056B267A8 -1.3.6.1.2.1.4.22.1.2.82.136.231.40.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.82.136.231.40.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.82.136.231.40.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.82.136.231.40.104|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.82.136.231.40.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.82.136.231.40.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.82.136.231.40.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.82.136.231.40.108|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.82.136.231.40.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.82.136.231.40.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.84.136.231.40.130|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.84.136.231.40.131|4x|00155D288303 -1.3.6.1.2.1.4.22.1.2.84.136.231.40.132|4x|0CC47ADF10AE -1.3.6.1.2.1.4.22.1.2.84.136.231.40.133|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.84.136.231.40.134|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.84.136.231.40.135|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.84.136.231.40.137|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.84.136.231.40.139|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.84.136.231.40.140|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.84.136.231.40.141|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.84.136.231.40.142|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.84.136.231.40.143|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.84.136.231.40.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.84.136.231.40.145|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.84.136.231.40.146|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.84.136.231.40.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.84.136.231.40.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.84.136.231.40.149|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.84.136.231.40.150|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.84.136.231.40.151|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.84.136.231.40.152|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.84.136.231.40.153|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.84.136.231.40.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.84.136.231.40.155|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.84.136.231.40.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.84.136.231.40.157|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.84.136.231.40.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.85.10.16.0.25|4x|025B0E9A572D -1.3.6.1.2.1.4.22.1.2.85.224.0.0.5|4x|01005E000005 -1.3.6.1.2.1.4.22.1.2.86.10.16.0.24|4x|025B0E9A572C -1.3.6.1.2.1.4.22.1.2.86.224.0.0.5|4x|01005E000005 -1.3.6.1.2.1.4.22.1.2.87.136.231.40.226|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.87.136.231.40.227|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.87.136.231.40.228|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.87.136.231.40.229|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.87.136.231.40.230|4x|00259058722F -1.3.6.1.2.1.4.22.1.2.87.136.231.40.231|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.87.136.231.40.232|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.87.136.231.40.233|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.87.136.231.40.234|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.87.136.231.40.235|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.87.136.231.40.237|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.87.136.231.40.239|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.87.136.231.40.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.87.136.231.40.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.87.136.231.40.242|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.87.136.231.40.243|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.87.136.231.40.244|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.87.136.231.40.246|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.87.136.231.40.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.87.136.231.40.248|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.87.136.231.40.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.87.136.231.40.250|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.87.136.231.40.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.87.136.231.40.252|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.87.136.231.40.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.87.136.231.40.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.88.136.231.41.66|4x|005056B2273B -1.3.6.1.2.1.4.22.1.2.88.136.231.41.67|4x|005056B25E83 -1.3.6.1.2.1.4.22.1.2.88.136.231.41.68|4x|0050568420CF -1.3.6.1.2.1.4.22.1.2.88.136.231.41.69|4x|005056846DA6 -1.3.6.1.2.1.4.22.1.2.88.136.231.41.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.88.136.231.41.72|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.88.136.231.41.73|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.88.136.231.41.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.88.136.231.41.76|4x|0050568445C8 -1.3.6.1.2.1.4.22.1.2.88.136.231.41.77|4x|005056841050 -1.3.6.1.2.1.4.22.1.2.88.136.231.41.78|4x|00505684ECE2 -1.3.6.1.2.1.4.22.1.2.88.136.231.41.79|4x|00505684D4CA -1.3.6.1.2.1.4.22.1.2.88.136.231.41.81|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.88.136.231.41.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.88.136.231.41.83|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.88.136.231.41.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.88.136.231.41.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.88.136.231.41.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.88.136.231.41.87|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.88.136.231.41.88|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.88.136.231.41.89|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.88.136.231.41.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.88.136.231.41.92|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.88.136.231.41.93|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.88.136.231.41.94|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.89.136.231.41.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.89.136.231.41.99|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.89.136.231.41.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.89.136.231.41.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.89.136.231.41.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.89.136.231.41.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.89.136.231.41.104|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.89.136.231.41.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.89.136.231.41.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.89.136.231.41.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.89.136.231.41.108|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.89.136.231.41.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.89.136.231.41.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.89.136.231.41.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.89.136.231.41.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.89.136.231.41.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.89.136.231.41.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.89.136.231.41.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.89.136.231.41.117|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.89.136.231.41.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.89.136.231.41.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.89.136.231.41.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.89.136.231.41.121|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.89.136.231.41.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.89.136.231.41.123|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.89.136.231.41.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.5|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.7|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.9|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.10|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.11|4x|005056AAC759 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.12|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.13|4x|005056AA7811 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.14|4x|0050569C3984 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.15|4x|005056AAE2F4 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.16|4x|005056AAA77C -1.3.6.1.2.1.4.22.1.2.90.136.231.80.17|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.18|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.19|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.20|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.21|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.22|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.23|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.24|4x|04F93894CA84 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.25|4x|04F93894CB00 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.26|4x|04F93894CA40 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.27|4x|005056AAD477 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.28|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.29|4x|005056AAE14A -1.3.6.1.2.1.4.22.1.2.90.136.231.80.30|4x|0050569C39A7 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.31|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.32|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.33|4x|005056AA54EF -1.3.6.1.2.1.4.22.1.2.90.136.231.80.34|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.35|4x|0050569C39A3 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.36|4x|005056AA69CD -1.3.6.1.2.1.4.22.1.2.90.136.231.80.37|4x|0050569C39A8 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.38|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.39|4x|005056AA6C28 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.40|4x|0050569C39B2 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.41|4x|0050569C2080 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.42|4x|0050569C77AF -1.3.6.1.2.1.4.22.1.2.90.136.231.80.43|4x|005056AA1173 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.44|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.45|4x|005056AAE5DC -1.3.6.1.2.1.4.22.1.2.90.136.231.80.46|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.47|4x|0050569C712B -1.3.6.1.2.1.4.22.1.2.90.136.231.80.48|4x|0050569C712C -1.3.6.1.2.1.4.22.1.2.90.136.231.80.49|4x|005056AAB042 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.50|4x|D4B110B01A0C -1.3.6.1.2.1.4.22.1.2.90.136.231.80.51|4x|005056AAB042 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.52|4x|005056AAEADD -1.3.6.1.2.1.4.22.1.2.90.136.231.80.53|4x|005056AA7811 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.54|4x|005056AA743A -1.3.6.1.2.1.4.22.1.2.90.136.231.80.55|4x|005056AA743A -1.3.6.1.2.1.4.22.1.2.90.136.231.80.56|4x|005056AA3693 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.57|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.58|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.59|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.61|4x|005056AA76A9 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.62|4x|005056AA10AB -1.3.6.1.2.1.4.22.1.2.90.136.231.80.63|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.64|4x|005056AA5DDF -1.3.6.1.2.1.4.22.1.2.90.136.231.80.65|4x|005056AA0E8F -1.3.6.1.2.1.4.22.1.2.90.136.231.80.66|4x|005056AA038E -1.3.6.1.2.1.4.22.1.2.90.136.231.80.67|4x|005056AAF2F9 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.68|4x|005056AA9D23 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.69|4x|005056AA0E8F -1.3.6.1.2.1.4.22.1.2.90.136.231.80.70|4x|005056AA038E -1.3.6.1.2.1.4.22.1.2.90.136.231.80.71|4x|005056AAF2F9 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.72|4x|005056AA7BE2 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.73|4x|005056AAE42C -1.3.6.1.2.1.4.22.1.2.90.136.231.80.74|4x|005056AA4C0B -1.3.6.1.2.1.4.22.1.2.90.136.231.80.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.76|4x|005056AA76A9 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.77|4x|005056AA0404 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.78|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.79|4x|005056AA2FFB -1.3.6.1.2.1.4.22.1.2.90.136.231.80.80|4x|005056AA6C28 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.81|4x|005056AA2FFB -1.3.6.1.2.1.4.22.1.2.90.136.231.80.82|4x|005056AAFAF7 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.83|4x|005056AA2B1E -1.3.6.1.2.1.4.22.1.2.90.136.231.80.84|4x|005056AA2B1E -1.3.6.1.2.1.4.22.1.2.90.136.231.80.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.87|4x|005056AA36A4 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.88|4x|005056AA36A4 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.89|4x|005056AA81E8 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.91|4x|005056AAB625 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.92|4x|005056AAB625 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.93|4x|005056AA7E17 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.94|4x|005056AA7E17 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.95|4x|005056AA3289 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.96|4x|005056AA3289 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.97|4x|005056AA3932 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.98|4x|005056AA3932 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.99|4x|005056AA4DF6 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.100|4x|005056AA4DF6 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.101|4x|005056AAE935 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.102|4x|005056AAE935 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.103|4x|005056AAC37E -1.3.6.1.2.1.4.22.1.2.90.136.231.80.104|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.106|4x|005056AA0FB1 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.107|4x|005056AA0FB1 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.108|4x|005056AA5DDF -1.3.6.1.2.1.4.22.1.2.90.136.231.80.109|4x|005056AACCFE -1.3.6.1.2.1.4.22.1.2.90.136.231.80.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.114|4x|005056AAD022 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.115|4x|005056AAD022 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.116|4x|005056AACCFE -1.3.6.1.2.1.4.22.1.2.90.136.231.80.117|4x|005056AA86D7 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.118|4x|005056AA1BA7 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.120|4x|005056AAC758 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.121|4x|005056AAC758 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.122|4x|005056AA5E5E -1.3.6.1.2.1.4.22.1.2.90.136.231.80.123|4x|005056AA5C18 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.124|4x|005056AA9C37 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.125|4x|005056AAAF29 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.126|4x|005056AA261F -1.3.6.1.2.1.4.22.1.2.90.136.231.80.127|4x|005056AA261F -1.3.6.1.2.1.4.22.1.2.90.136.231.80.128|4x|005056AA1403 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.129|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.130|4x|005056AA2DFF -1.3.6.1.2.1.4.22.1.2.90.136.231.80.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.132|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.133|4x|005056AA36CB -1.3.6.1.2.1.4.22.1.2.90.136.231.80.134|4x|005056AA7C4F -1.3.6.1.2.1.4.22.1.2.90.136.231.80.135|4x|005056AA10B1 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.136|4x|005056AA10B1 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.137|4x|005056AA7108 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.138|4x|005056AA7108 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.139|4x|005056AAE8FC -1.3.6.1.2.1.4.22.1.2.90.136.231.80.140|4x|005056AAB2EA -1.3.6.1.2.1.4.22.1.2.90.136.231.80.141|4x|005056AA24AC -1.3.6.1.2.1.4.22.1.2.90.136.231.80.142|4x|005056AA24AC -1.3.6.1.2.1.4.22.1.2.90.136.231.80.143|4x|005056AAA96D -1.3.6.1.2.1.4.22.1.2.90.136.231.80.144|4x|005056AA7C4F -1.3.6.1.2.1.4.22.1.2.90.136.231.80.145|4x|005056AAA96D -1.3.6.1.2.1.4.22.1.2.90.136.231.80.146|4x|005056AAF211 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.147|4x|005056AAD995 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.148|4x|005056AA2A27 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.149|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.150|4x|005056AAD477 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.151|4x|04F93894CB08 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.152|4x|04F93894CAFC -1.3.6.1.2.1.4.22.1.2.90.136.231.80.153|4x|04F93894CAE8 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.154|4x|04F93894CB04 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.155|4x|04F93894CB00 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.156|4x|04F93894CA1C -1.3.6.1.2.1.4.22.1.2.90.136.231.80.157|4x|04F93894CA40 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.158|4x|005056AA94FC -1.3.6.1.2.1.4.22.1.2.90.136.231.80.159|4x|04F9388E4828 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.160|4x|04F9388E4808 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.161|4x|04F9388E47EE -1.3.6.1.2.1.4.22.1.2.90.136.231.80.162|4x|04F9388E4818 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.163|4x|04F9388E4822 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.164|4x|04F9388E47E8 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.165|4x|04F9388E47E5 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.166|4x|04F9388E482C -1.3.6.1.2.1.4.22.1.2.90.136.231.80.167|4x|04F9388E4806 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.168|4x|04F9388E47FA -1.3.6.1.2.1.4.22.1.2.90.136.231.80.169|4x|04F9388E4802 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.170|4x|04F9388E47E2 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.171|4x|04F9388B9C88 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.172|4x|04F9388B9C78 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.173|4x|04F9388B9C78 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.175|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.176|4x|005056AAC312 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.177|4x|000C2939E1A5 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.178|4x|000C295A4A5B -1.3.6.1.2.1.4.22.1.2.90.136.231.80.179|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.180|4x|000C29935917 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.181|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.182|4x|000C29C3B8CA -1.3.6.1.2.1.4.22.1.2.90.136.231.80.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.184|4x|000C29E258FF -1.3.6.1.2.1.4.22.1.2.90.136.231.80.185|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.186|4x|000C29CDD494 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.187|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.188|4x|000C29B4998A -1.3.6.1.2.1.4.22.1.2.90.136.231.80.189|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.190|4x|005056AA797D -1.3.6.1.2.1.4.22.1.2.90.136.231.80.191|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.192|4x|000C2909EC7F -1.3.6.1.2.1.4.22.1.2.90.136.231.80.193|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.194|4x|000C2913A29D -1.3.6.1.2.1.4.22.1.2.90.136.231.80.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.196|4x|000C29D10A95 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.197|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.198|4x|005056AA47E7 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.199|4x|005056AA094D -1.3.6.1.2.1.4.22.1.2.90.136.231.80.200|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.201|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.202|4x|005056AA51A6 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.203|4x|D4B110B58204 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.204|4x|D4B110B581F0 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.205|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.206|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.207|4x|005056AA2299 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.208|4x|005056AA3BDF -1.3.6.1.2.1.4.22.1.2.90.136.231.80.209|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.210|4x|005056AA01F5 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.211|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.212|4x|005056AA05ED -1.3.6.1.2.1.4.22.1.2.90.136.231.80.213|4x|005056AA52EE -1.3.6.1.2.1.4.22.1.2.90.136.231.80.214|4x|005056AADDDA -1.3.6.1.2.1.4.22.1.2.90.136.231.80.215|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.216|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.217|4x|005056AA3B23 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.218|4x|005056AA5EB8 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.219|4x|005056AA92A6 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.220|4x|04F93894CB34 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.221|4x|04F93894CA94 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.222|4x|04F93894CA90 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.223|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.224|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.225|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.226|4x|04F93894CA44 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.227|4x|04F93894C92C -1.3.6.1.2.1.4.22.1.2.90.136.231.80.228|4x|005056AAC8EF -1.3.6.1.2.1.4.22.1.2.90.136.231.80.229|4x|005056AAEB57 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.230|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.231|4x|04F93894CAE4 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.232|4x|04F93894CAD8 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.233|4x|04F93894CAF0 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.234|4x|04F93894CB38 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.235|4x|005056AAFAD1 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.236|4x|4862760369E0 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.237|4x|4862760369AC -1.3.6.1.2.1.4.22.1.2.90.136.231.80.238|4x|4862760369FC -1.3.6.1.2.1.4.22.1.2.90.136.231.80.239|4x|486276036A00 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.241|4x|005056AABDBC -1.3.6.1.2.1.4.22.1.2.90.136.231.80.242|4x|04F93894CA8C -1.3.6.1.2.1.4.22.1.2.90.136.231.80.243|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.244|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.245|4x|005056AA561C -1.3.6.1.2.1.4.22.1.2.90.136.231.80.246|4x|005056AA83FE -1.3.6.1.2.1.4.22.1.2.90.136.231.80.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.248|4x|005056AAA0B7 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.250|4x|005056AA8157 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.252|4x|000C291C4D4D -1.3.6.1.2.1.4.22.1.2.90.136.231.80.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.80.254|4x|005056AAFC0E -1.3.6.1.2.1.4.22.1.2.90.136.231.80.255|4x|005056AA0160 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.0|4x|005056AA1642 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.1|4x|D4B110AC8BAD -1.3.6.1.2.1.4.22.1.2.90.136.231.81.2|4x|D4B110AC8BAA -1.3.6.1.2.1.4.22.1.2.90.136.231.81.3|4x|D4B110AC8BA4 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.4|4x|005056AA5974 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.5|4x|005056AA2C0E -1.3.6.1.2.1.4.22.1.2.90.136.231.81.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.7|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.9|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.10|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.11|4x|005056AA8358 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.12|4x|005056AAEBD4 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.13|4x|005056AAEBD4 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.14|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.15|4x|005056AA3C80 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.16|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.17|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.18|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.19|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.20|4x|005056AAF6C4 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.21|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.22|4x|005056AAE0A9 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.23|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.24|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.25|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.28|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.29|4x|005056AA6B3F -1.3.6.1.2.1.4.22.1.2.90.136.231.81.30|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.31|4x|005056AA4DA1 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.32|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.33|4x|005056AA0D40 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.34|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.35|4x|005056AA18AC -1.3.6.1.2.1.4.22.1.2.90.136.231.81.36|4x|005056AA18AC -1.3.6.1.2.1.4.22.1.2.90.136.231.81.37|4x|005056AA2E92 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.38|4x|005056AA2E92 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.39|4x|005056AA096D -1.3.6.1.2.1.4.22.1.2.90.136.231.81.40|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.41|4x|005056AAB575 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.42|4x|005056AA1CC0 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.43|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.44|4x|005056AAD049 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.45|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.46|4x|005056AA933F -1.3.6.1.2.1.4.22.1.2.90.136.231.81.47|4x|005056AA41A2 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.48|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.49|4x|005056AA94CE -1.3.6.1.2.1.4.22.1.2.90.136.231.81.50|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.51|4x|005056AA87D6 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.52|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.53|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.54|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.56|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.57|4x|005056AABB50 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.58|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.59|4x|005056AA852A -1.3.6.1.2.1.4.22.1.2.90.136.231.81.60|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.61|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.62|4x|005056AACC0F -1.3.6.1.2.1.4.22.1.2.90.136.231.81.63|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.64|4x|005056AAD179 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.65|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.66|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.67|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.68|4x|005056AAAA40 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.70|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.72|4x|005056AA0860 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.73|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.74|4x|005056AA0753 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.76|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.77|4x|005056AA84BC -1.3.6.1.2.1.4.22.1.2.90.136.231.81.78|4x|005056AA84BC -1.3.6.1.2.1.4.22.1.2.90.136.231.81.79|4x|005056AA07B2 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.80|4x|005056AAE9AF -1.3.6.1.2.1.4.22.1.2.90.136.231.81.81|4x|005056AA55EF -1.3.6.1.2.1.4.22.1.2.90.136.231.81.82|4x|005056AA9113 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.83|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.85|4x|005056AA0860 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.87|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.88|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.89|4x|005056AA8B11 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.90|4x|005056AA8B11 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.91|4x|005056AA65B8 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.92|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.93|4x|005056AA8208 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.94|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.95|4x|005056AA5EDB -1.3.6.1.2.1.4.22.1.2.90.136.231.81.96|4x|005056AA021F -1.3.6.1.2.1.4.22.1.2.90.136.231.81.97|4x|005056AA6755 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.99|4x|005056AA6A11 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.103|4x|005056AAE2F4 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.104|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.105|4x|005056AAFA09 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.107|4x|005056AAB0E9 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.108|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.109|4x|005056AA6451 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.111|4x|005056AA094F -1.3.6.1.2.1.4.22.1.2.90.136.231.81.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.113|4x|005056AAA5B4 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.114|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.117|4x|005056AAC240 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.119|4x|005056AAAD5E -1.3.6.1.2.1.4.22.1.2.90.136.231.81.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.121|4x|005056AA89C5 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.123|4x|A0369F0F1540 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.124|4x|A0369F19651C -1.3.6.1.2.1.4.22.1.2.90.136.231.81.125|4x|005056AA4C8C -1.3.6.1.2.1.4.22.1.2.90.136.231.81.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.127|4x|005056AABEA6 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.128|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.129|4x|005056AADE40 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.130|4x|04F93894CAF0 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.131|4x|005056AA3F3C -1.3.6.1.2.1.4.22.1.2.90.136.231.81.132|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.133|4x|005056AAFE58 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.134|4x|005056AAFE58 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.135|4x|005056AA943C -1.3.6.1.2.1.4.22.1.2.90.136.231.81.136|4x|005056AA943C -1.3.6.1.2.1.4.22.1.2.90.136.231.81.137|4x|005056AAA8F6 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.138|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.139|4x|005056AA86D7 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.140|4x|005056AAADC5 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.141|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.142|4x|005056AADB45 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.143|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.145|4x|000C291D9327 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.146|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.147|4x|005056AA7832 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.149|4x|000C29E5E182 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.150|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.151|4x|000C29401371 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.152|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.153|4x|000C29412C19 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.155|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.157|4x|005056AA244F -1.3.6.1.2.1.4.22.1.2.90.136.231.81.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.159|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.160|4x|005056AA214A -1.3.6.1.2.1.4.22.1.2.90.136.231.81.161|4x|005056AAFF4E -1.3.6.1.2.1.4.22.1.2.90.136.231.81.162|4x|005056AA364F -1.3.6.1.2.1.4.22.1.2.90.136.231.81.163|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.164|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.165|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.166|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.167|4x|005056AA4D33 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.168|4x|005056AA4D33 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.169|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.170|4x|000C29C3BB9D -1.3.6.1.2.1.4.22.1.2.90.136.231.81.171|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.172|4x|000C2923962D -1.3.6.1.2.1.4.22.1.2.90.136.231.81.173|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.174|4x|000C29491E7F -1.3.6.1.2.1.4.22.1.2.90.136.231.81.175|4x|005056AA6E89 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.176|4x|005056AAA6BD -1.3.6.1.2.1.4.22.1.2.90.136.231.81.177|4x|005056AAD386 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.178|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.179|4x|005056AA9E55 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.180|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.181|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.182|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.183|4x|005056AA82A4 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.184|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.186|4x|000C294FAD0A -1.3.6.1.2.1.4.22.1.2.90.136.231.81.187|4x|005056AAB793 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.188|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.189|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.190|4x|04F93894CA90 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.191|4x|04F93894CAE8 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.192|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.193|4x|005056AA318B -1.3.6.1.2.1.4.22.1.2.90.136.231.81.194|4x|005056AAB733 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.195|4x|005056AABC36 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.196|4x|005056AAF108 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.197|4x|005056AA547F -1.3.6.1.2.1.4.22.1.2.90.136.231.81.198|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.199|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.200|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.201|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.202|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.203|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.204|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.205|4x|005056AA02C3 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.206|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.207|4x|005056AA4F37 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.208|4x|005056AAD62C -1.3.6.1.2.1.4.22.1.2.90.136.231.81.209|4x|005056AA039F -1.3.6.1.2.1.4.22.1.2.90.136.231.81.210|4x|005056AA880C -1.3.6.1.2.1.4.22.1.2.90.136.231.81.211|4x|005056AA4DA4 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.212|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.213|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.214|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.215|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.216|4x|005056AA982D -1.3.6.1.2.1.4.22.1.2.90.136.231.81.217|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.218|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.219|4x|005056AA22DE -1.3.6.1.2.1.4.22.1.2.90.136.231.81.220|4x|005056AAAB3B -1.3.6.1.2.1.4.22.1.2.90.136.231.81.221|4x|005056AA74EC -1.3.6.1.2.1.4.22.1.2.90.136.231.81.222|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.223|4x|005056AACE42 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.224|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.225|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.226|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.227|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.228|4x|005056AA5486 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.229|4x|005056AA18CE -1.3.6.1.2.1.4.22.1.2.90.136.231.81.230|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.231|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.232|4x|005056AA9BD4 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.233|4x|005056AAF0A1 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.234|4x|005056AA0C6D -1.3.6.1.2.1.4.22.1.2.90.136.231.81.235|4x|005056AA39A3 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.236|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.237|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.238|4x|005056AACD7E -1.3.6.1.2.1.4.22.1.2.90.136.231.81.239|4x|A0369F19F4AC -1.3.6.1.2.1.4.22.1.2.90.136.231.81.240|4x|005056AA446E -1.3.6.1.2.1.4.22.1.2.90.136.231.81.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.242|4x|005056AACEDD -1.3.6.1.2.1.4.22.1.2.90.136.231.81.243|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.244|4x|005056AA6344 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.245|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.246|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.248|4x|005056AA5A5A -1.3.6.1.2.1.4.22.1.2.90.136.231.81.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.250|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.251|4x|005056AA90EA -1.3.6.1.2.1.4.22.1.2.90.136.231.81.252|4x|005056AA6B75 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.81.254|4x|005056AA329B -1.3.6.1.2.1.4.22.1.2.90.136.231.81.255|4x|A0369F2FFF50 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.0|4x|005056AA329B -1.3.6.1.2.1.4.22.1.2.90.136.231.82.1|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.4|4x|005056AA20AE -1.3.6.1.2.1.4.22.1.2.90.136.231.82.5|4x|005056AAAF29 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.7|4x|005056AACE67 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.8|4x|005056AAB3A2 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.9|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.10|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.13|4x|005056AA95D5 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.14|4x|005056AAD9C2 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.15|4x|005056AA268D -1.3.6.1.2.1.4.22.1.2.90.136.231.82.16|4x|005056AA44A9 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.17|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.18|4x|005056AA90FC -1.3.6.1.2.1.4.22.1.2.90.136.231.82.19|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.20|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.21|4x|005056AA963E -1.3.6.1.2.1.4.22.1.2.90.136.231.82.22|4x|005056AA4F47 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.23|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.24|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.25|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.27|4x|005056AA8433 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.28|4x|005056AABC35 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.29|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.30|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.31|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.32|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.33|4x|005056AADD14 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.34|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.35|4x|005056AA24CD -1.3.6.1.2.1.4.22.1.2.90.136.231.82.36|4x|005056AA766B -1.3.6.1.2.1.4.22.1.2.90.136.231.82.37|4x|005056AA9483 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.38|4x|005056AA2A39 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.39|4x|005056AAE97A -1.3.6.1.2.1.4.22.1.2.90.136.231.82.40|4x|005056AAE53F -1.3.6.1.2.1.4.22.1.2.90.136.231.82.41|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.42|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.43|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.44|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.45|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.46|4x|005056AA7075 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.47|4x|005056AABFD6 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.48|4x|005056AA61ED -1.3.6.1.2.1.4.22.1.2.90.136.231.82.49|4x|005056AA2470 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.50|4x|005056AAE263 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.51|4x|005056AADD0F -1.3.6.1.2.1.4.22.1.2.90.136.231.82.52|4x|005056AA14C7 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.53|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.54|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.56|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.57|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.58|4x|005056AA4068 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.59|4x|E097960DAF91 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.60|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.61|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.62|4x|005056AA7410 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.63|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.64|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.65|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.66|4x|005056AABF28 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.67|4x|005056AADB38 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.68|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.69|4x|005056AAFF0E -1.3.6.1.2.1.4.22.1.2.90.136.231.82.70|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.72|4x|04F93894CA88 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.73|4x|04F93894CA88 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.74|4x|005056AABD61 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.75|4x|005056AAB377 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.77|4x|005056AAEAFC -1.3.6.1.2.1.4.22.1.2.90.136.231.82.78|4x|E03676C5FCAA -1.3.6.1.2.1.4.22.1.2.90.136.231.82.79|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.80|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.81|4x|005056AA98D2 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.83|4x|005056AADE8E -1.3.6.1.2.1.4.22.1.2.90.136.231.82.84|4x|005056AA9F4F -1.3.6.1.2.1.4.22.1.2.90.136.231.82.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.87|4x|005056AA47A4 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.88|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.89|4x|005056AADA0D -1.3.6.1.2.1.4.22.1.2.90.136.231.82.90|4x|005056AAAE8C -1.3.6.1.2.1.4.22.1.2.90.136.231.82.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.92|4x|005056AA8F1B -1.3.6.1.2.1.4.22.1.2.90.136.231.82.93|4x|005056AA1FAE -1.3.6.1.2.1.4.22.1.2.90.136.231.82.94|4x|005056AA69CD -1.3.6.1.2.1.4.22.1.2.90.136.231.82.95|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.96|4x|005056AA5675 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.99|4x|005056AAB16B -1.3.6.1.2.1.4.22.1.2.90.136.231.82.100|4x|005056AA7FFB -1.3.6.1.2.1.4.22.1.2.90.136.231.82.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.104|4x|005056AA893B -1.3.6.1.2.1.4.22.1.2.90.136.231.82.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.107|4x|005056AAE0DA -1.3.6.1.2.1.4.22.1.2.90.136.231.82.108|4x|005056AAE183 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.110|4x|005056AA03BE -1.3.6.1.2.1.4.22.1.2.90.136.231.82.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.112|4x|005056AA1872 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.114|4x|005056AAB771 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.117|4x|005056AADB54 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.120|4x|005056AA1450 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.121|4x|005056AA687B -1.3.6.1.2.1.4.22.1.2.90.136.231.82.122|4x|005056AA5C38 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.125|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.127|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.128|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.129|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.130|4x|005056AACF01 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.131|4x|005056AA2A57 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.132|4x|005056AA7A86 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.133|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.134|4x|005056AA5168 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.135|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.136|4x|005056AA0AE1 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.137|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.140|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.141|4x|487B6BDA3714 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.142|4x|005056AA881D -1.3.6.1.2.1.4.22.1.2.90.136.231.82.143|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.145|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.146|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.150|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.151|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.152|4x|002590387D1A -1.3.6.1.2.1.4.22.1.2.90.136.231.82.153|4x|002590387AE6 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.154|4x|00259038807A -1.3.6.1.2.1.4.22.1.2.90.136.231.82.155|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.157|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.159|4x|005056AA16A0 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.160|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.161|4x|005056AA4227 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.162|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.163|4x|005056AA62EF -1.3.6.1.2.1.4.22.1.2.90.136.231.82.164|4x|005056AA0A3C -1.3.6.1.2.1.4.22.1.2.90.136.231.82.165|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.166|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.167|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.168|4x|005056AA8CD4 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.169|4x|005056AA8CD4 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.170|4x|005056AA681D -1.3.6.1.2.1.4.22.1.2.90.136.231.82.171|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.172|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.173|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.174|4x|005056AA8D7B -1.3.6.1.2.1.4.22.1.2.90.136.231.82.175|4x|005056AA9280 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.176|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.177|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.178|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.179|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.180|4x|005056AA52AD -1.3.6.1.2.1.4.22.1.2.90.136.231.82.182|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.184|4x|005056AA3C53 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.185|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.186|4x|005056AABA17 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.187|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.188|4x|005056AADFBB -1.3.6.1.2.1.4.22.1.2.90.136.231.82.189|4x|005056AA34AE -1.3.6.1.2.1.4.22.1.2.90.136.231.82.190|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.191|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.192|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.193|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.194|4x|005056AA4994 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.196|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.197|4x|005056AA73DD -1.3.6.1.2.1.4.22.1.2.90.136.231.82.198|4x|005056AA5BEB -1.3.6.1.2.1.4.22.1.2.90.136.231.82.199|4x|005056AABB42 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.200|4x|005056AAB97D -1.3.6.1.2.1.4.22.1.2.90.136.231.82.201|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.202|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.203|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.204|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.205|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.206|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.207|4x|005056AA10EC -1.3.6.1.2.1.4.22.1.2.90.136.231.82.209|4x|005056AADF5B -1.3.6.1.2.1.4.22.1.2.90.136.231.82.210|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.211|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.212|4x|005056AA5EAF -1.3.6.1.2.1.4.22.1.2.90.136.231.82.213|4x|005056AA2903 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.214|4x|005056AA957C -1.3.6.1.2.1.4.22.1.2.90.136.231.82.215|4x|005056AA0ED4 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.216|4x|005056AA2658 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.217|4x|005056AAB1F0 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.218|4x|005056AA2675 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.219|4x|005056AAAD07 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.220|4x|005056AA16AB -1.3.6.1.2.1.4.22.1.2.90.136.231.82.221|4x|005056AA1EC9 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.222|4x|005056AA81F2 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.223|4x|005056AAEF6A -1.3.6.1.2.1.4.22.1.2.90.136.231.82.224|4x|005056AABE7B -1.3.6.1.2.1.4.22.1.2.90.136.231.82.225|4x|005056AA38ED -1.3.6.1.2.1.4.22.1.2.90.136.231.82.226|4x|005056AA9D5A -1.3.6.1.2.1.4.22.1.2.90.136.231.82.227|4x|005056AA5125 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.228|4x|005056AA73D7 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.229|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.230|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.232|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.233|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.234|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.235|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.236|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.238|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.239|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.242|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.243|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.244|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.245|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.246|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.247|4x|005056AAC3BC -1.3.6.1.2.1.4.22.1.2.90.136.231.82.248|4x|005056AAD366 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.249|4x|005056AAE558 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.250|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.252|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.253|4x|005056AAF22B -1.3.6.1.2.1.4.22.1.2.90.136.231.82.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.82.255|4x|005056AA6B75 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.0|4x|005056AAC307 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.1|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.4|4x|005056AACADD -1.3.6.1.2.1.4.22.1.2.90.136.231.83.5|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.6|4x|005056AABCA8 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.7|4x|005056AA8616 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.9|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.10|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.11|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.12|4x|005056AAEC9F -1.3.6.1.2.1.4.22.1.2.90.136.231.83.13|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.14|4x|005056AA88E4 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.16|4x|005056AA1D11 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.17|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.18|4x|005056AA72B5 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.19|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.20|4x|005056AA7234 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.21|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.22|4x|005056AA5AC0 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.23|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.24|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.25|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.29|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.30|4x|005056AA9E90 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.31|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.32|4x|005056AAFC0C -1.3.6.1.2.1.4.22.1.2.90.136.231.83.33|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.34|4x|005056AA25A7 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.35|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.36|4x|005056AAE732 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.37|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.38|4x|005056AAC71C -1.3.6.1.2.1.4.22.1.2.90.136.231.83.39|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.40|4x|005056AA4433 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.41|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.42|4x|005056AA40B0 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.43|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.44|4x|005056AA48D1 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.45|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.46|4x|005056AAD24D -1.3.6.1.2.1.4.22.1.2.90.136.231.83.47|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.48|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.49|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.50|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.51|4x|005056AA7210 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.53|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.54|4x|005056AAB536 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.56|4x|005056AA03FB -1.3.6.1.2.1.4.22.1.2.90.136.231.83.57|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.59|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.60|4x|005056AAFD4F -1.3.6.1.2.1.4.22.1.2.90.136.231.83.61|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.62|4x|005056AABC3C -1.3.6.1.2.1.4.22.1.2.90.136.231.83.63|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.64|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.65|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.66|4x|005056AA7008 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.67|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.68|4x|005056AAD1A6 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.70|4x|005056AA4297 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.72|4x|005056AAE45E -1.3.6.1.2.1.4.22.1.2.90.136.231.83.73|4x|005056AABC0E -1.3.6.1.2.1.4.22.1.2.90.136.231.83.74|4x|005056AA5470 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.75|4x|005056AA88E0 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.76|4x|005056AA337A -1.3.6.1.2.1.4.22.1.2.90.136.231.83.77|4x|005056AAD4DD -1.3.6.1.2.1.4.22.1.2.90.136.231.83.78|4x|005056AAC82D -1.3.6.1.2.1.4.22.1.2.90.136.231.83.79|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.80|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.81|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.83|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.87|4x|005056AA998A -1.3.6.1.2.1.4.22.1.2.90.136.231.83.89|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.92|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.93|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.94|4x|005056AAE021 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.95|4x|005056AA03F3 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.96|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.97|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.98|4x|005056AAB47D -1.3.6.1.2.1.4.22.1.2.90.136.231.83.99|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.100|4x|005056AAA762 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.102|4x|005056AADC1B -1.3.6.1.2.1.4.22.1.2.90.136.231.83.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.104|4x|005056AA6DDA -1.3.6.1.2.1.4.22.1.2.90.136.231.83.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.107|4x|005056AAF9C1 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.108|4x|005056AAFEAB -1.3.6.1.2.1.4.22.1.2.90.136.231.83.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.111|4x|005056AA6E5C -1.3.6.1.2.1.4.22.1.2.90.136.231.83.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.114|4x|005056AADC48 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.115|4x|005056AA4550 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.116|4x|005056AACBE4 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.117|4x|005056AABF91 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.118|4x|005056AA7E99 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.119|4x|005056AA2BEC -1.3.6.1.2.1.4.22.1.2.90.136.231.83.120|4x|005056AAB44C -1.3.6.1.2.1.4.22.1.2.90.136.231.83.121|4x|005056AA6B04 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.122|4x|005056AAB8BA -1.3.6.1.2.1.4.22.1.2.90.136.231.83.123|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.125|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.127|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.128|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.129|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.130|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.132|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.133|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.134|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.135|4x|005056AAB4F2 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.136|4x|005056AAC7B8 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.137|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.138|4x|005056AA7D90 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.139|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.140|4x|005056AACB2B -1.3.6.1.2.1.4.22.1.2.90.136.231.83.141|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.142|4x|005056AA7D36 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.143|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.145|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.146|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.149|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.150|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.151|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.152|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.153|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.155|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.157|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.159|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.161|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.162|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.163|4x|005056AA7A60 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.164|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.165|4x|005056AAB109 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.166|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.167|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.168|4x|005056AA6704 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.169|4x|005056AA31F2 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.170|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.171|4x|005056AA7258 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.173|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.175|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.176|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.177|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.178|4x|005056AA677B -1.3.6.1.2.1.4.22.1.2.90.136.231.83.179|4x|005056AA2F33 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.180|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.181|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.182|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.183|4x|005056AA7CC7 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.184|4x|005056AA6EE0 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.186|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.187|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.188|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.189|4x|005056AA26AA -1.3.6.1.2.1.4.22.1.2.90.136.231.83.190|4x|005056AA4702 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.191|4x|005056AAB40A -1.3.6.1.2.1.4.22.1.2.90.136.231.83.192|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.193|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.194|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.195|4x|005056AAF374 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.196|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.197|4x|FC48EF28802A -1.3.6.1.2.1.4.22.1.2.90.136.231.83.198|4x|0025904962BC -1.3.6.1.2.1.4.22.1.2.90.136.231.83.199|4x|0025904962BE -1.3.6.1.2.1.4.22.1.2.90.136.231.83.200|4x|0025904969E4 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.201|4x|0025904962B0 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.202|4x|0025904948D6 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.203|4x|0025904969E0 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.204|4x|0025904969DA -1.3.6.1.2.1.4.22.1.2.90.136.231.83.205|4x|0025904948D8 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.207|4x|005056AAEFCE -1.3.6.1.2.1.4.22.1.2.90.136.231.83.208|4x|005056AA22C8 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.209|4x|005056AA4338 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.210|4x|005056AA14D4 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.211|4x|005056AAC3FE -1.3.6.1.2.1.4.22.1.2.90.136.231.83.212|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.213|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.214|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.215|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.216|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.217|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.218|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.219|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.221|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.222|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.223|4x|005056AA1FA4 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.224|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.225|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.226|4x|005056AA3B1F -1.3.6.1.2.1.4.22.1.2.90.136.231.83.227|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.228|4x|005056AA583B -1.3.6.1.2.1.4.22.1.2.90.136.231.83.229|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.230|4x|005056AA3018 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.233|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.234|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.235|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.236|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.237|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.238|4x|005056AA1562 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.239|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.242|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.243|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.244|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.245|4x|005056AAD094 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.246|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.248|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.249|4x|0025904948D8 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.250|4x|005056AA3B98 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.252|4x|005056AADA2C -1.3.6.1.2.1.4.22.1.2.90.136.231.83.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.83.255|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.0|4x|005056AADD78 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.1|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.2|4x|005056AADFCC -1.3.6.1.2.1.4.22.1.2.90.136.231.84.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.4|4x|005056AA6912 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.5|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.6|4x|005056AA7904 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.7|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.8|4x|005056AA24E1 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.9|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.10|4x|005056AA485E -1.3.6.1.2.1.4.22.1.2.90.136.231.84.11|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.12|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.13|4x|005056AAF389 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.14|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.15|4x|005056AAA322 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.16|4x|005056AA2927 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.17|4x|005056AA15CB -1.3.6.1.2.1.4.22.1.2.90.136.231.84.18|4x|005056AA982A -1.3.6.1.2.1.4.22.1.2.90.136.231.84.19|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.20|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.21|4x|005056AA5D39 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.22|4x|005056AAACC2 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.23|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.24|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.28|4x|0050569C3984 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.29|4x|000C296D55D5 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.30|4x|000C29CA79E2 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.31|4x|000C29F47D49 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.32|4x|005056AA4702 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.33|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.34|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.35|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.36|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.37|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.38|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.39|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.40|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.41|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.42|4x|005056AA9FA8 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.43|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.45|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.46|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.47|4x|000C290BCAA2 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.48|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.49|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.50|4x|005056AA086A -1.3.6.1.2.1.4.22.1.2.90.136.231.84.51|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.52|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.53|4x|005056AA2B22 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.54|4x|005056AAD55C -1.3.6.1.2.1.4.22.1.2.90.136.231.84.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.57|4x|005056AA6335 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.58|4x|005056AAC66A -1.3.6.1.2.1.4.22.1.2.90.136.231.84.59|4x|005056AACD4B -1.3.6.1.2.1.4.22.1.2.90.136.231.84.60|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.61|4x|005056AA5E79 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.62|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.63|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.64|4x|005056AAE249 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.65|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.66|4x|005056AA7068 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.67|4x|04F93894CA48 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.68|4x|04F93894CA9C -1.3.6.1.2.1.4.22.1.2.90.136.231.84.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.70|4x|005056AABDA7 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.71|4x|005056AADE31 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.72|4x|005056AA4D5B -1.3.6.1.2.1.4.22.1.2.90.136.231.84.73|4x|005056AA5B44 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.74|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.76|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.77|4x|005056AA90FC -1.3.6.1.2.1.4.22.1.2.90.136.231.84.78|4x|005056AA4B74 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.80|4x|005056AA53ED -1.3.6.1.2.1.4.22.1.2.90.136.231.84.81|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.82|4x|005056AABD03 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.83|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.86|4x|005056AAD63E -1.3.6.1.2.1.4.22.1.2.90.136.231.84.87|4x|005056AA8A71 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.88|4x|005056AA1DFD -1.3.6.1.2.1.4.22.1.2.90.136.231.84.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.91|4x|005056AA2724 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.92|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.93|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.94|4x|005056AA1DFD -1.3.6.1.2.1.4.22.1.2.90.136.231.84.95|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.96|4x|005056AAC020 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.97|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.104|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.108|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.112|4x|000C29F47D49 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.114|4x|005056AAF4DE -1.3.6.1.2.1.4.22.1.2.90.136.231.84.115|4x|005056AA193F -1.3.6.1.2.1.4.22.1.2.90.136.231.84.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.117|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.118|4x|005056AA1E5F -1.3.6.1.2.1.4.22.1.2.90.136.231.84.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.120|4x|005056AAE74A -1.3.6.1.2.1.4.22.1.2.90.136.231.84.121|4x|005056AA7449 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.122|4x|005056AA2789 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.123|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.124|4x|005056AAA8D2 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.125|4x|005056AAA8D2 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.127|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.128|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.129|4x|005056AAEADD -1.3.6.1.2.1.4.22.1.2.90.136.231.84.130|4x|005056AA85C5 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.132|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.133|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.134|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.135|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.136|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.137|4x|005056AA5BA1 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.138|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.139|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.140|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.141|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.142|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.143|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.145|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.146|4x|005056AA5E40 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.148|4x|005056AA46EB -1.3.6.1.2.1.4.22.1.2.90.136.231.84.149|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.150|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.151|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.152|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.153|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.155|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.157|4x|005056AA87C9 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.159|4x|005056AAEE38 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.160|4x|005056AA6617 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.161|4x|005056AA55F6 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.162|4x|005056AABB37 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.163|4x|005056AABD01 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.164|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.165|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.166|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.167|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.168|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.169|4x|005056AAC813 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.170|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.171|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.172|4x|005056AAA639 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.173|4x|005056AAB4F6 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.175|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.176|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.177|4x|005056AA4140 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.178|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.179|4x|005056AA0479 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.180|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.181|4x|005056AA8F6B -1.3.6.1.2.1.4.22.1.2.90.136.231.84.182|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.184|4x|005056AA01C3 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.185|4x|005056AACB15 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.186|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.187|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.188|4x|005056AA4D68 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.189|4x|005056AA02A1 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.190|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.191|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.192|4x|005056AA7159 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.193|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.194|4x|005056AAF775 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.196|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.197|4x|005056AAE840 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.198|4x|005056AA8A65 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.199|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.200|4x|005056AA5316 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.201|4x|005056AACB05 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.202|4x|005056AA2205 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.203|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.204|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.205|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.206|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.207|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.208|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.209|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.210|4x|005056AA9236 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.212|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.213|4x|005056AAB49A -1.3.6.1.2.1.4.22.1.2.90.136.231.84.214|4x|005056AAB166 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.215|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.216|4x|005056AA34E7 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.217|4x|005056AA4888 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.218|4x|005056AA4888 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.219|4x|005056AA9321 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.221|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.222|4x|005056AA6CD0 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.223|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.224|4x|005056AA067C -1.3.6.1.2.1.4.22.1.2.90.136.231.84.225|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.226|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.227|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.228|4x|005056AA68C0 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.229|4x|005056AADA3D -1.3.6.1.2.1.4.22.1.2.90.136.231.84.230|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.231|4x|005056AA901E -1.3.6.1.2.1.4.22.1.2.90.136.231.84.232|4x|005056AA5CD0 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.233|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.234|4x|005056AA4F5A -1.3.6.1.2.1.4.22.1.2.90.136.231.84.235|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.236|4x|005056AAE668 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.237|4x|E03676D808CD -1.3.6.1.2.1.4.22.1.2.90.136.231.84.238|4x|E03676D808E3 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.239|4x|E03676D80F2F -1.3.6.1.2.1.4.22.1.2.90.136.231.84.240|4x|005056AA8201 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.241|4x|80EE73B7C9D9 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.242|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.243|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.244|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.245|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.246|4x|005056AA7EE2 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.248|4x|005056AA9C9D -1.3.6.1.2.1.4.22.1.2.90.136.231.84.249|4x|005056AA2F7F -1.3.6.1.2.1.4.22.1.2.90.136.231.84.250|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.251|4x|005056AA4AFE -1.3.6.1.2.1.4.22.1.2.90.136.231.84.252|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.253|4x|005056AAACD1 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.84.255|4x|005056AA2388 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.0|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.1|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.2|4x|005056AA231A -1.3.6.1.2.1.4.22.1.2.90.136.231.85.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.5|4x|005056AA5907 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.7|4x|005056AAA819 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.10|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.11|4x|005056AABB75 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.12|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.13|4x|005056AAEB15 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.14|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.15|4x|005056AAEB15 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.16|4x|005056AAB6D6 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.17|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.18|4x|005056AAEA02 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.19|4x|005056AAB40A -1.3.6.1.2.1.4.22.1.2.90.136.231.85.20|4x|005056AA3882 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.21|4x|005056AAD00E -1.3.6.1.2.1.4.22.1.2.90.136.231.85.22|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.23|4x|005056AAB4E6 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.24|4x|005056AAB4E6 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.25|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.28|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.29|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.30|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.31|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.32|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.33|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.34|4x|005056AA214F -1.3.6.1.2.1.4.22.1.2.90.136.231.85.35|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.36|4x|005056AAB8D1 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.37|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.38|4x|005056AA3CC1 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.39|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.40|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.41|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.42|4x|005056AAC6B5 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.43|4x|005056AA8064 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.44|4x|005056AA9093 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.45|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.46|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.47|4x|005056AAA841 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.48|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.49|4x|005056AA666D -1.3.6.1.2.1.4.22.1.2.90.136.231.85.50|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.51|4x|005056AABD78 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.52|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.53|4x|005056AA61EE -1.3.6.1.2.1.4.22.1.2.90.136.231.85.54|4x|005056AA61EE -1.3.6.1.2.1.4.22.1.2.90.136.231.85.55|4x|005056AADE31 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.56|4x|005056AA4C80 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.57|4x|005056AA4C4C -1.3.6.1.2.1.4.22.1.2.90.136.231.85.58|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.59|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.60|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.61|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.62|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.63|4x|005056AAD598 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.64|4x|005056AA2241 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.65|4x|005056AA3C83 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.66|4x|005056AAEEEF -1.3.6.1.2.1.4.22.1.2.90.136.231.85.67|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.68|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.70|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.71|4x|005056AA8B98 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.72|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.73|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.74|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.76|4x|005056AA1C95 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.77|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.78|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.79|4x|005056AA757B -1.3.6.1.2.1.4.22.1.2.90.136.231.85.80|4x|005056AAF8C4 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.81|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.83|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.86|4x|005056AA7168 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.87|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.88|4x|E03676D809B3 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.89|4x|487B6BDA362A -1.3.6.1.2.1.4.22.1.2.90.136.231.85.90|4x|005056AACC68 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.92|4x|005056AA744A -1.3.6.1.2.1.4.22.1.2.90.136.231.85.93|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.94|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.95|4x|005056AAE5A5 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.96|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.97|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.99|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.101|4x|005056AAF9DF -1.3.6.1.2.1.4.22.1.2.90.136.231.85.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.104|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.105|4x|005056AAD7F1 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.107|4x|005056AA5284 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.108|4x|005056AA7138 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.109|4x|005056AAF340 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.110|4x|005056AA57B9 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.114|4x|005056AA169C -1.3.6.1.2.1.4.22.1.2.90.136.231.85.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.116|4x|005056AA2853 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.117|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.118|4x|005056AAFBE8 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.121|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.123|4x|E03676D80941 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.124|4x|005056AAB1EE -1.3.6.1.2.1.4.22.1.2.90.136.231.85.125|4x|005056AAB1EE -1.3.6.1.2.1.4.22.1.2.90.136.231.85.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.127|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.128|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.129|4x|005056AA5B90 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.130|4x|005056AA6AE4 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.131|4x|005056AA0206 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.132|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.133|4x|005056AA38FC -1.3.6.1.2.1.4.22.1.2.90.136.231.85.134|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.135|4x|005056AA6181 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.136|4x|E03676D80941 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.137|4x|005056AA0562 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.138|4x|005056AA0562 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.139|4x|005056AA85C5 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.140|4x|005056AA151E -1.3.6.1.2.1.4.22.1.2.90.136.231.85.141|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.142|4x|005056AA35C5 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.143|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.144|4x|005056AA29AD -1.3.6.1.2.1.4.22.1.2.90.136.231.85.145|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.146|4x|005056AA4E22 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.149|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.150|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.151|4x|005056AAA9F4 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.152|4x|E03676D808DD -1.3.6.1.2.1.4.22.1.2.90.136.231.85.153|4x|E03676D80903 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.155|4x|005056AA72C1 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.159|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.160|4x|005056AAC7B3 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.161|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.162|4x|005056AA6E94 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.163|4x|005056AA941B -1.3.6.1.2.1.4.22.1.2.90.136.231.85.164|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.165|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.166|4x|005056AA664D -1.3.6.1.2.1.4.22.1.2.90.136.231.85.167|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.168|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.169|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.170|4x|005056AA3862 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.171|4x|005056AA56DF -1.3.6.1.2.1.4.22.1.2.90.136.231.85.172|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.173|4x|005056AA99AF -1.3.6.1.2.1.4.22.1.2.90.136.231.85.174|4x|005056AA28C3 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.176|4x|005056AA7BA6 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.177|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.178|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.179|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.180|4x|005056AAEF4E -1.3.6.1.2.1.4.22.1.2.90.136.231.85.181|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.182|4x|005056AA6378 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.184|4x|005056AA02D2 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.185|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.186|4x|005056AAC2D7 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.187|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.188|4x|005056AA8E7B -1.3.6.1.2.1.4.22.1.2.90.136.231.85.189|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.190|4x|005056AAB492 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.191|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.192|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.193|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.194|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.196|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.197|4x|005056AA177B -1.3.6.1.2.1.4.22.1.2.90.136.231.85.198|4x|005056AACDA9 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.200|4x|005056AA583A -1.3.6.1.2.1.4.22.1.2.90.136.231.85.201|4x|005056AAFC17 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.202|4x|005056AAFC17 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.203|4x|005056AA2F6C -1.3.6.1.2.1.4.22.1.2.90.136.231.85.204|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.205|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.206|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.207|4x|005056AA7F19 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.208|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.209|4x|005056AAFC0D -1.3.6.1.2.1.4.22.1.2.90.136.231.85.210|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.213|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.214|4x|005056AA7FB0 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.215|4x|005056AAB75B -1.3.6.1.2.1.4.22.1.2.90.136.231.85.216|4x|005056AA5DF4 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.217|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.218|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.219|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.221|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.222|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.223|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.224|4x|005056AA92F6 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.225|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.226|4x|005056AAA55F -1.3.6.1.2.1.4.22.1.2.90.136.231.85.227|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.228|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.229|4x|005056AAEDCE -1.3.6.1.2.1.4.22.1.2.90.136.231.85.230|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.231|4x|005056AA70C4 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.232|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.233|4x|005056AAB696 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.234|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.235|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.236|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.237|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.238|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.239|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.240|4x|005056AA2E22 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.242|4x|005056AAFE4E -1.3.6.1.2.1.4.22.1.2.90.136.231.85.243|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.244|4x|005056AA2FD3 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.245|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.246|4x|005056AA39FC -1.3.6.1.2.1.4.22.1.2.90.136.231.85.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.248|4x|005056AA6FF3 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.250|4x|005056AA273C -1.3.6.1.2.1.4.22.1.2.90.136.231.85.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.252|4x|005056AA76B5 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.85.255|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.1|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.4|4x|005056AA22A2 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.5|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.7|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.9|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.10|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.11|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.12|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.13|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.14|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.15|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.16|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.17|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.18|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.19|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.20|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.21|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.22|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.23|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.24|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.25|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.28|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.29|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.30|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.31|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.32|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.33|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.35|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.36|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.37|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.38|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.39|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.40|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.41|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.43|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.44|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.45|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.46|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.47|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.48|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.49|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.50|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.51|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.52|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.53|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.54|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.56|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.57|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.58|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.59|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.60|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.61|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.62|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.63|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.64|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.65|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.66|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.67|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.68|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.70|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.72|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.73|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.74|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.76|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.77|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.78|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.79|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.80|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.81|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.83|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.88|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.92|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.93|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.94|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.95|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.96|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.97|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.104|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.114|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.117|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.121|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.123|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.125|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.127|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.128|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.129|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.130|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.132|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.133|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.134|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.135|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.136|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.137|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.138|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.139|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.140|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.141|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.142|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.143|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.145|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.146|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.149|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.150|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.151|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.152|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.155|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.157|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.160|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.161|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.162|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.163|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.164|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.165|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.166|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.167|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.168|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.169|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.170|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.171|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.172|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.173|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.175|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.176|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.177|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.178|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.180|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.181|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.182|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.184|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.185|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.187|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.188|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.189|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.190|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.192|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.193|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.196|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.197|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.198|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.199|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.200|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.201|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.202|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.203|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.205|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.206|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.207|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.208|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.209|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.210|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.211|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.212|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.213|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.214|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.215|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.216|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.217|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.218|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.222|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.223|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.224|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.225|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.227|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.228|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.229|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.230|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.231|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.232|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.233|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.235|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.236|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.237|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.238|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.239|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.242|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.243|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.244|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.245|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.248|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.250|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.252|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.86.255|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.0|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.1|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.5|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.7|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.9|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.10|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.11|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.12|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.13|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.14|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.15|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.16|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.17|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.18|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.19|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.20|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.21|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.22|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.23|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.24|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.25|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.28|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.29|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.30|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.31|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.32|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.35|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.38|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.39|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.40|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.41|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.42|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.43|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.44|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.45|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.46|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.47|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.48|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.49|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.50|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.51|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.52|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.53|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.54|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.56|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.57|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.58|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.59|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.60|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.61|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.62|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.63|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.64|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.66|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.67|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.68|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.70|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.72|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.73|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.74|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.76|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.77|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.78|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.79|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.80|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.81|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.83|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.88|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.89|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.92|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.93|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.94|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.95|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.96|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.99|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.104|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.108|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.114|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.117|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.121|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.125|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.127|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.128|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.129|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.130|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.132|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.134|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.135|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.136|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.137|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.138|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.139|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.141|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.142|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.143|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.145|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.146|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.149|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.150|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.151|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.152|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.155|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.157|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.159|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.160|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.161|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.162|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.163|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.164|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.165|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.166|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.167|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.168|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.170|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.171|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.172|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.173|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.175|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.176|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.177|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.178|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.179|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.180|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.181|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.182|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.184|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.186|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.187|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.188|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.189|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.190|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.191|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.192|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.193|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.194|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.196|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.197|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.198|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.199|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.200|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.201|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.202|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.203|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.204|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.205|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.206|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.207|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.209|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.210|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.211|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.213|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.214|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.215|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.216|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.217|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.218|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.219|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.221|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.222|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.223|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.224|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.226|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.227|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.228|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.229|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.230|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.231|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.232|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.233|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.234|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.235|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.236|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.237|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.238|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.239|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.242|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.243|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.244|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.245|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.246|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.248|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.250|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.252|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.90.136.231.87.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.5|4x|005056849DC4 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.6|4x|005056840A1B -1.3.6.1.2.1.4.22.1.2.91.136.231.70.7|4x|005056B2174D -1.3.6.1.2.1.4.22.1.2.91.136.231.70.8|4x|005056B25546 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.9|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.11|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.13|4x|0050568A0822 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.14|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.15|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.16|4x|0050568A0820 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.17|4x|0050568A081F -1.3.6.1.2.1.4.22.1.2.91.136.231.70.18|4x|0050568A081C -1.3.6.1.2.1.4.22.1.2.91.136.231.70.19|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.20|4x|0050568A1513 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.21|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.22|4x|005056B23672 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.23|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.24|4x|00505684AA3F -1.3.6.1.2.1.4.22.1.2.91.136.231.70.25|4x|00505684A12C -1.3.6.1.2.1.4.22.1.2.91.136.231.70.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.28|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.29|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.30|4x|005056B25AFD -1.3.6.1.2.1.4.22.1.2.91.136.231.70.31|4x|0050568409DB -1.3.6.1.2.1.4.22.1.2.91.136.231.70.32|4x|005056847653 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.33|4x|0050568A00F5 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.34|4x|0050568A00F7 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.35|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.36|4x|00505684527A -1.3.6.1.2.1.4.22.1.2.91.136.231.70.37|4x|005056841979 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.38|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.39|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.40|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.41|4x|00505684B3B3 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.42|4x|005056846035 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.43|4x|005056847E07 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.44|4x|0050568422D9 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.45|4x|005056840FC9 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.46|4x|005056B273B6 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.47|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.48|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.49|4x|005056844456 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.50|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.51|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.52|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.53|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.54|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.56|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.57|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.58|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.59|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.60|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.61|4x|00505684413C -1.3.6.1.2.1.4.22.1.2.91.136.231.70.62|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.63|4x|005056841F7E -1.3.6.1.2.1.4.22.1.2.91.136.231.70.64|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.65|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.66|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.67|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.68|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.69|4x|005056840501 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.70|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.71|4x|0050568A53AB -1.3.6.1.2.1.4.22.1.2.91.136.231.70.72|4x|005056B24E9C -1.3.6.1.2.1.4.22.1.2.91.136.231.70.73|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.74|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.76|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.77|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.78|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.79|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.80|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.81|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.83|4x|00505684C5FE -1.3.6.1.2.1.4.22.1.2.91.136.231.70.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.87|4x|00505684EB20 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.88|4x|005056846142 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.89|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.92|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.93|4x|0050568A3CBC -1.3.6.1.2.1.4.22.1.2.91.136.231.70.94|4x|0050568A3D80 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.95|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.96|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.97|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.99|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.100|4x|0050568A4139 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.108|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.109|4x|005056847AC0 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.110|4x|005056845864 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.111|4x|005056844F53 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.114|4x|005056B20F38 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.117|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.121|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.122|4x|0050568A772D -1.3.6.1.2.1.4.22.1.2.91.136.231.70.123|4x|0050568A772E -1.3.6.1.2.1.4.22.1.2.91.136.231.70.124|4x|0050568A772F -1.3.6.1.2.1.4.22.1.2.91.136.231.70.125|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.126|4x|0050568A7731 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.127|4x|0050568A7732 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.128|4x|0050568A76E4 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.129|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.130|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.132|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.133|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.134|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.135|4x|005056B249A0 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.136|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.137|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.138|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.139|4x|005056B265BA -1.3.6.1.2.1.4.22.1.2.91.136.231.70.140|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.141|4x|005056840470 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.142|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.143|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.145|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.146|4x|005056840D96 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.149|4x|005056B2C45C -1.3.6.1.2.1.4.22.1.2.91.136.231.70.150|4x|005056B26241 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.151|4x|0050568A00F6 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.152|4x|0050568A00F9 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.153|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.154|4x|00505684E98E -1.3.6.1.2.1.4.22.1.2.91.136.231.70.155|4x|005056845EEE -1.3.6.1.2.1.4.22.1.2.91.136.231.70.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.157|4x|005056B2520B -1.3.6.1.2.1.4.22.1.2.91.136.231.70.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.159|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.160|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.161|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.162|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.163|4x|005056842275 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.164|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.165|4x|00505684CC31 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.166|4x|00505684C7E6 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.167|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.168|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.169|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.170|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.171|4x|0050568495A9 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.172|4x|005056846577 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.173|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.175|4x|005056B24CD3 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.176|4x|005056B23B41 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.177|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.178|4x|0050568406FD -1.3.6.1.2.1.4.22.1.2.91.136.231.70.179|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.180|4x|005056B20E21 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.181|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.182|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.184|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.185|4x|00505684E4E2 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.186|4x|005056845D9C -1.3.6.1.2.1.4.22.1.2.91.136.231.70.187|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.188|4x|005056845B78 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.189|4x|005056841E49 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.190|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.191|4x|00505684F6AC -1.3.6.1.2.1.4.22.1.2.91.136.231.70.192|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.193|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.194|4x|005056842442 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.196|4x|00505684E9C4 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.197|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.198|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.199|4x|00505684C62A -1.3.6.1.2.1.4.22.1.2.91.136.231.70.200|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.201|4x|00505684151E -1.3.6.1.2.1.4.22.1.2.91.136.231.70.202|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.203|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.204|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.205|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.206|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.207|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.208|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.210|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.211|4x|0050568400C0 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.212|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.213|4x|005056845990 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.214|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.215|4x|005056B23A80 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.216|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.217|4x|005056844A40 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.218|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.219|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.221|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.222|4x|005056847E43 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.223|4x|005056849855 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.224|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.225|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.226|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.227|4x|005056842713 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.228|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.229|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.230|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.231|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.232|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.233|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.234|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.235|4x|00505684974C -1.3.6.1.2.1.4.22.1.2.91.136.231.70.236|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.237|4x|005056BC73AA -1.3.6.1.2.1.4.22.1.2.91.136.231.70.238|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.239|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.242|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.243|4x|005056BC84DC -1.3.6.1.2.1.4.22.1.2.91.136.231.70.244|4x|005056BCD975 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.245|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.246|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.247|4x|005056BCD049 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.248|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.250|4x|005056BC2F43 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.252|4x|005056BC31F5 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.253|4x|005056847409 -1.3.6.1.2.1.4.22.1.2.91.136.231.70.254|4x|00505691341E -1.3.6.1.2.1.4.22.1.2.93.136.231.71.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.5|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.7|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.9|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.10|4x|005056840660 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.11|4x|005056B2299D -1.3.6.1.2.1.4.22.1.2.93.136.231.71.12|4x|005056B20AE4 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.13|4x|005056B22795 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.14|4x|005056B27055 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.15|4x|005056B26B21 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.16|4x|005056B270E3 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.17|4x|005056847BE6 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.18|4x|005056B21494 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.19|4x|00505684FBFD -1.3.6.1.2.1.4.22.1.2.93.136.231.71.20|4x|005056848A27 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.21|4x|005056B2682E -1.3.6.1.2.1.4.22.1.2.93.136.231.71.22|4x|005056BC65F4 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.23|4x|005056B24870 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.24|4x|0050568403C5 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.25|4x|00505684283B -1.3.6.1.2.1.4.22.1.2.93.136.231.71.26|4x|005056840E91 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.27|4x|00505684774C -1.3.6.1.2.1.4.22.1.2.93.136.231.71.28|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.29|4x|005056B23A8F -1.3.6.1.2.1.4.22.1.2.93.136.231.71.30|4x|00505684E1C8 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.31|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.32|4x|005056849DB7 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.33|4x|0050568435AD -1.3.6.1.2.1.4.22.1.2.93.136.231.71.34|4x|00505684C997 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.35|4x|005056841CE8 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.36|4x|005056848C6B -1.3.6.1.2.1.4.22.1.2.93.136.231.71.37|4x|00505684DB63 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.38|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.39|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.40|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.41|4x|0050568452D9 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.42|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.44|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.45|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.46|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.47|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.48|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.50|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.51|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.53|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.57|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.58|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.59|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.60|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.61|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.62|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.63|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.66|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.67|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.68|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.70|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.73|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.74|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.76|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.77|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.78|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.79|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.80|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.81|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.87|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.88|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.89|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.92|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.93|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.94|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.95|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.96|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.97|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.99|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.104|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.108|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.114|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.117|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.121|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.123|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.125|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.127|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.128|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.129|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.130|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.132|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.133|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.134|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.135|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.136|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.137|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.138|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.139|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.140|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.141|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.142|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.143|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.145|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.146|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.149|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.150|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.151|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.152|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.153|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.155|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.157|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.160|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.161|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.162|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.163|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.164|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.165|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.166|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.167|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.168|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.169|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.170|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.172|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.173|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.175|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.176|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.178|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.179|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.180|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.181|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.182|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.184|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.185|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.186|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.187|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.188|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.189|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.190|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.191|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.192|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.193|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.194|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.196|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.197|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.198|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.200|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.201|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.202|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.203|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.204|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.205|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.206|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.207|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.208|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.209|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.210|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.211|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.212|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.213|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.214|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.216|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.217|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.218|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.219|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.221|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.222|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.223|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.224|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.225|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.226|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.227|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.228|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.229|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.230|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.231|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.232|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.233|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.234|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.235|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.236|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.237|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.238|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.239|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.242|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.243|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.244|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.245|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.248|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.250|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.252|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.136.231.71.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.93.255.255.255.255|4x|FFFFFFFFFFFF -1.3.6.1.2.1.4.22.1.2.94.136.231.88.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.4|4x|005056B255B1 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.5|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.7|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.9|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.10|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.11|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.12|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.13|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.14|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.15|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.16|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.17|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.18|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.20|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.21|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.22|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.23|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.24|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.25|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.28|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.29|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.30|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.31|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.32|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.33|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.34|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.35|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.36|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.37|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.38|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.39|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.40|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.41|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.42|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.43|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.44|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.45|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.46|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.47|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.48|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.49|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.50|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.51|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.52|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.53|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.54|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.56|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.57|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.58|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.59|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.60|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.61|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.62|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.63|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.64|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.65|4x|044BED481E01 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.66|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.67|4x|784F439BE9A3 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.68|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.70|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.72|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.73|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.74|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.76|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.77|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.78|4x|9C4FDA9E5874 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.79|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.80|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.81|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.83|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.87|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.89|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.92|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.93|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.94|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.95|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.96|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.97|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.99|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.104|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.108|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.114|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.117|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.123|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.125|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.127|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.128|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.129|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.130|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.132|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.133|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.134|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.136|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.138|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.139|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.140|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.141|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.142|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.143|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.145|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.146|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.149|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.150|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.151|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.152|4x|C0EEFB5948C8 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.153|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.155|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.157|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.159|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.160|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.161|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.162|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.163|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.164|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.165|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.166|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.167|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.168|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.169|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.170|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.172|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.173|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.175|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.176|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.178|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.180|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.181|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.182|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.184|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.185|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.186|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.187|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.188|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.190|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.191|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.193|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.194|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.196|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.197|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.198|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.199|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.200|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.201|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.202|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.203|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.204|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.205|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.206|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.208|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.209|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.211|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.212|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.213|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.214|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.215|4x|9810E8BEE179 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.216|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.217|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.218|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.219|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.221|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.222|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.223|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.224|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.225|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.226|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.227|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.228|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.229|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.230|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.231|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.233|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.234|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.235|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.236|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.237|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.238|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.239|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.242|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.243|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.244|4x|20F77C0CEC6B -1.3.6.1.2.1.4.22.1.2.94.136.231.88.245|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.246|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.248|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.250|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.252|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.88.255|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.0|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.1|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.3|4x|84B541D8459E -1.3.6.1.2.1.4.22.1.2.94.136.231.89.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.5|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.9|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.10|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.11|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.12|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.13|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.14|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.15|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.16|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.17|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.18|4x|24A074E8E296 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.19|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.20|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.21|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.22|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.23|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.24|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.25|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.28|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.29|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.31|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.32|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.33|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.34|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.35|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.36|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.37|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.38|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.39|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.40|4x|C8D08352DA44 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.41|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.42|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.43|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.44|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.45|4x|C4618B0B2DCB -1.3.6.1.2.1.4.22.1.2.94.136.231.89.46|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.47|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.48|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.49|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.50|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.51|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.52|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.53|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.54|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.56|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.57|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.58|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.59|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.60|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.61|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.62|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.63|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.64|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.65|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.66|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.67|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.68|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.70|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.72|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.73|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.74|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.76|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.77|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.78|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.79|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.80|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.83|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.87|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.88|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.89|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.92|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.93|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.94|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.95|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.96|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.97|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.99|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.104|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.106|4x|84B541D295F0 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.108|4x|4C66414C6300 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.114|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.117|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.121|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.123|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.125|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.127|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.128|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.129|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.130|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.132|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.133|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.134|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.135|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.136|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.137|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.138|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.139|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.141|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.142|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.143|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.145|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.146|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.149|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.150|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.151|4x|4C664181424E -1.3.6.1.2.1.4.22.1.2.94.136.231.89.152|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.153|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.155|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.157|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.159|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.160|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.161|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.162|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.163|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.164|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.165|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.166|4x|F018981259E1 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.167|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.168|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.169|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.170|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.171|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.172|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.173|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.175|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.176|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.177|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.178|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.179|4x|1C1BB5FF19E6 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.180|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.182|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.184|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.185|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.186|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.187|4x|482CA069A381 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.188|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.189|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.190|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.191|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.192|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.193|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.194|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.196|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.197|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.198|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.200|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.201|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.202|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.203|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.204|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.205|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.206|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.207|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.208|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.209|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.210|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.211|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.212|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.213|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.214|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.215|4x|68E7C2A388D5 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.216|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.217|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.218|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.219|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.221|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.222|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.223|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.224|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.225|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.226|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.227|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.228|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.229|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.230|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.231|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.232|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.233|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.234|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.235|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.236|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.237|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.238|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.239|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.242|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.243|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.244|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.245|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.246|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.248|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.250|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.252|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.89.255|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.0|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.1|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.5|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.7|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.9|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.10|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.11|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.12|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.13|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.14|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.15|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.16|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.17|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.18|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.19|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.20|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.21|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.22|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.23|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.24|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.25|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.28|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.29|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.30|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.31|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.32|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.33|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.34|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.35|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.36|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.37|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.38|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.39|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.40|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.41|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.43|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.44|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.45|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.46|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.47|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.48|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.49|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.50|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.51|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.52|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.53|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.54|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.56|4x|84B541E0C5B4 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.57|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.58|4x|A46CF1D244E9 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.59|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.60|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.61|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.62|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.63|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.64|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.65|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.66|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.67|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.68|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.70|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.72|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.73|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.74|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.76|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.77|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.78|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.79|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.80|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.83|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.87|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.88|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.89|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.93|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.94|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.95|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.96|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.97|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.99|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.104|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.108|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.114|4x|64BC0C835DA9 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.117|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.121|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.123|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.125|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.127|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.128|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.130|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.132|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.133|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.134|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.135|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.136|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.137|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.138|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.139|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.140|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.141|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.142|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.143|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.145|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.146|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.149|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.150|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.152|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.153|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.155|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.157|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.159|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.160|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.161|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.162|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.163|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.164|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.166|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.167|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.168|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.169|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.170|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.171|4x|AC5F3E416338 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.172|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.173|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.175|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.176|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.177|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.178|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.179|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.180|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.181|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.182|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.184|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.185|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.186|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.187|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.188|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.189|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.190|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.192|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.193|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.194|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.196|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.197|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.198|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.199|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.200|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.201|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.202|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.203|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.204|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.205|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.206|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.207|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.208|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.209|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.210|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.211|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.212|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.213|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.214|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.215|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.217|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.218|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.219|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.221|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.222|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.223|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.224|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.227|4x|84B541D29E88 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.228|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.229|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.230|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.231|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.232|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.233|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.234|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.235|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.236|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.238|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.239|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.242|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.243|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.244|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.245|4x|F439090E5079 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.246|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.248|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.250|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.251|4x|84B541E0C50C -1.3.6.1.2.1.4.22.1.2.94.136.231.90.252|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.90.255|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.0|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.1|4x|DC667250C8B1 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.5|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.7|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.9|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.10|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.11|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.12|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.13|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.14|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.15|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.16|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.17|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.18|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.19|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.20|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.21|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.22|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.23|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.24|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.25|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.28|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.29|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.30|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.31|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.32|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.33|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.34|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.35|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.36|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.37|4x|84CFBF895B3D -1.3.6.1.2.1.4.22.1.2.94.136.231.91.38|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.39|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.40|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.41|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.42|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.43|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.44|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.45|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.46|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.47|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.48|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.49|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.50|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.51|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.52|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.53|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.54|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.56|4x|DC667250C80F -1.3.6.1.2.1.4.22.1.2.94.136.231.91.58|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.59|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.60|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.61|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.62|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.63|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.64|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.65|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.66|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.67|4x|D4E6B7C5593D -1.3.6.1.2.1.4.22.1.2.94.136.231.91.68|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.70|4x|F6D008142735 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.72|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.74|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.76|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.77|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.78|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.79|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.80|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.81|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.87|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.88|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.89|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.92|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.93|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.94|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.95|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.96|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.97|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.99|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.101|4x|08C5E199A129 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.104|4x|84B541E0C680 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.108|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.114|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.117|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.121|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.125|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.127|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.128|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.129|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.130|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.132|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.133|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.134|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.135|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.136|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.137|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.138|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.139|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.140|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.141|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.142|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.143|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.145|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.146|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.149|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.150|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.151|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.152|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.153|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.155|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.157|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.159|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.160|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.161|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.162|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.163|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.164|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.165|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.166|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.167|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.168|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.169|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.170|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.171|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.172|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.173|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.175|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.176|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.177|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.178|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.179|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.180|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.181|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.182|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.184|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.185|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.186|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.187|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.188|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.189|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.190|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.191|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.192|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.194|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.196|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.198|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.199|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.200|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.201|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.202|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.203|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.204|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.205|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.206|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.207|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.208|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.209|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.210|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.211|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.212|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.213|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.214|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.215|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.216|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.217|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.218|4x|5C518114F98F -1.3.6.1.2.1.4.22.1.2.94.136.231.91.219|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.221|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.222|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.223|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.224|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.225|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.226|4x|84B541D29C80 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.227|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.228|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.229|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.230|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.231|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.233|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.234|4x|4C57CADD4EFA -1.3.6.1.2.1.4.22.1.2.94.136.231.91.235|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.236|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.237|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.238|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.239|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.242|4x|84B541D8415E -1.3.6.1.2.1.4.22.1.2.94.136.231.91.243|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.244|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.245|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.246|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.248|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.250|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.252|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.91.255|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.0|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.1|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.3|4x|24181D6A81B7 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.5|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.7|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.9|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.10|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.11|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.12|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.13|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.14|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.15|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.16|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.17|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.18|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.19|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.20|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.21|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.23|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.24|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.25|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.28|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.29|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.30|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.31|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.32|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.33|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.34|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.35|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.36|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.37|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.38|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.39|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.40|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.41|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.42|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.43|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.44|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.45|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.46|4x|C4618B6C0611 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.47|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.48|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.49|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.50|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.51|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.52|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.53|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.54|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.56|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.57|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.58|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.59|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.60|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.61|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.62|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.63|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.64|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.65|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.66|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.67|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.68|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.70|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.72|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.73|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.74|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.76|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.78|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.79|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.80|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.81|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.83|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.84|4x|9809CF19DECA -1.3.6.1.2.1.4.22.1.2.94.136.231.92.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.87|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.88|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.89|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.92|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.93|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.94|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.95|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.96|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.97|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.99|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.104|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.108|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.114|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.117|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.121|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.123|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.125|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.127|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.128|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.129|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.130|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.132|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.133|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.134|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.135|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.136|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.137|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.138|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.139|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.140|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.141|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.142|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.143|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.146|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.149|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.151|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.153|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.155|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.157|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.159|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.160|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.161|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.162|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.163|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.164|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.165|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.166|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.167|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.169|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.170|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.171|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.172|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.173|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.175|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.176|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.177|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.178|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.180|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.181|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.182|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.185|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.186|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.187|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.188|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.189|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.190|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.191|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.192|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.193|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.194|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.196|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.197|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.198|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.199|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.200|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.201|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.202|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.203|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.205|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.206|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.207|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.208|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.209|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.210|4x|ACCF5C376F4F -1.3.6.1.2.1.4.22.1.2.94.136.231.92.211|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.212|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.213|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.214|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.215|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.216|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.217|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.218|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.219|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.221|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.222|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.225|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.226|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.227|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.228|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.230|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.231|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.232|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.233|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.234|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.235|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.236|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.237|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.239|4x|84B541E0C3C0 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.242|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.243|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.244|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.245|4x|70DEF92010FD -1.3.6.1.2.1.4.22.1.2.94.136.231.92.246|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.248|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.252|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.92.255|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.0|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.1|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.7|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.9|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.10|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.11|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.12|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.14|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.15|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.16|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.17|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.18|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.19|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.20|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.21|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.23|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.24|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.25|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.28|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.31|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.32|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.33|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.34|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.35|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.36|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.38|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.39|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.40|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.41|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.42|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.44|4x|84B5414EB3F2 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.45|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.46|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.47|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.48|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.49|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.50|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.51|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.52|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.53|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.54|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.56|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.57|4x|9CAD97C7F97F -1.3.6.1.2.1.4.22.1.2.94.136.231.93.58|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.59|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.60|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.61|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.62|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.63|4x|84B541D29620 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.64|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.65|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.66|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.67|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.68|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.70|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.72|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.74|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.76|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.77|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.78|4x|F45C898D3CDB -1.3.6.1.2.1.4.22.1.2.94.136.231.93.79|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.80|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.81|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.82|4x|84B541D84274 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.83|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.87|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.88|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.89|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.92|4x|84B541E0C734 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.93|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.94|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.95|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.96|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.97|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.99|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.104|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.113|4x|A4C4944222DC -1.3.6.1.2.1.4.22.1.2.94.136.231.93.114|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.117|4x|98E0D9627D72 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.121|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.123|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.125|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.127|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.130|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.132|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.133|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.134|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.136|4x|C0EEFBF47BCA -1.3.6.1.2.1.4.22.1.2.94.136.231.93.137|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.138|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.139|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.140|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.141|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.142|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.143|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.145|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.146|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.149|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.150|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.151|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.153|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.155|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.157|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.159|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.161|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.162|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.163|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.164|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.165|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.167|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.168|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.169|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.170|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.171|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.172|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.173|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.175|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.176|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.177|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.178|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.179|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.180|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.181|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.182|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.184|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.186|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.187|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.188|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.189|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.190|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.191|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.192|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.193|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.194|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.196|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.197|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.198|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.199|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.200|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.202|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.203|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.204|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.205|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.206|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.207|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.208|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.209|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.210|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.211|4x|24181D3F3EC0 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.212|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.213|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.214|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.215|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.216|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.217|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.218|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.219|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.221|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.222|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.223|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.224|4x|285AEBF28530 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.225|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.226|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.227|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.228|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.229|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.230|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.231|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.232|4x|C0EEFBE10065 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.233|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.235|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.236|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.237|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.238|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.239|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.242|4x|80AD16445AFB -1.3.6.1.2.1.4.22.1.2.94.136.231.93.243|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.244|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.245|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.246|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.248|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.250|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.252|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.93.255|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.0|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.1|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.5|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.7|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.9|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.10|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.11|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.13|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.14|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.16|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.17|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.18|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.19|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.20|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.21|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.22|4x|18AF61D1BC3D -1.3.6.1.2.1.4.22.1.2.94.136.231.94.23|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.24|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.25|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.28|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.29|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.30|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.31|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.33|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.34|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.35|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.36|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.37|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.38|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.39|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.40|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.41|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.42|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.43|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.44|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.45|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.46|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.47|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.48|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.49|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.50|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.51|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.52|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.54|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.56|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.57|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.58|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.59|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.60|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.61|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.62|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.63|4x|84B541D2954C -1.3.6.1.2.1.4.22.1.2.94.136.231.94.64|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.65|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.66|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.67|4x|88BFE46ED689 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.70|4x|84B541E0CCCE -1.3.6.1.2.1.4.22.1.2.94.136.231.94.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.72|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.74|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.76|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.77|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.78|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.79|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.80|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.83|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.87|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.88|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.89|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.92|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.93|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.94|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.95|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.96|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.97|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.104|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.108|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.114|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.117|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.121|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.122|4x|C4618B0D2FD5 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.123|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.125|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.127|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.128|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.129|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.130|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.132|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.133|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.134|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.135|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.136|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.137|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.138|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.139|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.140|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.141|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.142|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.143|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.145|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.146|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.149|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.150|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.151|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.152|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.153|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.155|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.157|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.159|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.160|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.161|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.162|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.163|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.164|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.165|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.166|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.167|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.168|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.170|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.172|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.173|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.175|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.176|4x|8C83E182FA7C -1.3.6.1.2.1.4.22.1.2.94.136.231.94.177|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.179|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.180|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.181|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.182|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.184|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.185|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.186|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.187|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.188|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.189|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.190|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.191|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.192|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.193|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.194|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.196|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.197|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.198|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.199|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.200|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.201|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.202|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.203|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.204|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.205|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.206|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.207|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.208|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.209|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.210|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.211|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.212|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.213|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.214|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.215|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.216|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.217|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.218|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.219|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.221|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.222|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.223|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.224|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.225|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.226|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.227|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.228|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.229|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.230|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.231|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.232|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.233|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.234|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.235|4x|A8B86E7D7779 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.236|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.237|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.238|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.239|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.242|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.243|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.244|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.245|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.246|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.248|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.250|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.252|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.94.255|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.0|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.1|4x|B48B19D8996E -1.3.6.1.2.1.4.22.1.2.94.136.231.95.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.5|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.7|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.9|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.10|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.11|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.12|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.13|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.14|4x|3871DE9D38D8 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.15|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.16|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.17|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.19|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.20|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.21|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.22|4x|78F882CA769F -1.3.6.1.2.1.4.22.1.2.94.136.231.95.23|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.24|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.25|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.28|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.29|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.30|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.32|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.33|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.34|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.35|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.36|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.37|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.38|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.39|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.40|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.41|4x|84B541E0C582 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.42|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.43|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.44|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.45|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.46|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.47|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.48|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.49|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.50|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.51|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.52|4x|C0EEFBF2E73C -1.3.6.1.2.1.4.22.1.2.94.136.231.95.53|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.54|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.56|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.57|4x|88119686A59F -1.3.6.1.2.1.4.22.1.2.94.136.231.95.58|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.59|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.60|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.61|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.62|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.63|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.64|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.65|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.66|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.67|4x|24181D11A124 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.68|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.70|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.72|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.73|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.74|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.76|4x|A8DB037ED2D1 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.77|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.78|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.79|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.80|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.81|4x|9097F32D3526 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.83|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.87|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.88|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.89|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.92|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.93|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.94|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.97|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.99|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.104|4x|F0CBA1CA8B58 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.108|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.114|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.117|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.121|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.123|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.125|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.127|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.128|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.129|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.132|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.133|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.134|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.135|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.136|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.137|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.138|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.139|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.140|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.141|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.142|4x|84B541E0CBBA -1.3.6.1.2.1.4.22.1.2.94.136.231.95.143|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.145|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.146|4x|D89C67C7685F -1.3.6.1.2.1.4.22.1.2.94.136.231.95.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.149|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.150|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.151|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.152|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.153|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.155|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.157|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.159|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.160|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.161|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.162|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.163|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.164|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.165|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.166|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.167|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.168|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.169|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.170|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.171|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.172|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.173|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.175|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.176|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.177|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.178|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.179|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.180|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.181|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.182|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.184|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.185|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.186|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.187|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.188|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.189|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.190|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.191|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.192|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.194|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.196|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.197|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.198|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.199|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.200|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.201|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.202|4x|8C705A743998 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.203|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.204|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.205|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.206|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.207|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.208|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.209|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.210|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.211|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.212|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.214|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.215|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.216|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.217|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.221|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.222|4x|58404E5BFC17 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.223|4x|84B541E0C35C -1.3.6.1.2.1.4.22.1.2.94.136.231.95.224|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.225|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.226|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.227|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.228|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.229|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.230|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.231|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.232|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.233|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.234|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.235|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.236|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.237|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.238|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.239|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.242|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.243|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.244|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.245|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.246|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.248|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.250|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.94.136.231.95.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.5|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.7|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.9|4x|0025908CD22D -1.3.6.1.2.1.4.22.1.2.95.136.231.62.10|4x|0025908CCC49 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.11|4x|0025908CD22B -1.3.6.1.2.1.4.22.1.2.95.136.231.62.12|4x|0025908CD228 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.13|4x|0025908CCA71 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.14|4x|0025908CCC3B -1.3.6.1.2.1.4.22.1.2.95.136.231.62.15|4x|0025908CCA74 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.16|4x|0025908CCAD3 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.17|4x|0025908CCA6E -1.3.6.1.2.1.4.22.1.2.95.136.231.62.18|4x|0025908CCA6D -1.3.6.1.2.1.4.22.1.2.95.136.231.62.19|4x|0025908CCAC2 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.20|4x|0025908CCC8F -1.3.6.1.2.1.4.22.1.2.95.136.231.62.21|4x|0025908CCC48 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.22|4x|0025908CCC4A -1.3.6.1.2.1.4.22.1.2.95.136.231.62.23|4x|0025908CCA70 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.24|4x|0025908CCA73 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.25|4x|0025908CCA99 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.26|4x|0025908CCA72 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.27|4x|0025908CCA75 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.28|4x|0025908CCABE -1.3.6.1.2.1.4.22.1.2.95.136.231.62.29|4x|0025904C29E4 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.30|4x|00259089FF71 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.31|4x|00259089FF45 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.32|4x|00259089FE0D -1.3.6.1.2.1.4.22.1.2.95.136.231.62.33|4x|00259089FF5C -1.3.6.1.2.1.4.22.1.2.95.136.231.62.34|4x|00259089FF65 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.35|4x|0025908CD229 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.36|4x|0025908CCC3C -1.3.6.1.2.1.4.22.1.2.95.136.231.62.37|4x|0025908CCABB -1.3.6.1.2.1.4.22.1.2.95.136.231.62.38|4x|0025908CCADC -1.3.6.1.2.1.4.22.1.2.95.136.231.62.39|4x|0025908CCAD7 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.40|4x|0025908CCADD -1.3.6.1.2.1.4.22.1.2.95.136.231.62.41|4x|0025908CCC43 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.42|4x|0025908CCC88 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.43|4x|0025908CCC8A -1.3.6.1.2.1.4.22.1.2.95.136.231.62.44|4x|0025908CCC44 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.45|4x|0025908CCC8E -1.3.6.1.2.1.4.22.1.2.95.136.231.62.46|4x|0025908CCAC3 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.47|4x|0025908CCAA7 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.48|4x|0025908CCAD6 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.49|4x|002590FE7300 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.50|4x|0025908CCC89 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.51|4x|0025908CCAB9 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.52|4x|0025908CCAD5 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.53|4x|0025908CCC4F -1.3.6.1.2.1.4.22.1.2.95.136.231.62.54|4x|0025908CCAC5 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.55|4x|0025908CCAC6 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.56|4x|0025908CCA9D -1.3.6.1.2.1.4.22.1.2.95.136.231.62.57|4x|AC1F6B4A4CF3 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.58|4x|AC1F6B49EEC9 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.59|4x|AC1F6B050701 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.60|4x|AC1F6B0506E0 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.61|4x|AC1F6B05073C -1.3.6.1.2.1.4.22.1.2.95.136.231.62.62|4x|AC1F6B050738 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.63|4x|0CC47AC75661 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.64|4x|0CC47AC755B2 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.65|4x|0CC47AC72CB3 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.66|4x|0CC47AC72CB0 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.67|4x|0CC47AC4965F -1.3.6.1.2.1.4.22.1.2.95.136.231.62.68|4x|0CC47AC493DB -1.3.6.1.2.1.4.22.1.2.95.136.231.62.69|4x|0CC47AAF768F -1.3.6.1.2.1.4.22.1.2.95.136.231.62.70|4x|0CC47AAF7690 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.71|4x|AC1F6B05068D -1.3.6.1.2.1.4.22.1.2.95.136.231.62.72|4x|AC1F6B04D1EB -1.3.6.1.2.1.4.22.1.2.95.136.231.62.73|4x|AC1F6B04D2C8 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.74|4x|AC1F6B05072C -1.3.6.1.2.1.4.22.1.2.95.136.231.62.75|4x|AC1F6B05073E -1.3.6.1.2.1.4.22.1.2.95.136.231.62.76|4x|AC1F6B050704 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.77|4x|AC1F6B05068A -1.3.6.1.2.1.4.22.1.2.95.136.231.62.78|4x|AC1F6B04D25C -1.3.6.1.2.1.4.22.1.2.95.136.231.62.79|4x|AC1F6B050729 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.80|4x|AC1F6B04D325 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.81|4x|AC1F6BB715C2 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.82|4x|AC1F6B4CCEE7 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.83|4x|AC1F6B04D245 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.84|4x|AC1F6B050444 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.85|4x|AC1F6B050845 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.86|4x|AC1F6B05073A -1.3.6.1.2.1.4.22.1.2.95.136.231.62.87|4x|AC1F6B04D2C5 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.88|4x|AC1F6B0506F8 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.89|4x|AC1F6B04D243 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.90|4x|AC1F6B050852 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.91|4x|AC1F6B0507A1 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.92|4x|AC1F6B04FAFD -1.3.6.1.2.1.4.22.1.2.95.136.231.62.93|4x|AC1F6B4CD03D -1.3.6.1.2.1.4.22.1.2.95.136.231.62.94|4x|AC1F6B4CCF63 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.95|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.96|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.101|4x|0CC47A46D98D -1.3.6.1.2.1.4.22.1.2.95.136.231.62.102|4x|0CC47A46D988 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.103|4x|0CC47A42FFA6 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.104|4x|0CC47A42FFA5 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.105|4x|0CC47A46D989 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.106|4x|0CC47A46D98A -1.3.6.1.2.1.4.22.1.2.95.136.231.62.107|4x|0CC47A49628A -1.3.6.1.2.1.4.22.1.2.95.136.231.62.108|4x|0CC47A46D987 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.109|4x|0CC47A48FFCD -1.3.6.1.2.1.4.22.1.2.95.136.231.62.110|4x|0CC47A48FFDB -1.3.6.1.2.1.4.22.1.2.95.136.231.62.111|4x|0CC47A48FFDF -1.3.6.1.2.1.4.22.1.2.95.136.231.62.112|4x|0CC47A42FF78 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.113|4x|0CC47A48FFEB -1.3.6.1.2.1.4.22.1.2.95.136.231.62.114|4x|0CC47A42FFBF -1.3.6.1.2.1.4.22.1.2.95.136.231.62.115|4x|0CC47A48FFE2 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.116|4x|0CC47A48FFF1 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.117|4x|0CC47A490071 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.118|4x|0CC47A490072 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.119|4x|0CC47A490097 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.120|4x|0CC47A490065 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.121|4x|0CC47A48FFCB -1.3.6.1.2.1.4.22.1.2.95.136.231.62.122|4x|0CC47A490063 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.123|4x|0CC47A4900A5 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.124|4x|0CC47A49006A -1.3.6.1.2.1.4.22.1.2.95.136.231.62.125|4x|0CC47A42FF90 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.126|4x|0CC47A42FFCB -1.3.6.1.2.1.4.22.1.2.95.136.231.62.127|4x|0CC47A42FFC7 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.128|4x|0CC47A42FF68 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.129|4x|0CC47A42FFC6 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.130|4x|0CC47A42FFB8 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.131|4x|0CC47A42FFCC -1.3.6.1.2.1.4.22.1.2.95.136.231.62.132|4x|0CC47A42FFBA -1.3.6.1.2.1.4.22.1.2.95.136.231.62.133|4x|0CC47A430067 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.134|4x|0CC47A430068 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.135|4x|0CC47A430070 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.136|4x|0CC47A42FFE7 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.137|4x|0CC47A42FFC5 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.138|4x|0CC47A43006A -1.3.6.1.2.1.4.22.1.2.95.136.231.62.139|4x|0CC47A430036 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.140|4x|0CC47A42FFA0 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.141|4x|0CC47A42FFA8 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.142|4x|0CC47A42FFF7 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.143|4x|0CC47A46D983 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.144|4x|0CC47A46D975 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.145|4x|0CC47A46D98C -1.3.6.1.2.1.4.22.1.2.95.136.231.62.146|4x|0CC47A46D986 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.147|4x|0CC47A42FFBB -1.3.6.1.2.1.4.22.1.2.95.136.231.62.148|4x|0CC47A42FFA4 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.149|4x|0CC47A4962B3 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.150|4x|0CC47A4962BF -1.3.6.1.2.1.4.22.1.2.95.136.231.62.151|4x|0CC47A49626C -1.3.6.1.2.1.4.22.1.2.95.136.231.62.152|4x|0CC47A42FF93 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.153|4x|0CC47A496264 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.154|4x|0CC47A49625E -1.3.6.1.2.1.4.22.1.2.95.136.231.62.155|4x|0CC47A496291 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.156|4x|0CC47A496296 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.157|4x|0CC47A496256 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.158|4x|0CC47A496298 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.159|4x|0CC47A496259 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.160|4x|0CC47A496293 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.161|4x|0CC47A49629A -1.3.6.1.2.1.4.22.1.2.95.136.231.62.162|4x|0CC47A43000B -1.3.6.1.2.1.4.22.1.2.95.136.231.62.163|4x|0CC47A496254 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.164|4x|0CC47A42FFB3 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.165|4x|0CC47A48FFDA -1.3.6.1.2.1.4.22.1.2.95.136.231.62.166|4x|0CC47A48FFA5 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.167|4x|0CC47A0F4298 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.168|4x|0CC47A430020 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.169|4x|0CC47A48FFEE -1.3.6.1.2.1.4.22.1.2.95.136.231.62.170|4x|0CC47A48FFA2 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.171|4x|0CC47A430030 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.172|4x|0CC47A43001D -1.3.6.1.2.1.4.22.1.2.95.136.231.62.173|4x|0CC47A42FFE3 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.174|4x|0CC47A48FFBB -1.3.6.1.2.1.4.22.1.2.95.136.231.62.175|4x|0CC47A490017 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.176|4x|0CC47A48FFF9 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.177|4x|0CC47A48FFD8 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.178|4x|0CC47A48FF9F -1.3.6.1.2.1.4.22.1.2.95.136.231.62.179|4x|0CC47A48FFD4 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.180|4x|0CC47A48FFF8 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.181|4x|0CC47A43000C -1.3.6.1.2.1.4.22.1.2.95.136.231.62.182|4x|0CC47A43006F -1.3.6.1.2.1.4.22.1.2.95.136.231.62.183|4x|0CC47A430000 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.184|4x|0CC47A42FF6F -1.3.6.1.2.1.4.22.1.2.95.136.231.62.185|4x|0CC47A430025 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.186|4x|0CC47A42FFB9 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.187|4x|0CC47A430032 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.188|4x|0CC47A42FF6B -1.3.6.1.2.1.4.22.1.2.95.136.231.62.189|4x|0CC47A42FFD4 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.190|4x|0CC47A42FF80 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.191|4x|0CC47A42FF8A -1.3.6.1.2.1.4.22.1.2.95.136.231.62.192|4x|0CC47A42FF76 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.193|4x|0CC47A430006 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.194|4x|0CC47A42FF89 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.195|4x|0CC47A430060 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.196|4x|0CC47A42FFD2 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.197|4x|0CC47A4962DA -1.3.6.1.2.1.4.22.1.2.95.136.231.62.198|4x|0CC47A49627E -1.3.6.1.2.1.4.22.1.2.95.136.231.62.199|4x|0CC47A496273 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.200|4x|0CC47A496266 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.201|4x|0CC47A4962CE -1.3.6.1.2.1.4.22.1.2.95.136.231.62.202|4x|0CC47A49628D -1.3.6.1.2.1.4.22.1.2.95.136.231.62.203|4x|0CC47A49628E -1.3.6.1.2.1.4.22.1.2.95.136.231.62.204|4x|0CC47A49623E -1.3.6.1.2.1.4.22.1.2.95.136.231.62.205|4x|0CC47A49000D -1.3.6.1.2.1.4.22.1.2.95.136.231.62.206|4x|0CC47A48FFFD -1.3.6.1.2.1.4.22.1.2.95.136.231.62.207|4x|0CC47A48FF53 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.208|4x|0CC47A49000A -1.3.6.1.2.1.4.22.1.2.95.136.231.62.209|4x|0CC47A48FF6A -1.3.6.1.2.1.4.22.1.2.95.136.231.62.210|4x|0CC47A4900A0 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.211|4x|0CC47A49000B -1.3.6.1.2.1.4.22.1.2.95.136.231.62.212|4x|0CC47A48FF52 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.213|4x|0CC47A430066 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.214|4x|0CC47A43005A -1.3.6.1.2.1.4.22.1.2.95.136.231.62.215|4x|0CC47A430064 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.216|4x|0CC47A4962A4 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.217|4x|0CC47A496285 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.218|4x|0CC47A430061 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.219|4x|0CC47A43002B -1.3.6.1.2.1.4.22.1.2.95.136.231.62.220|4x|0CC47A430075 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.221|4x|0CC47A490087 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.222|4x|0CC47A49009F -1.3.6.1.2.1.4.22.1.2.95.136.231.62.223|4x|0CC47A42FFDD -1.3.6.1.2.1.4.22.1.2.95.136.231.62.224|4x|0CC47A4900A7 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.225|4x|0CC47A490094 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.226|4x|0CC47A4900A6 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.227|4x|0CC47A490098 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.228|4x|0CC47A490070 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.229|4x|0CC47A490095 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.230|4x|0CC47A490074 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.231|4x|0CC47A490064 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.232|4x|0CC47A49009B -1.3.6.1.2.1.4.22.1.2.95.136.231.62.233|4x|0CC47A48FFD2 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.234|4x|0CC47A48FFB7 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.235|4x|0CC47A48FFC6 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.236|4x|0CC47A48FFCF -1.3.6.1.2.1.4.22.1.2.95.136.231.62.237|4x|0CC47A49009C -1.3.6.1.2.1.4.22.1.2.95.136.231.62.238|4x|0CC47A490084 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.239|4x|0CC47A490081 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.240|4x|0CC47A49008F -1.3.6.1.2.1.4.22.1.2.95.136.231.62.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.242|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.244|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.245|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.246|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.248|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.252|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.62.255|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.0|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.1|4x|0CC47A49006D -1.3.6.1.2.1.4.22.1.2.95.136.231.63.2|4x|0CC47A49008A -1.3.6.1.2.1.4.22.1.2.95.136.231.63.3|4x|0CC47A490078 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.4|4x|0CC47A490096 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.5|4x|0CC47A42FFB4 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.6|4x|0CC47A43006E -1.3.6.1.2.1.4.22.1.2.95.136.231.63.7|4x|0CC47A42FF9D -1.3.6.1.2.1.4.22.1.2.95.136.231.63.8|4x|0CC47A43000F -1.3.6.1.2.1.4.22.1.2.95.136.231.63.9|4x|0CC47A430022 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.10|4x|0CC47A42FF6C -1.3.6.1.2.1.4.22.1.2.95.136.231.63.11|4x|0CC47A42FFED -1.3.6.1.2.1.4.22.1.2.95.136.231.63.12|4x|0CC47A42FFA9 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.13|4x|0CC47A48FF9E -1.3.6.1.2.1.4.22.1.2.95.136.231.63.14|4x|0CC47A490018 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.15|4x|0CC47A48FFBE -1.3.6.1.2.1.4.22.1.2.95.136.231.63.16|4x|0CC47A49007A -1.3.6.1.2.1.4.22.1.2.95.136.231.63.17|4x|0CC47A48FFEF -1.3.6.1.2.1.4.22.1.2.95.136.231.63.18|4x|0CC47A49002B -1.3.6.1.2.1.4.22.1.2.95.136.231.63.19|4x|0CC47A490013 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.20|4x|0CC47A48FFBF -1.3.6.1.2.1.4.22.1.2.95.136.231.63.21|4x|0CC47A42FFEF -1.3.6.1.2.1.4.22.1.2.95.136.231.63.22|4x|0CC47A42FFF8 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.23|4x|0CC47A49006E -1.3.6.1.2.1.4.22.1.2.95.136.231.63.24|4x|0CC47A490093 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.25|4x|0CC47A49006C -1.3.6.1.2.1.4.22.1.2.95.136.231.63.26|4x|0CC47A42FF83 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.27|4x|0CC47A42FFFA -1.3.6.1.2.1.4.22.1.2.95.136.231.63.28|4x|0CC47A43000D -1.3.6.1.2.1.4.22.1.2.95.136.231.63.29|4x|0CC47A42FFF3 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.30|4x|0CC47A430018 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.31|4x|0CC47A42FF7B -1.3.6.1.2.1.4.22.1.2.95.136.231.63.32|4x|0CC47A42FF96 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.33|4x|0CC47A42FFF6 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.34|4x|0CC47A43001A -1.3.6.1.2.1.4.22.1.2.95.136.231.63.35|4x|0CC47A42FF91 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.36|4x|0CC47A42FF75 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.37|4x|0CC47A496280 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.38|4x|0CC47A46DA16 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.39|4x|0CC47A42FF74 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.40|4x|0CC47A42FFEC -1.3.6.1.2.1.4.22.1.2.95.136.231.63.41|4x|0CC47A46D984 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.42|4x|0CC47A42FFBE -1.3.6.1.2.1.4.22.1.2.95.136.231.63.43|4x|0CC47A42FF98 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.44|4x|0CC47A42FFE8 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.45|4x|0CC47A490008 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.46|4x|0CC47A490001 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.47|4x|0CC47A42FF87 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.48|4x|0CC47A48FF54 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.49|4x|0CC47A490091 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.50|4x|0CC47A49009E -1.3.6.1.2.1.4.22.1.2.95.136.231.63.51|4x|0CC47A490099 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.52|4x|0CC47A490003 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.53|4x|0CC47A4CF167 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.54|4x|0CC47A4CF17C -1.3.6.1.2.1.4.22.1.2.95.136.231.63.55|4x|0CC47A4CF166 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.56|4x|0CC47A4CF400 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.57|4x|0CC47A4D02B1 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.58|4x|0CC47A4CF294 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.59|4x|0CC47A4D02BA -1.3.6.1.2.1.4.22.1.2.95.136.231.63.60|4x|0CC47A4D027C -1.3.6.1.2.1.4.22.1.2.95.136.231.63.61|4x|002590FF22E3 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.62|4x|002590FF22EE -1.3.6.1.2.1.4.22.1.2.95.136.231.63.63|4x|002590FF22B7 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.64|4x|002590FF22B6 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.65|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.66|4x|002590FF2E10 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.67|4x|002590FEE76D -1.3.6.1.2.1.4.22.1.2.95.136.231.63.68|4x|002590FF51BC -1.3.6.1.2.1.4.22.1.2.95.136.231.63.69|4x|0CC47A930009 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.70|4x|0CC47A930094 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.71|4x|0CC47A92FEFE -1.3.6.1.2.1.4.22.1.2.95.136.231.63.72|4x|0CC47A9300B0 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.73|4x|0CC47ADCDD2F -1.3.6.1.2.1.4.22.1.2.95.136.231.63.74|4x|AC1F6B04D2E6 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.75|4x|AC1F6B04D4A3 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.76|4x|AC1F6B04D347 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.77|4x|AC1F6B04D335 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.78|4x|AC1F6B04D4BD -1.3.6.1.2.1.4.22.1.2.95.136.231.63.79|4x|AC1F6B04D252 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.80|4x|AC1F6B04D1DC -1.3.6.1.2.1.4.22.1.2.95.136.231.63.81|4x|AC1F6B04D489 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.82|4x|AC1F6B04D467 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.83|4x|AC1F6B04D33E -1.3.6.1.2.1.4.22.1.2.95.136.231.63.84|4x|AC1F6B049BED -1.3.6.1.2.1.4.22.1.2.95.136.231.63.85|4x|AC1F6B4A3805 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.86|4x|AC1F6B4A362D -1.3.6.1.2.1.4.22.1.2.95.136.231.63.87|4x|AC1F6B49C910 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.88|4x|AC1F6B49C62A -1.3.6.1.2.1.4.22.1.2.95.136.231.63.89|4x|AC1F6B49C6A8 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.90|4x|AC1F6B049B94 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.91|4x|AC1F6B04823C -1.3.6.1.2.1.4.22.1.2.95.136.231.63.92|4x|AC1F6B49C722 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.93|4x|AC1F6B4A379A -1.3.6.1.2.1.4.22.1.2.95.136.231.63.94|4x|AC1F6B4A3835 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.95|4x|AC1F6B4A36B7 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.96|4x|AC1F6B4A33FB -1.3.6.1.2.1.4.22.1.2.95.136.231.63.97|4x|AC1F6B4A367C -1.3.6.1.2.1.4.22.1.2.95.136.231.63.98|4x|AC1F6B4A3559 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.99|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.101|4x|00093D0200CD -1.3.6.1.2.1.4.22.1.2.95.136.231.63.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.104|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.105|4x|00093D003F98 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.107|4x|00093D02680B -1.3.6.1.2.1.4.22.1.2.95.136.231.63.108|4x|00093D007507 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.114|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.117|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.120|4x|0CC47A083D51 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.121|4x|0CC47A083CCE -1.3.6.1.2.1.4.22.1.2.95.136.231.63.122|4x|0CC47A083BC5 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.123|4x|0CC47A083C34 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.124|4x|0CC47A083CDF -1.3.6.1.2.1.4.22.1.2.95.136.231.63.125|4x|0CC47A083CDA -1.3.6.1.2.1.4.22.1.2.95.136.231.63.126|4x|0CC47A083BE7 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.127|4x|0CC47A083C2D -1.3.6.1.2.1.4.22.1.2.95.136.231.63.128|4x|0CC47A083CC3 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.129|4x|0CC47A083C77 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.130|4x|0CC47A083C96 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.131|4x|0CC47A083BB3 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.132|4x|0CC47A083BAA -1.3.6.1.2.1.4.22.1.2.95.136.231.63.133|4x|0CC47A083B85 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.134|4x|0CC47A083C19 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.135|4x|0CC47A083B81 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.136|4x|0CC47A06EB53 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.137|4x|0CC47A06EBE1 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.138|4x|0CC47A06EB36 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.139|4x|0CC47A06EB76 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.140|4x|0CC47A06ED11 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.141|4x|0CC47A06EB43 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.142|4x|0CC47A06EC58 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.143|4x|0CC47A06ECC1 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.144|4x|0CC47A083BF5 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.145|4x|0CC47A083C00 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.146|4x|0CC47A083BF7 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.147|4x|0CC47A083BF8 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.148|4x|0CC47A083BF3 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.149|4x|0CC47A083D37 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.150|4x|0CC47A083C11 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.151|4x|0CC47A083B70 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.152|4x|AC1F6B4A379F -1.3.6.1.2.1.4.22.1.2.95.136.231.63.153|4x|AC1F6B4A33DD -1.3.6.1.2.1.4.22.1.2.95.136.231.63.154|4x|AC1F6B4A3459 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.155|4x|AC1F6B4A3585 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.156|4x|AC1F6B49C6A6 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.157|4x|AC1F6B4A342E -1.3.6.1.2.1.4.22.1.2.95.136.231.63.158|4x|AC1F6B4A35B4 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.159|4x|AC1F6B49C90F -1.3.6.1.2.1.4.22.1.2.95.136.231.63.160|4x|AC1F6B49C64F -1.3.6.1.2.1.4.22.1.2.95.136.231.63.161|4x|AC1F6B1A918E -1.3.6.1.2.1.4.22.1.2.95.136.231.63.162|4x|AC1F6B1A91BA -1.3.6.1.2.1.4.22.1.2.95.136.231.63.163|4x|AC1F6B1A9B3B -1.3.6.1.2.1.4.22.1.2.95.136.231.63.164|4x|AC1F6B1A9B5E -1.3.6.1.2.1.4.22.1.2.95.136.231.63.165|4x|0025906DF86B -1.3.6.1.2.1.4.22.1.2.95.136.231.63.166|4x|0025903FED00 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.167|4x|0025906DF836 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.168|4x|0025906DFB30 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.169|4x|0025906DF908 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.170|4x|0025906EA3A7 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.171|4x|0025906EA30F -1.3.6.1.2.1.4.22.1.2.95.136.231.63.172|4x|0025903FECFA -1.3.6.1.2.1.4.22.1.2.95.136.231.63.173|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.175|4x|AC1F6B18C5C1 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.176|4x|AC1F6B120862 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.177|4x|AC1F6B18C5BD -1.3.6.1.2.1.4.22.1.2.95.136.231.63.178|4x|AC1F6B12080A -1.3.6.1.2.1.4.22.1.2.95.136.231.63.179|4x|AC1F6B18C5B3 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.180|4x|AC1F6B18C5C4 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.181|4x|AC1F6B18C567 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.182|4x|AC1F6B18C5CD -1.3.6.1.2.1.4.22.1.2.95.136.231.63.183|4x|AC1F6B18C73C -1.3.6.1.2.1.4.22.1.2.95.136.231.63.184|4x|AC1F6B18C56F -1.3.6.1.2.1.4.22.1.2.95.136.231.63.185|4x|AC1F6B18C566 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.186|4x|AC1F6B18C5EA -1.3.6.1.2.1.4.22.1.2.95.136.231.63.187|4x|AC1F6B18C5AC -1.3.6.1.2.1.4.22.1.2.95.136.231.63.188|4x|AC1F6B18A0AC -1.3.6.1.2.1.4.22.1.2.95.136.231.63.189|4x|AC1F6B18C56C -1.3.6.1.2.1.4.22.1.2.95.136.231.63.190|4x|AC1F6B18C56A -1.3.6.1.2.1.4.22.1.2.95.136.231.63.191|4x|AC1F6B18A0CE -1.3.6.1.2.1.4.22.1.2.95.136.231.63.192|4x|AC1F6B18A097 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.193|4x|AC1F6B18A0D7 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.194|4x|AC1F6B18A091 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.195|4x|AC1F6B18C642 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.196|4x|AC1F6B18C59B -1.3.6.1.2.1.4.22.1.2.95.136.231.63.197|4x|AC1F6B18C599 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.198|4x|AC1F6B18C730 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.199|4x|AC1F6B18A094 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.200|4x|AC1F6B18C653 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.201|4x|AC1F6B18C57D -1.3.6.1.2.1.4.22.1.2.95.136.231.63.202|4x|AC1F6B18A0D2 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.203|4x|AC1F6B181CFE -1.3.6.1.2.1.4.22.1.2.95.136.231.63.204|4x|AC1F6B18A092 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.205|4x|AC1F6B18A063 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.206|4x|AC1F6B18C576 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.207|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.208|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.209|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.210|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.211|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.212|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.213|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.214|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.215|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.216|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.217|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.218|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.219|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.221|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.222|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.223|4x|0025906F2997 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.224|4x|0025909FB33D -1.3.6.1.2.1.4.22.1.2.95.136.231.63.225|4x|0025909E3D88 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.226|4x|0025909FB258 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.227|4x|002590CEBFCB -1.3.6.1.2.1.4.22.1.2.95.136.231.63.228|4x|002590CC9E8A -1.3.6.1.2.1.4.22.1.2.95.136.231.63.229|4x|0025909FB25E -1.3.6.1.2.1.4.22.1.2.95.136.231.63.230|4x|0025906DFA33 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.231|4x|0025909D7139 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.232|4x|0025909FB292 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.233|4x|002590CC9E79 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.234|4x|002590CC9E8B -1.3.6.1.2.1.4.22.1.2.95.136.231.63.235|4x|0025909FB2A0 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.236|4x|0025909D71BA -1.3.6.1.2.1.4.22.1.2.95.136.231.63.237|4x|002590CDC55E -1.3.6.1.2.1.4.22.1.2.95.136.231.63.238|4x|002590CDC549 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.239|4x|0025906DF837 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.240|4x|002590CEBF33 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.241|4x|002590CEC06D -1.3.6.1.2.1.4.22.1.2.95.136.231.63.242|4x|0025908FBA60 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.243|4x|0025908FBE54 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.244|4x|0025908FBE55 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.245|4x|0025908FBE53 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.246|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.248|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.250|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.252|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.95.136.231.63.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.96.136.231.245.36|4x|18B169CD15BD -1.3.6.1.2.1.4.22.1.2.96.136.231.245.37|4x|18B1697FEE2D -1.3.6.1.2.1.4.22.1.2.96.136.231.245.38|4x|18B1697FEDA4 -1.3.6.1.2.1.4.22.1.2.97.136.231.2.98|4x|FC7516170A03 -1.3.6.1.2.1.4.22.1.2.97.136.231.2.99|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.97.136.231.2.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.97.136.231.2.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.97.136.231.2.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.97.136.231.2.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.97.136.231.2.104|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.97.136.231.2.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.97.136.231.2.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.97.136.231.2.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.97.136.231.2.108|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.97.136.231.2.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.5|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.7|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.9|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.10|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.11|4x|005056B2517D -1.3.6.1.2.1.4.22.1.2.98.136.231.200.12|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.13|4x|005056B2013F -1.3.6.1.2.1.4.22.1.2.98.136.231.200.14|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.15|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.16|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.17|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.18|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.20|4x|005056B2786C -1.3.6.1.2.1.4.22.1.2.98.136.231.200.21|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.22|4x|005056B23E0A -1.3.6.1.2.1.4.22.1.2.98.136.231.200.23|4x|005056B247D0 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.24|4x|005056B212CC -1.3.6.1.2.1.4.22.1.2.98.136.231.200.25|4x|005056B239F2 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.28|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.29|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.30|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.31|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.32|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.33|4x|005056B209DE -1.3.6.1.2.1.4.22.1.2.98.136.231.200.34|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.35|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.36|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.37|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.38|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.39|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.40|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.41|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.42|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.43|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.44|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.45|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.46|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.47|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.48|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.49|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.52|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.53|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.54|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.56|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.57|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.58|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.59|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.60|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.61|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.62|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.63|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.65|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.66|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.67|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.68|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.70|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.72|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.73|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.74|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.76|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.77|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.78|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.79|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.80|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.81|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.83|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.87|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.88|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.89|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.92|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.93|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.94|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.95|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.96|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.97|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.99|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.104|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.108|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.114|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.121|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.123|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.125|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.127|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.128|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.129|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.130|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.132|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.134|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.135|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.136|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.137|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.138|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.139|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.140|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.141|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.142|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.143|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.145|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.146|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.149|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.150|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.152|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.153|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.157|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.159|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.160|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.161|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.162|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.163|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.164|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.165|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.166|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.167|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.168|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.169|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.170|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.171|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.172|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.173|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.175|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.176|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.178|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.179|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.180|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.181|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.182|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.185|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.186|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.187|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.188|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.189|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.190|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.191|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.193|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.194|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.196|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.197|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.198|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.199|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.200|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.202|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.203|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.204|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.205|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.207|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.208|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.209|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.210|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.211|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.212|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.213|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.214|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.215|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.216|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.217|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.219|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.221|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.222|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.223|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.224|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.225|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.226|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.229|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.230|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.231|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.232|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.233|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.234|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.235|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.236|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.237|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.238|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.239|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.242|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.243|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.244|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.245|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.246|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.248|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.250|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.252|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.98.136.231.200.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.5|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.7|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.9|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.10|4x|F48E38C2640A -1.3.6.1.2.1.4.22.1.2.100.136.231.27.11|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.12|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.13|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.15|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.16|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.17|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.20|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.21|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.22|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.23|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.24|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.25|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.28|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.29|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.30|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.31|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.32|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.33|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.34|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.35|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.36|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.37|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.38|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.39|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.40|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.41|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.42|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.43|4x|000B8273EFC5 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.44|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.45|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.46|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.47|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.48|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.49|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.50|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.51|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.53|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.54|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.56|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.57|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.58|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.59|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.61|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.62|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.63|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.64|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.65|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.66|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.67|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.68|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.70|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.72|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.73|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.74|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.76|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.77|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.78|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.79|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.80|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.81|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.83|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.87|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.88|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.89|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.92|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.93|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.94|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.95|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.96|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.97|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.99|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.104|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.108|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.114|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.117|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.121|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.123|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.125|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.127|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.128|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.129|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.130|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.132|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.133|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.134|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.135|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.136|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.137|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.138|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.139|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.140|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.141|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.142|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.143|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.145|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.146|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.149|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.150|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.151|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.152|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.153|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.155|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.157|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.159|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.160|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.161|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.162|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.163|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.164|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.165|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.167|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.168|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.169|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.170|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.171|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.172|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.175|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.176|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.177|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.178|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.179|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.180|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.181|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.182|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.184|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.185|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.186|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.187|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.188|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.189|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.190|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.191|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.192|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.193|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.194|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.196|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.197|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.198|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.199|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.200|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.201|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.202|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.203|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.204|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.205|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.206|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.207|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.208|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.209|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.210|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.211|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.212|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.213|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.214|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.215|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.216|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.217|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.218|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.219|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.221|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.222|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.223|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.224|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.225|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.226|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.227|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.228|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.229|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.230|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.231|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.232|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.233|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.234|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.235|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.236|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.237|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.238|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.239|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.242|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.243|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.244|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.245|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.246|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.248|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.250|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.252|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.100.136.231.27.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.101.136.231.3.65|4x|C042D0F7E1A0 -1.3.6.1.2.1.4.22.1.2.101.224.0.0.5|4x|01005E000005 -1.3.6.1.2.1.4.22.1.2.101.224.0.0.9|4x|01005E000009 -1.3.6.1.2.1.4.22.1.2.102.136.231.41.130|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.102.136.231.41.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.102.136.231.41.132|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.102.136.231.41.133|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.102.136.231.41.134|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.102.136.231.41.135|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.102.136.231.41.136|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.102.136.231.41.137|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.102.136.231.41.138|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.102.136.231.41.139|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.102.136.231.41.140|4x|00505684291F -1.3.6.1.2.1.4.22.1.2.102.136.231.41.141|4x|00505684FA99 -1.3.6.1.2.1.4.22.1.2.102.136.231.41.142|4x|005056847CD6 -1.3.6.1.2.1.4.22.1.2.102.136.231.41.143|4x|00505684CC6E -1.3.6.1.2.1.4.22.1.2.102.136.231.41.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.102.136.231.41.145|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.102.136.231.41.146|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.102.136.231.41.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.102.136.231.41.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.102.136.231.41.149|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.102.136.231.41.150|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.102.136.231.41.151|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.102.136.231.41.152|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.102.136.231.41.153|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.102.136.231.41.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.102.136.231.41.155|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.102.136.231.41.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.102.136.231.41.157|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.102.136.231.41.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.5|4x|005056B21A0D -1.3.6.1.2.1.4.22.1.2.103.136.231.45.6|4x|005056B22C46 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.7|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.8|4x|005056B25F45 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.9|4x|005056B23CBF -1.3.6.1.2.1.4.22.1.2.103.136.231.45.10|4x|005056B2797C -1.3.6.1.2.1.4.22.1.2.103.136.231.45.11|4x|005056B205EB -1.3.6.1.2.1.4.22.1.2.103.136.231.45.12|4x|005056B24BDC -1.3.6.1.2.1.4.22.1.2.103.136.231.45.13|4x|005056B25DF2 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.14|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.15|4x|005056B2723B -1.3.6.1.2.1.4.22.1.2.103.136.231.45.16|4x|005056B25F46 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.17|4x|005056B243F4 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.18|4x|005056B2315F -1.3.6.1.2.1.4.22.1.2.103.136.231.45.19|4x|005056B24545 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.20|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.21|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.22|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.23|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.24|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.25|4x|005056B2504C -1.3.6.1.2.1.4.22.1.2.103.136.231.45.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.28|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.29|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.30|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.31|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.32|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.33|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.34|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.35|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.36|4x|005056B2001F -1.3.6.1.2.1.4.22.1.2.103.136.231.45.37|4x|005056B20CEC -1.3.6.1.2.1.4.22.1.2.103.136.231.45.38|4x|005056B2B077 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.39|4x|005056B2255A -1.3.6.1.2.1.4.22.1.2.103.136.231.45.40|4x|005056B20AF9 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.41|4x|005056B24263 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.42|4x|005056B21110 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.43|4x|005056B27B2A -1.3.6.1.2.1.4.22.1.2.103.136.231.45.44|4x|005056B24C22 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.45|4x|005056B22FB3 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.46|4x|005056B22EF2 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.47|4x|005056B23AE8 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.48|4x|005056B27A70 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.49|4x|005056B22371 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.50|4x|005056B2C89E -1.3.6.1.2.1.4.22.1.2.103.136.231.45.51|4x|005056B24F19 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.52|4x|005056B21D9E -1.3.6.1.2.1.4.22.1.2.103.136.231.45.53|4x|005056B23D54 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.54|4x|005056B221C3 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.55|4x|005056B21272 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.56|4x|005056B234BE -1.3.6.1.2.1.4.22.1.2.103.136.231.45.57|4x|005056B23134 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.58|4x|005056B26523 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.59|4x|005056B247FD -1.3.6.1.2.1.4.22.1.2.103.136.231.45.60|4x|005056B2A0B9 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.61|4x|005056B235F0 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.62|4x|005056B27039 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.63|4x|005056B259BC -1.3.6.1.2.1.4.22.1.2.103.136.231.45.64|4x|005056B25E7B -1.3.6.1.2.1.4.22.1.2.103.136.231.45.65|4x|005056B2A9A0 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.66|4x|005056B2A032 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.67|4x|005056B225F7 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.68|4x|005056B25AF6 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.69|4x|005056B2D56A -1.3.6.1.2.1.4.22.1.2.103.136.231.45.70|4x|005056B2F679 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.72|4x|005056B2F04C -1.3.6.1.2.1.4.22.1.2.103.136.231.45.73|4x|005056B2490A -1.3.6.1.2.1.4.22.1.2.103.136.231.45.74|4x|005056B2938B -1.3.6.1.2.1.4.22.1.2.103.136.231.45.75|4x|005056B24565 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.76|4x|005056B20089 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.77|4x|005056B2CE82 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.78|4x|005056B274ED -1.3.6.1.2.1.4.22.1.2.103.136.231.45.79|4x|005056B29BB4 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.80|4x|005056B20A08 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.81|4x|005056B21E92 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.82|4x|005056B2E255 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.83|4x|005056B28616 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.84|4x|005056B22631 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.85|4x|005056B2A97B -1.3.6.1.2.1.4.22.1.2.103.136.231.45.86|4x|005056B2B8B3 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.87|4x|005056B29BAD -1.3.6.1.2.1.4.22.1.2.103.136.231.45.88|4x|005056B2F7CC -1.3.6.1.2.1.4.22.1.2.103.136.231.45.89|4x|005056B22BFF -1.3.6.1.2.1.4.22.1.2.103.136.231.45.90|4x|005056B206B7 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.91|4x|005056B27D6C -1.3.6.1.2.1.4.22.1.2.103.136.231.45.92|4x|005056B28AE9 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.93|4x|005056B28EFF -1.3.6.1.2.1.4.22.1.2.103.136.231.45.94|4x|005056B26ACE -1.3.6.1.2.1.4.22.1.2.103.136.231.45.95|4x|005056B2AA74 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.96|4x|005056B273D6 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.97|4x|005056B205C0 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.98|4x|005056B23C79 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.99|4x|005056B2AA8E -1.3.6.1.2.1.4.22.1.2.103.136.231.45.100|4x|005056B27C69 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.101|4x|005056B2460A -1.3.6.1.2.1.4.22.1.2.103.136.231.45.102|4x|005056B2A13E -1.3.6.1.2.1.4.22.1.2.103.136.231.45.103|4x|005056B283CD -1.3.6.1.2.1.4.22.1.2.103.136.231.45.104|4x|005056B2CEC0 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.105|4x|005056B2F088 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.106|4x|005056B25DCF -1.3.6.1.2.1.4.22.1.2.103.136.231.45.107|4x|005056B28326 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.108|4x|005056B2049D -1.3.6.1.2.1.4.22.1.2.103.136.231.45.109|4x|005056B20FE6 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.110|4x|005056B23728 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.111|4x|005056B22F0B -1.3.6.1.2.1.4.22.1.2.103.136.231.45.112|4x|005056B219EE -1.3.6.1.2.1.4.22.1.2.103.136.231.45.113|4x|005056B24C0C -1.3.6.1.2.1.4.22.1.2.103.136.231.45.114|4x|005056B23EB7 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.115|4x|005056B2FE1F -1.3.6.1.2.1.4.22.1.2.103.136.231.45.116|4x|005056B287B7 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.117|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.121|4x|005056B2103F -1.3.6.1.2.1.4.22.1.2.103.136.231.45.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.123|4x|005056B2C9B7 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.125|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.103.136.231.45.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.103.169.254.112.63|4x|005056B22146 -1.3.6.1.2.1.4.22.1.2.103.169.254.189.28|4x|005056B23EB5 -1.3.6.1.2.1.4.22.1.2.103.255.255.255.255|4x|FFFFFFFFFFFF -1.3.6.1.2.1.4.22.1.2.104.136.231.180.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.5|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.7|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.9|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.10|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.11|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.12|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.13|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.14|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.15|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.18|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.19|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.20|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.21|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.22|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.23|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.24|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.28|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.29|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.30|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.31|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.32|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.33|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.34|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.35|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.36|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.37|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.38|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.42|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.43|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.44|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.45|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.46|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.47|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.48|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.49|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.50|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.51|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.52|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.53|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.54|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.56|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.57|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.58|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.59|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.60|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.61|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.62|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.63|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.64|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.65|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.67|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.68|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.70|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.73|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.74|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.76|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.77|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.78|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.79|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.81|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.83|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.87|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.88|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.89|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.92|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.93|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.94|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.95|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.96|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.97|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.99|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.104|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.108|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.114|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.117|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.123|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.125|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.127|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.128|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.129|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.130|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.132|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.133|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.134|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.135|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.136|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.137|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.138|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.139|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.140|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.141|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.142|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.145|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.146|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.149|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.150|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.151|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.152|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.153|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.155|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.159|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.160|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.161|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.162|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.163|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.164|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.165|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.166|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.168|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.169|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.170|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.171|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.172|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.173|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.175|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.176|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.177|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.178|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.179|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.180|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.181|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.182|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.184|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.185|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.186|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.187|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.188|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.189|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.190|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.191|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.192|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.193|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.194|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.196|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.197|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.198|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.199|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.200|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.201|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.202|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.203|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.204|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.205|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.206|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.207|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.208|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.209|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.210|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.212|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.213|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.214|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.215|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.216|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.217|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.218|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.219|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.221|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.222|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.223|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.224|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.225|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.226|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.227|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.228|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.229|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.230|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.231|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.232|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.233|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.234|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.235|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.236|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.237|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.238|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.239|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.242|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.243|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.244|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.245|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.246|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.248|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.250|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.180.255|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.0|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.5|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.7|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.9|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.10|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.11|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.12|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.13|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.14|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.15|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.16|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.17|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.18|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.19|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.20|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.21|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.22|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.24|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.25|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.28|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.29|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.30|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.31|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.32|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.33|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.34|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.35|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.36|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.37|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.39|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.40|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.41|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.42|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.43|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.44|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.45|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.46|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.47|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.48|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.50|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.51|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.52|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.53|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.54|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.56|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.57|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.58|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.59|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.60|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.61|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.62|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.63|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.64|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.65|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.66|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.67|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.68|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.70|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.72|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.73|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.74|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.77|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.78|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.79|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.80|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.81|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.83|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.87|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.88|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.89|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.92|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.93|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.95|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.96|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.97|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.99|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.104|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.108|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.114|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.117|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.121|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.125|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.127|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.128|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.129|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.130|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.132|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.133|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.134|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.135|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.136|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.137|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.138|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.139|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.140|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.141|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.142|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.143|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.145|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.146|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.149|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.150|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.152|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.153|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.157|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.159|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.160|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.161|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.163|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.164|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.165|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.167|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.168|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.169|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.170|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.171|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.173|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.176|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.177|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.178|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.179|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.180|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.181|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.182|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.184|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.185|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.186|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.188|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.189|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.190|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.191|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.192|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.193|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.194|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.196|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.197|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.198|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.199|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.200|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.201|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.202|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.203|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.204|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.205|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.206|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.207|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.208|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.209|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.210|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.211|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.212|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.213|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.214|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.215|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.216|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.217|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.219|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.222|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.223|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.224|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.225|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.226|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.227|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.229|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.230|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.231|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.232|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.233|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.234|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.237|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.238|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.239|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.242|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.244|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.245|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.246|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.248|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.250|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.252|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.104.136.231.181.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.5|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.7|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.9|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.10|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.12|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.13|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.14|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.15|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.16|4x|D4B110B581F0 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.17|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.18|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.19|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.20|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.21|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.22|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.23|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.24|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.25|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.26|4x|E03676D80909 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.28|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.29|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.30|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.31|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.32|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.33|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.34|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.35|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.37|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.38|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.39|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.40|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.41|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.42|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.44|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.45|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.46|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.47|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.48|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.49|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.50|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.51|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.52|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.53|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.54|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.56|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.57|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.58|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.59|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.60|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.61|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.62|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.63|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.64|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.65|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.66|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.67|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.68|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.70|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.72|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.73|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.74|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.76|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.77|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.78|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.80|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.87|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.88|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.89|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.92|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.93|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.94|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.95|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.96|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.97|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.99|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.104|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.108|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.114|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.117|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.121|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.123|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.125|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.127|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.129|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.130|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.132|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.133|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.134|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.135|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.136|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.137|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.138|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.139|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.140|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.141|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.142|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.143|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.145|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.146|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.149|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.150|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.151|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.152|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.153|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.155|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.157|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.160|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.161|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.162|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.163|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.165|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.168|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.169|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.170|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.171|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.172|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.173|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.175|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.176|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.177|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.178|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.179|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.180|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.182|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.184|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.185|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.186|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.187|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.188|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.189|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.190|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.191|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.192|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.193|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.194|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.196|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.197|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.198|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.199|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.200|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.201|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.202|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.204|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.205|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.206|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.207|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.208|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.209|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.210|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.211|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.212|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.214|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.215|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.216|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.217|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.218|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.219|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.221|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.222|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.223|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.224|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.225|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.226|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.227|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.228|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.229|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.230|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.231|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.232|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.233|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.234|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.235|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.236|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.237|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.238|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.242|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.243|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.244|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.245|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.246|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.248|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.252|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.106.136.231.19.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.108.136.231.3.67|4x|C042D0F7E330 -1.3.6.1.2.1.4.22.1.2.108.224.0.0.5|4x|01005E000005 -1.3.6.1.2.1.4.22.1.2.108.224.0.0.9|4x|01005E000009 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.5|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.7|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.9|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.10|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.11|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.12|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.13|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.14|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.15|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.16|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.18|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.19|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.20|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.21|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.22|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.23|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.24|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.25|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.28|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.29|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.30|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.31|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.32|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.33|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.34|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.35|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.36|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.37|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.38|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.39|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.40|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.41|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.42|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.43|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.44|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.45|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.46|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.48|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.49|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.50|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.51|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.52|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.53|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.54|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.57|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.58|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.59|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.60|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.61|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.62|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.63|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.64|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.65|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.66|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.67|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.68|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.70|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.72|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.74|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.76|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.77|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.78|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.79|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.80|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.81|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.83|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.87|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.88|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.89|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.92|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.93|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.94|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.95|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.96|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.97|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.99|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.108|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.114|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.117|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.123|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.125|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.127|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.128|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.129|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.130|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.132|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.133|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.134|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.135|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.136|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.137|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.138|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.139|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.140|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.141|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.142|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.143|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.145|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.146|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.149|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.150|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.151|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.152|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.153|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.155|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.157|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.159|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.160|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.161|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.162|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.163|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.164|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.165|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.166|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.167|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.168|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.169|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.170|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.172|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.173|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.175|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.176|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.177|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.178|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.179|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.180|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.181|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.182|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.184|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.185|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.186|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.187|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.188|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.189|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.190|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.191|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.192|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.193|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.194|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.196|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.197|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.198|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.199|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.200|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.201|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.202|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.203|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.204|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.205|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.206|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.207|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.208|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.209|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.210|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.212|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.213|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.214|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.215|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.216|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.217|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.218|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.219|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.221|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.222|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.223|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.224|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.225|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.226|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.227|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.228|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.230|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.231|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.232|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.234|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.235|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.236|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.237|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.238|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.242|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.243|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.244|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.245|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.246|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.248|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.250|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.252|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.109.136.231.72.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.5|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.7|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.9|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.10|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.11|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.12|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.13|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.14|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.15|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.16|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.17|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.18|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.19|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.20|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.21|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.23|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.24|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.28|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.29|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.30|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.31|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.32|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.33|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.34|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.35|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.36|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.37|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.38|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.39|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.40|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.41|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.42|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.43|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.44|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.45|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.46|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.47|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.48|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.50|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.51|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.52|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.53|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.54|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.56|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.57|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.58|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.59|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.60|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.61|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.63|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.64|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.65|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.66|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.67|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.68|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.70|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.72|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.73|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.74|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.76|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.77|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.80|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.83|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.87|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.88|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.89|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.92|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.93|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.94|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.95|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.96|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.97|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.99|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.104|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.108|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.114|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.117|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.121|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.123|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.125|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.127|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.128|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.129|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.130|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.132|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.133|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.134|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.135|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.136|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.137|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.138|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.139|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.140|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.141|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.142|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.143|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.145|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.146|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.149|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.150|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.151|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.153|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.155|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.157|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.159|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.160|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.161|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.162|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.163|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.165|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.166|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.167|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.169|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.170|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.173|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.175|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.176|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.177|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.178|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.179|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.180|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.181|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.182|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.184|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.185|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.186|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.187|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.189|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.190|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.191|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.192|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.193|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.194|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.196|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.197|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.198|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.199|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.200|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.201|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.202|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.203|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.204|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.205|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.206|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.207|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.208|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.209|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.210|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.212|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.213|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.216|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.217|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.218|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.219|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.221|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.222|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.223|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.224|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.225|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.226|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.227|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.228|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.229|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.230|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.231|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.232|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.233|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.234|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.235|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.236|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.238|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.239|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.242|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.244|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.245|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.246|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.248|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.250|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.252|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.110.136.231.73.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.5|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.7|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.10|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.11|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.12|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.13|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.14|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.15|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.16|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.17|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.18|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.19|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.20|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.22|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.23|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.24|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.25|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.28|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.29|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.30|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.31|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.32|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.33|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.34|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.35|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.36|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.37|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.38|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.39|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.40|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.41|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.42|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.43|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.44|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.45|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.46|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.47|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.48|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.49|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.50|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.51|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.52|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.53|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.54|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.56|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.58|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.59|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.60|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.61|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.62|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.63|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.64|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.65|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.66|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.67|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.68|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.70|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.72|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.73|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.77|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.78|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.79|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.80|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.87|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.88|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.89|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.92|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.93|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.94|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.95|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.96|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.97|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.99|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.104|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.108|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.114|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.117|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.123|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.125|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.127|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.129|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.130|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.133|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.134|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.135|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.136|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.137|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.138|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.139|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.140|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.141|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.142|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.146|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.149|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.150|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.151|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.152|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.153|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.155|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.157|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.159|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.160|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.161|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.162|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.163|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.164|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.165|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.166|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.167|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.168|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.169|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.170|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.171|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.172|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.173|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.175|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.176|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.177|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.178|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.179|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.180|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.181|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.182|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.184|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.185|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.186|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.187|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.188|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.189|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.190|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.191|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.192|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.193|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.194|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.196|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.197|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.198|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.199|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.200|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.201|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.202|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.203|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.204|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.205|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.206|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.207|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.208|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.209|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.210|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.211|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.212|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.213|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.214|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.215|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.216|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.217|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.218|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.219|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.221|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.222|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.223|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.225|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.226|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.228|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.229|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.230|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.231|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.232|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.233|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.234|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.236|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.237|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.238|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.239|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.241|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.242|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.243|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.244|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.245|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.246|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.248|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.250|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.252|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.111.136.231.74.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.5|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.7|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.9|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.10|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.11|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.12|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.13|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.14|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.15|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.16|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.17|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.18|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.19|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.20|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.21|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.22|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.23|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.24|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.25|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.28|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.29|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.30|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.31|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.32|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.33|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.34|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.35|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.36|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.37|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.38|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.39|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.40|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.41|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.42|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.43|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.44|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.45|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.47|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.48|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.49|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.50|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.51|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.52|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.53|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.56|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.57|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.58|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.59|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.60|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.61|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.62|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.63|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.64|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.65|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.66|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.67|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.68|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.72|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.73|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.74|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.76|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.77|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.78|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.79|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.80|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.81|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.83|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.88|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.89|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.92|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.93|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.94|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.96|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.97|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.108|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.114|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.121|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.123|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.125|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.127|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.128|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.129|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.130|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.132|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.133|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.134|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.135|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.136|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.137|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.138|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.139|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.140|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.141|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.142|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.143|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.145|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.146|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.149|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.150|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.151|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.152|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.153|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.157|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.159|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.160|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.161|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.162|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.163|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.164|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.165|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.166|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.167|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.168|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.169|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.170|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.171|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.172|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.173|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.175|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.176|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.177|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.178|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.179|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.180|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.181|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.182|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.184|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.185|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.186|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.187|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.188|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.189|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.190|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.192|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.194|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.196|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.197|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.198|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.199|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.200|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.201|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.202|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.203|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.204|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.205|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.206|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.207|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.208|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.211|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.212|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.213|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.214|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.215|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.216|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.217|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.218|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.219|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.221|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.222|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.224|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.225|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.226|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.228|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.229|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.230|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.231|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.232|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.233|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.234|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.235|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.236|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.237|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.238|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.239|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.243|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.244|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.245|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.246|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.247|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.248|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.250|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.252|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.112.136.231.75.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.113.10.0.0.21|4x|00090F090002 -1.3.6.1.2.1.4.22.1.2.115.172.23.0.5|4x|005056B25FE8 -1.3.6.1.2.1.4.22.1.2.116.10.8.0.6|4x|005056B25836 -1.3.6.1.2.1.4.22.1.2.116.10.8.0.7|4x|005056B291B1 -1.3.6.1.2.1.4.22.1.2.116.10.8.0.10|4x|005056B24351 -1.3.6.1.2.1.4.22.1.2.116.10.8.0.11|4x|005056B23160 -1.3.6.1.2.1.4.22.1.2.116.10.8.0.12|4x|509A4C94943F -1.3.6.1.2.1.4.22.1.2.118.136.231.3.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.118.136.231.3.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.118.136.231.3.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.118.136.231.3.5|4x|005056B22350 -1.3.6.1.2.1.4.22.1.2.118.136.231.3.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.118.136.231.3.7|4x|005056B255BE -1.3.6.1.2.1.4.22.1.2.118.136.231.3.8|4x|005056AC1B64 -1.3.6.1.2.1.4.22.1.2.118.136.231.3.9|4x|005056AC3392 -1.3.6.1.2.1.4.22.1.2.118.136.231.3.10|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.118.136.231.3.11|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.118.136.231.3.12|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.118.136.231.3.13|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.118.136.231.3.14|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.118.136.231.3.15|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.118.136.231.3.16|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.118.136.231.3.17|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.118.136.231.3.18|4x|005056AC2DBA -1.3.6.1.2.1.4.22.1.2.118.136.231.3.19|4x|005056ACBBDA -1.3.6.1.2.1.4.22.1.2.118.136.231.3.20|4x|005056ACFCB9 -1.3.6.1.2.1.4.22.1.2.118.136.231.3.21|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.118.136.231.3.22|4x|005056BC92D7 -1.3.6.1.2.1.4.22.1.2.118.136.231.3.23|4x|005056AC1CDE -1.3.6.1.2.1.4.22.1.2.118.136.231.3.24|4x|005056ACD799 -1.3.6.1.2.1.4.22.1.2.118.136.231.3.25|4x|005056ACFEDE -1.3.6.1.2.1.4.22.1.2.118.136.231.3.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.118.136.231.3.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.118.136.231.3.28|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.118.136.231.3.29|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.118.136.231.3.30|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.119.136.231.16.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.119.136.231.16.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.119.136.231.16.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.119.136.231.16.5|4x|00505691D2B1 -1.3.6.1.2.1.4.22.1.2.119.136.231.16.6|4x|005056915838 -1.3.6.1.2.1.4.22.1.2.119.136.231.16.7|4x|00505691461B -1.3.6.1.2.1.4.22.1.2.119.136.231.16.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.119.136.231.16.9|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.119.136.231.16.10|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.119.136.231.16.11|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.119.136.231.16.12|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.119.136.231.16.13|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.119.136.231.16.14|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.119.136.231.16.15|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.119.136.231.16.16|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.119.136.231.16.17|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.119.136.231.16.18|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.119.136.231.16.19|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.119.136.231.16.20|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.119.136.231.16.21|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.119.136.231.16.22|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.119.136.231.16.23|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.119.136.231.16.24|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.119.136.231.16.25|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.119.136.231.16.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.119.136.231.16.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.119.136.231.16.29|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.119.136.231.16.30|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.120.136.231.2.114|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.120.136.231.2.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.120.136.231.2.116|4x|005056B22F4F -1.3.6.1.2.1.4.22.1.2.120.136.231.2.117|4x|005056B27E2B -1.3.6.1.2.1.4.22.1.2.120.136.231.2.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.120.136.231.2.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.120.136.231.2.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.120.136.231.2.121|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.120.136.231.2.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.120.136.231.2.123|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.120.136.231.2.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.120.136.231.2.125|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.120.136.231.2.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.122.10.16.0.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.122.224.0.0.5|4x|01005E000005 -1.3.6.1.2.1.4.22.1.2.124.10.16.0.27|4x|025B0E9A572D -1.3.6.1.2.1.4.22.1.2.124.224.0.0.5|4x|01005E000005 -1.3.6.1.2.1.4.22.1.2.125.136.231.3.69|4x|C042D0F7E6F0 -1.3.6.1.2.1.4.22.1.2.125.224.0.0.5|4x|01005E000005 -1.3.6.1.2.1.4.22.1.2.125.224.0.0.9|4x|01005E000009 -1.3.6.1.2.1.4.22.1.2.126.136.231.20.4|4x|005056AC5E85 -1.3.6.1.2.1.4.22.1.2.126.136.231.20.5|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.126.136.231.20.6|4x|005056AC3EB7 -1.3.6.1.2.1.4.22.1.2.126.136.231.20.7|4x|005056AC5686 -1.3.6.1.2.1.4.22.1.2.126.136.231.20.8|4x|005056AC363C -1.3.6.1.2.1.4.22.1.2.126.136.231.20.9|4x|005056AC1CE1 -1.3.6.1.2.1.4.22.1.2.126.136.231.20.10|4x|005056ACD657 -1.3.6.1.2.1.4.22.1.2.126.136.231.20.11|4x|005056ACAA78 -1.3.6.1.2.1.4.22.1.2.126.136.231.20.12|4x|005056ACD38C -1.3.6.1.2.1.4.22.1.2.126.136.231.20.13|4x|005056AC1E79 -1.3.6.1.2.1.4.22.1.2.126.136.231.20.14|4x|005056AC0F10 -1.3.6.1.2.1.4.22.1.2.126.136.231.20.15|4x|005056ACDFD8 -1.3.6.1.2.1.4.22.1.2.126.136.231.20.16|4x|005056AC258B -1.3.6.1.2.1.4.22.1.2.126.136.231.20.17|4x|005056AC5391 -1.3.6.1.2.1.4.22.1.2.126.136.231.20.18|4x|005056AC9FFB -1.3.6.1.2.1.4.22.1.2.126.136.231.20.19|4x|005056ACF246 -1.3.6.1.2.1.4.22.1.2.126.136.231.20.20|4x|005056ACE096 -1.3.6.1.2.1.4.22.1.2.126.136.231.20.25|4x|005056AC7456 -1.3.6.1.2.1.4.22.1.2.126.136.231.20.28|4x|005056AC5411 -1.3.6.1.2.1.4.22.1.2.126.136.231.20.29|4x|005056ACFEBA -1.3.6.1.2.1.4.22.1.2.126.136.231.21.1|4x|005056ACFDF0 -1.3.6.1.2.1.4.22.1.2.126.136.231.21.2|4x|005056AC73BD -1.3.6.1.2.1.4.22.1.2.126.136.231.21.3|4x|005056AC00E9 -1.3.6.1.2.1.4.22.1.2.126.136.231.21.4|4x|005056AC3590 -1.3.6.1.2.1.4.22.1.2.126.136.231.21.5|4x|005056AC5C2D -1.3.6.1.2.1.4.22.1.2.126.136.231.21.6|4x|005056AC6D79 -1.3.6.1.2.1.4.22.1.2.126.136.231.21.7|4x|005056ACE48B -1.3.6.1.2.1.4.22.1.2.126.136.231.21.8|4x|005056ACD07A -1.3.6.1.2.1.4.22.1.2.126.136.231.21.9|4x|005056ACBDC4 -1.3.6.1.2.1.4.22.1.2.126.136.231.21.10|4x|005056ACF87C -1.3.6.1.2.1.4.22.1.2.126.136.231.21.11|4x|005056AC9896 -1.3.6.1.2.1.4.22.1.2.126.136.231.21.12|4x|005056AC1237 -1.3.6.1.2.1.4.22.1.2.126.136.231.21.13|4x|005056AC8DF6 -1.3.6.1.2.1.4.22.1.2.126.136.231.21.14|4x|005056ACA007 -1.3.6.1.2.1.4.22.1.2.126.136.231.21.15|4x|005056ACA235 -1.3.6.1.2.1.4.22.1.2.126.136.231.21.18|4x|005056AC778B -1.3.6.1.2.1.4.22.1.2.126.136.231.21.19|4x|005056AC8152 -1.3.6.1.2.1.4.22.1.2.126.136.231.21.20|4x|005056ACE75C -1.3.6.1.2.1.4.22.1.2.126.136.231.21.21|4x|005056AC3BCE -1.3.6.1.2.1.4.22.1.2.126.136.231.21.22|4x|005056AC3117 -1.3.6.1.2.1.4.22.1.2.126.136.231.21.23|4x|005056AC4BC0 -1.3.6.1.2.1.4.22.1.2.126.136.231.21.24|4x|005056ACA987 -1.3.6.1.2.1.4.22.1.2.126.136.231.21.25|4x|005056ACB3E8 -1.3.6.1.2.1.4.22.1.2.126.224.0.0.5|4x|01005E000005 -1.3.6.1.2.1.4.22.1.2.127.10.0.1.2|4x|74A02F4808A0 -1.3.6.1.2.1.4.22.1.2.128.10.0.1.6|4x|74A02F5825A0 -1.3.6.1.2.1.4.22.1.2.129.136.231.3.71|4x|C042D0F7E510 -1.3.6.1.2.1.4.22.1.2.129.224.0.0.5|4x|01005E000005 -1.3.6.1.2.1.4.22.1.2.129.224.0.0.9|4x|01005E000009 -1.3.6.1.2.1.4.22.1.2.130.136.231.3.73|4x|C042D0F81210 -1.3.6.1.2.1.4.22.1.2.130.224.0.0.5|4x|01005E000005 -1.3.6.1.2.1.4.22.1.2.130.224.0.0.9|4x|01005E000009 -1.3.6.1.2.1.4.22.1.2.131.224.0.0.5|4x|01005E000005 -1.3.6.1.2.1.4.22.1.2.131.224.0.0.9|4x|01005E000009 -1.3.6.1.2.1.4.22.1.2.132.136.231.3.77|4x|C042D0F7F8C0 -1.3.6.1.2.1.4.22.1.2.132.224.0.0.5|4x|01005E000005 -1.3.6.1.2.1.4.22.1.2.132.224.0.0.9|4x|01005E000009 -1.3.6.1.2.1.4.22.1.2.133.136.231.3.79|4x|C042D0F80130 -1.3.6.1.2.1.4.22.1.2.133.224.0.0.5|4x|01005E000005 -1.3.6.1.2.1.4.22.1.2.133.224.0.0.9|4x|01005E000009 -1.3.6.1.2.1.4.22.1.2.134.136.231.3.81|4x|C042D0F83380 -1.3.6.1.2.1.4.22.1.2.134.224.0.0.5|4x|01005E000005 -1.3.6.1.2.1.4.22.1.2.134.224.0.0.9|4x|01005E000009 -1.3.6.1.2.1.4.22.1.2.135.136.231.3.83|4x|C042D0F3CD40 -1.3.6.1.2.1.4.22.1.2.135.224.0.0.5|4x|01005E000005 -1.3.6.1.2.1.4.22.1.2.135.224.0.0.9|4x|01005E000009 -1.3.6.1.2.1.4.22.1.2.136.172.23.1.5|4x|005056B2E58C -1.3.6.1.2.1.4.22.1.2.136.172.23.1.6|4x|005056B2B4F4 -1.3.6.1.2.1.4.22.1.2.136.172.23.1.7|4x|005056B23ED8 -1.3.6.1.2.1.4.22.1.2.136.172.23.1.8|4x|005056B289AD -1.3.6.1.2.1.4.22.1.2.136.172.23.1.9|4x|005056B247F2 -1.3.6.1.2.1.4.22.1.2.136.172.23.1.20|4x|005056B2AD52 -1.3.6.1.2.1.4.22.1.2.136.172.23.1.30|4x|005056B23081 -1.3.6.1.2.1.4.22.1.2.137.172.23.2.5|4x|005056B26FD6 -1.3.6.1.2.1.4.22.1.2.137.172.23.2.6|4x|005056B23E20 -1.3.6.1.2.1.4.22.1.2.138.10.16.0.26|4x|025B0E9A572C -1.3.6.1.2.1.4.22.1.2.138.224.0.0.5|4x|01005E000005 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.11|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.12|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.13|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.15|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.16|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.17|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.18|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.19|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.20|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.21|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.22|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.23|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.24|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.25|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.28|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.29|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.30|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.31|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.33|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.34|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.35|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.36|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.37|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.38|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.39|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.40|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.41|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.43|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.44|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.45|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.46|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.47|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.48|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.49|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.50|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.51|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.52|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.53|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.54|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.56|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.57|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.58|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.60|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.61|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.64|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.65|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.66|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.67|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.68|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.70|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.72|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.73|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.74|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.76|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.77|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.78|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.79|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.80|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.81|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.87|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.88|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.89|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.92|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.93|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.94|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.95|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.96|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.97|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.99|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.104|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.108|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.114|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.117|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.121|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.123|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.145.136.231.1.125|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.147.224.0.0.5|4x|01005E000005 -1.3.6.1.2.1.4.22.1.2.147.224.0.0.9|4x|01005E000009 -1.3.6.1.2.1.4.22.1.2.148.224.0.0.5|4x|01005E000005 -1.3.6.1.2.1.4.22.1.2.149.136.231.3.34|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.149.136.231.3.35|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.149.136.231.3.36|4x|005056B2171B -1.3.6.1.2.1.4.22.1.2.149.136.231.3.37|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.149.136.231.3.38|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.150.136.231.3.42|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.150.136.231.3.43|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.150.136.231.3.44|4x|AC1F6BAB960D -1.3.6.1.2.1.4.22.1.2.150.136.231.3.45|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.150.136.231.3.46|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.151.136.231.2.170|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.151.136.231.2.171|4x|00142D80067E -1.3.6.1.2.1.4.22.1.2.151.136.231.2.172|4x|00142D800614 -1.3.6.1.2.1.4.22.1.2.151.136.231.2.173|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.151.136.231.2.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.2|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.3|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.4|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.5|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.6|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.7|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.8|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.9|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.10|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.11|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.12|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.13|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.14|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.15|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.16|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.17|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.19|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.20|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.21|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.22|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.23|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.24|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.25|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.26|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.27|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.29|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.30|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.31|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.33|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.34|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.35|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.36|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.40|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.41|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.42|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.43|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.44|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.45|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.46|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.47|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.48|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.49|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.50|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.52|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.53|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.54|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.55|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.56|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.57|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.58|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.60|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.61|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.62|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.63|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.64|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.65|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.66|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.67|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.68|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.69|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.70|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.71|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.72|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.73|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.74|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.75|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.76|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.77|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.78|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.79|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.80|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.81|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.82|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.83|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.84|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.85|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.86|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.87|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.88|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.89|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.90|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.91|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.92|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.93|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.94|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.95|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.96|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.97|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.98|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.99|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.100|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.101|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.102|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.103|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.104|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.105|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.106|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.107|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.108|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.109|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.110|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.111|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.112|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.113|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.114|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.115|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.116|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.117|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.118|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.119|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.120|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.121|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.122|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.123|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.124|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.125|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.126|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.127|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.128|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.129|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.130|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.131|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.132|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.134|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.135|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.136|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.137|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.139|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.140|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.141|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.142|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.143|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.144|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.145|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.146|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.147|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.148|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.149|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.150|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.152|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.153|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.154|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.155|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.156|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.157|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.158|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.159|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.160|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.161|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.162|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.163|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.164|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.165|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.166|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.167|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.168|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.169|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.170|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.171|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.172|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.173|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.174|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.175|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.176|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.177|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.178|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.179|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.180|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.181|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.182|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.183|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.184|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.185|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.186|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.187|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.188|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.189|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.190|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.191|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.192|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.193|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.194|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.196|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.197|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.198|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.199|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.200|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.201|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.202|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.203|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.204|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.205|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.207|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.208|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.209|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.210|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.211|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.212|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.213|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.215|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.216|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.217|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.218|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.219|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.220|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.221|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.222|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.223|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.224|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.225|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.226|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.227|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.228|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.229|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.231|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.232|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.233|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.234|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.235|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.236|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.238|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.239|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.240|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.242|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.243|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.244|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.245|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.246|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.248|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.249|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.250|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.251|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.252|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.253|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.153.136.231.4.254|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.155.136.231.2.140|4x|18B169CD15BC -1.3.6.1.2.1.4.22.1.2.155.136.231.2.141|4x|18B1697FEE2C -1.3.6.1.2.1.4.22.1.2.156.136.231.16.41|4x|005056BCD45F -1.3.6.1.2.1.4.22.1.2.156.136.231.16.42|4x|005056BC3221 -1.3.6.1.2.1.4.22.1.2.156.136.231.16.44|4x|005056BC6339 -1.3.6.1.2.1.4.22.1.2.156.136.231.16.51|4x|005056BC26FD -1.3.6.1.2.1.4.22.1.2.156.136.231.16.56|4x|005056BC959B -1.3.6.1.2.1.4.22.1.2.156.224.0.0.5|4x|01005E000005 -1.3.6.1.2.1.4.22.1.2.157.136.231.2.179|4x|C003809F3D94 -1.3.6.1.2.1.4.22.1.2.157.136.231.2.181|4x|26644A0D1731 -1.3.6.1.2.1.4.22.1.2.157.136.231.2.182|4|FdB s5 -1.3.6.1.2.1.4.22.1.2.157.136.231.2.183|4|Fd- s5 -1.3.6.1.2.1.4.22.1.2.157.136.231.2.184|4x|3A6953011A23 -1.3.6.1.2.1.4.22.1.2.157.136.231.2.186|4x|566938017722 -1.3.6.1.2.1.4.22.1.2.157.136.231.2.187|4x|2A64460D1831 -1.3.6.1.2.1.4.22.1.2.157.136.231.2.188|4|BdA t5 -1.3.6.1.2.1.4.22.1.2.158.172.24.0.4|4x|000C29C01130 -1.3.6.1.2.1.4.22.1.2.158.172.24.0.5|4x|000C2913E5F2 -1.3.6.1.2.1.4.22.1.2.158.172.24.0.6|4x|000C299A8B91 -1.3.6.1.2.1.4.22.1.2.158.172.24.0.7|4x|000C2986BD30 -1.3.6.1.2.1.4.22.1.2.158.172.24.0.8|4x|00505680D737 -1.3.6.1.2.1.4.22.1.2.158.172.24.0.13|4x|005056805A18 -1.3.6.1.2.1.4.22.1.2.158.172.24.0.14|4x|00505680ED2A -1.3.6.1.2.1.4.22.1.2.158.172.24.0.15|4x|00505680E351 -1.3.6.1.2.1.4.22.1.2.158.172.24.0.16|4x|AC1F6BAB8F32 -1.3.6.1.2.1.4.22.1.2.158.172.24.0.17|4x|AC1F6B8B9DD2 -1.3.6.1.2.1.4.22.1.2.158.172.24.0.18|4x|AC1F6B8B9D8E -1.3.6.1.2.1.4.22.1.2.158.172.24.0.19|4x|AC1F6BAB8B62 -1.3.6.1.2.1.4.22.1.2.158.172.24.0.20|4x|AC1F6BAC2A6E -1.3.6.1.2.1.4.22.1.2.159.224.0.0.5|4x|01005E000005 -1.3.6.1.2.1.4.22.1.2.160.172.24.0.144|4x|AC1F6B586444 -1.3.6.1.2.1.4.22.1.2.160.172.24.0.150|4x|AC1F6B58646C -1.3.6.1.2.1.4.22.1.2.160.172.24.0.151|4x|AC1F6B586460 -1.3.6.1.2.1.4.22.1.2.160.172.24.0.152|4x|AC1F6B586468 -1.3.6.1.2.1.4.22.1.2.160.172.24.0.153|4x|AC1F6B58646A -1.3.6.1.2.1.4.22.1.2.161.172.24.5.5|4x|005056B2E38F -1.3.6.1.2.1.4.22.1.2.162.136.231.2.194|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.162.136.231.2.195|4x|000000000000 -1.3.6.1.2.1.4.22.1.2.162.136.231.2.196|4x|005056B254C4 -1.3.6.1.2.1.4.22.1.2.162.136.231.2.197|4x|005056B2B6A9 -1.3.6.1.2.1.4.22.1.2.162.136.231.2.198|4x|000000000000 -1.3.6.1.2.1.5.1.0|65|68700598 -1.3.6.1.2.1.5.2.0|65|4801409 -1.3.6.1.2.1.5.3.0|65|17790660 -1.3.6.1.2.1.5.4.0|65|65505 +1.3.6.1.2.1.2.2.1.20.163|65|0 +1.3.6.1.2.1.2.2.1.20.164|65|0 +1.3.6.1.2.1.2.2.1.20.165|65|0 +1.3.6.1.2.1.2.2.1.20.166|65|0 +1.3.6.1.2.1.2.2.1.20.167|65|0 +1.3.6.1.2.1.2.2.1.20.168|65|0 +1.3.6.1.2.1.2.2.1.20.169|65|0 +1.3.6.1.2.1.2.2.1.20.170|65|0 +1.3.6.1.2.1.2.2.1.20.172|65|0 +1.3.6.1.2.1.2.2.1.20.173|65|0 +1.3.6.1.2.1.2.2.1.20.174|65|0 +1.3.6.1.2.1.2.2.1.20.175|65|0 +1.3.6.1.2.1.2.2.1.20.176|65|0 +1.3.6.1.2.1.2.2.1.20.177|65|0 +1.3.6.1.2.1.2.2.1.20.178|65|0 +1.3.6.1.2.1.2.2.1.20.179|65|0 +1.3.6.1.2.1.2.2.1.20.180|65|0 +1.3.6.1.2.1.2.2.1.20.181|65|0 +1.3.6.1.2.1.2.2.1.20.182|65|0 +1.3.6.1.2.1.2.2.1.20.183|65|0 +1.3.6.1.2.1.2.2.1.20.184|65|0 +1.3.6.1.2.1.2.2.1.20.185|65|0 +1.3.6.1.2.1.2.2.1.20.186|65|0 +1.3.6.1.2.1.2.2.1.20.187|65|0 +1.3.6.1.2.1.2.2.1.20.188|65|0 +1.3.6.1.2.1.2.2.1.20.189|65|0 +1.3.6.1.2.1.4.3.0|65|263116585 +1.3.6.1.2.1.4.4.0|65|0 +1.3.6.1.2.1.4.5.0|65|0 +1.3.6.1.2.1.4.6.0|65|0 +1.3.6.1.2.1.4.7.0|65|0 +1.3.6.1.2.1.4.8.0|65|0 +1.3.6.1.2.1.4.9.0|65|48839685 +1.3.6.1.2.1.4.10.0|65|7261437 +1.3.6.1.2.1.4.11.0|65|298187 +1.3.6.1.2.1.4.12.0|65|367 +1.3.6.1.2.1.4.14.0|65|3027986 +1.3.6.1.2.1.4.15.0|65|919952 +1.3.6.1.2.1.4.16.0|65|1 +1.3.6.1.2.1.4.17.0|65|382 +1.3.6.1.2.1.4.18.0|65|0 +1.3.6.1.2.1.4.19.0|65|770 +1.3.6.1.2.1.4.31.1.1.3.1|65|263117266 +1.3.6.1.2.1.4.31.1.1.3.2|65|16617586 +1.3.6.1.2.1.4.31.1.1.4.1|70|263117266 +1.3.6.1.2.1.4.31.1.1.4.2|70|16617586 +1.3.6.1.2.1.4.31.1.1.5.1|65|1385728258 +1.3.6.1.2.1.4.31.1.1.5.2|65|2294364471 +1.3.6.1.2.1.4.31.1.1.6.1|70|44335401218 +1.3.6.1.2.1.4.31.1.1.6.2|70|2294364471 +1.3.6.1.2.1.4.31.1.1.7.1|65|0 +1.3.6.1.2.1.4.31.1.1.7.2|65|3 +1.3.6.1.2.1.4.31.1.1.8.1|65|5 +1.3.6.1.2.1.4.31.1.1.8.2|65|14 +1.3.6.1.2.1.4.31.1.1.9.1|65|0 +1.3.6.1.2.1.4.31.1.1.9.2|65|0 +1.3.6.1.2.1.4.31.1.1.10.1|65|0 +1.3.6.1.2.1.4.31.1.1.10.2|65|0 +1.3.6.1.2.1.4.31.1.1.11.1|65|0 +1.3.6.1.2.1.4.31.1.1.11.2|65|0 +1.3.6.1.2.1.4.31.1.1.12.1|65|0 +1.3.6.1.2.1.4.31.1.1.12.2|65|0 +1.3.6.1.2.1.4.31.1.1.13.1|70|0 +1.3.6.1.2.1.4.31.1.1.13.2|70|0 +1.3.6.1.2.1.4.31.1.1.14.1|65|3027997 +1.3.6.1.2.1.4.31.1.1.14.2|65|14 +1.3.6.1.2.1.4.31.1.1.15.1|65|919953 +1.3.6.1.2.1.4.31.1.1.15.2|65|7 +1.3.6.1.2.1.4.31.1.1.16.1|65|1 +1.3.6.1.2.1.4.31.1.1.16.2|65|0 +1.3.6.1.2.1.4.31.1.1.17.1|65|0 +1.3.6.1.2.1.4.31.1.1.17.2|65|0 +1.3.6.1.2.1.4.31.1.1.18.1|65|48839895 +1.3.6.1.2.1.4.31.1.1.18.2|65|22 +1.3.6.1.2.1.4.31.1.1.19.1|70|48839895 +1.3.6.1.2.1.4.31.1.1.19.2|70|22 +1.3.6.1.2.1.4.31.1.1.20.1|65|7261575 +1.3.6.1.2.1.4.31.1.1.20.2|65|2316 +1.3.6.1.2.1.4.31.1.1.21.1|70|7261575 +1.3.6.1.2.1.4.31.1.1.21.2|70|2316 +1.3.6.1.2.1.4.31.1.1.22.1|65|367 +1.3.6.1.2.1.4.31.1.1.22.2|65|0 +1.3.6.1.2.1.4.31.1.1.23.1|65|0 +1.3.6.1.2.1.4.31.1.1.23.2|65|0 +1.3.6.1.2.1.4.31.1.1.24.1|70|0 +1.3.6.1.2.1.4.31.1.1.24.2|70|0 +1.3.6.1.2.1.4.31.1.1.25.1|65|298187 +1.3.6.1.2.1.4.31.1.1.25.2|65|2280 +1.3.6.1.2.1.4.31.1.1.26.1|65|0 +1.3.6.1.2.1.4.31.1.1.26.2|65|0 +1.3.6.1.2.1.4.31.1.1.27.1|65|382 +1.3.6.1.2.1.4.31.1.1.27.2|65|0 +1.3.6.1.2.1.4.31.1.1.28.1|65|0 +1.3.6.1.2.1.4.31.1.1.28.2|65|0 +1.3.6.1.2.1.4.31.1.1.29.1|65|770 +1.3.6.1.2.1.4.31.1.1.29.2|65|0 +1.3.6.1.2.1.4.31.1.1.30.1|65|0 +1.3.6.1.2.1.4.31.1.1.30.2|65|0 +1.3.6.1.2.1.4.31.1.1.31.1|70|0 +1.3.6.1.2.1.4.31.1.1.31.2|70|0 +1.3.6.1.2.1.4.31.1.1.32.1|65|3317538756 +1.3.6.1.2.1.4.31.1.1.32.2|65|176716 +1.3.6.1.2.1.4.31.1.1.33.1|70|3317538756 +1.3.6.1.2.1.4.31.1.1.33.2|70|176716 +1.3.6.1.2.1.4.31.1.1.34.1|65|0 +1.3.6.1.2.1.4.31.1.1.34.2|65|22 +1.3.6.1.2.1.4.31.1.1.35.1|70|0 +1.3.6.1.2.1.4.31.1.1.35.2|70|22 +1.3.6.1.2.1.4.31.1.1.36.1|65|0 +1.3.6.1.2.1.4.31.1.1.36.2|65|1176 +1.3.6.1.2.1.4.31.1.1.37.1|70|0 +1.3.6.1.2.1.4.31.1.1.37.2|70|1176 +1.3.6.1.2.1.4.31.1.1.38.1|65|0 +1.3.6.1.2.1.4.31.1.1.38.2|65|72 +1.3.6.1.2.1.4.31.1.1.39.1|70|0 +1.3.6.1.2.1.4.31.1.1.39.2|70|72 +1.3.6.1.2.1.4.31.1.1.40.1|65|0 +1.3.6.1.2.1.4.31.1.1.40.2|65|5472 +1.3.6.1.2.1.4.31.1.1.41.1|70|0 +1.3.6.1.2.1.4.31.1.1.41.2|70|5472 +1.3.6.1.2.1.4.31.1.1.42.1|65|789227 +1.3.6.1.2.1.4.31.1.1.42.2|65|0 +1.3.6.1.2.1.4.31.1.1.43.1|70|789227 +1.3.6.1.2.1.4.31.1.1.43.2|70|0 +1.3.6.1.2.1.4.31.1.1.44.1|65|394375 +1.3.6.1.2.1.4.31.1.1.44.2|65|0 +1.3.6.1.2.1.4.31.1.1.45.1|70|394375 +1.3.6.1.2.1.4.31.1.1.45.2|70|0 +1.3.6.1.2.1.4.31.1.1.46.1|67|0 +1.3.6.1.2.1.4.31.1.1.46.2|67|0 +1.3.6.1.2.1.4.31.1.1.47.1|66|0 +1.3.6.1.2.1.4.31.1.1.47.2|66|0 +1.3.6.1.2.1.4.34.1.3.2.8193.1552.2496.0.0.0.0.1.107|2|107 +1.3.6.1.2.1.4.34.1.3.2.8193.1552.2496.0.0.0.0.2.83|2|83 +1.3.6.1.2.1.4.34.1.3.2.8193.1552.3842.370.0.0.0.372.37|2|37 +1.3.6.1.2.1.4.34.1.3.2.8193.1552.3842.24626.0.0.0.52.38|2|38 +1.3.6.1.2.1.4.34.1.3.2.65152.0.0.0.16.22.0.36.85|2|85 +1.3.6.1.2.1.4.34.1.3.2.65152.0.0.0.16.22.0.37.86|2|86 +1.3.6.1.2.1.4.34.1.3.2.65152.0.0.0.91.3839.65178.22448.85|2|85 +1.3.6.1.2.1.4.34.1.3.2.65152.0.0.0.91.3839.65178.22449.86|2|86 +1.3.6.1.2.1.4.34.1.3.2.65152.0.0.0.521.4095.65033.34.37|2|37 +1.3.6.1.2.1.4.34.1.3.2.65152.0.0.0.521.4095.65033.35.38|2|38 +1.3.6.1.2.1.5.1.0|65|19870 +1.3.6.1.2.1.5.2.0|65|0 +1.3.6.1.2.1.5.3.0|65|19 +1.3.6.1.2.1.5.4.0|65|0 1.3.6.1.2.1.5.5.0|65|0 -1.3.6.1.2.1.5.6.0|65|2 -1.3.6.1.2.1.5.7.0|65|50 -1.3.6.1.2.1.5.8.0|65|41584636 -1.3.6.1.2.1.5.9.0|65|9259635 +1.3.6.1.2.1.5.6.0|65|0 +1.3.6.1.2.1.5.7.0|65|0 +1.3.6.1.2.1.5.8.0|65|19851 +1.3.6.1.2.1.5.9.0|65|0 1.3.6.1.2.1.5.10.0|65|0 1.3.6.1.2.1.5.11.0|65|0 1.3.6.1.2.1.5.12.0|65|0 1.3.6.1.2.1.5.13.0|65|0 -1.3.6.1.2.1.5.14.0|65|1775707349 +1.3.6.1.2.1.5.14.0|65|19851 1.3.6.1.2.1.5.15.0|65|0 -1.3.6.1.2.1.5.16.0|65|1715793364 -1.3.6.1.2.1.5.17.0|65|8811162 +1.3.6.1.2.1.5.16.0|65|0 +1.3.6.1.2.1.5.17.0|65|0 1.3.6.1.2.1.5.18.0|65|0 1.3.6.1.2.1.5.19.0|65|0 -1.3.6.1.2.1.5.20.0|65|17 -1.3.6.1.2.1.5.21.0|65|9518170 -1.3.6.1.2.1.5.22.0|65|41584636 +1.3.6.1.2.1.5.20.0|65|0 +1.3.6.1.2.1.5.21.0|65|0 +1.3.6.1.2.1.5.22.0|65|19851 1.3.6.1.2.1.5.23.0|65|0 1.3.6.1.2.1.5.24.0|65|0 1.3.6.1.2.1.5.25.0|65|0 1.3.6.1.2.1.5.26.0|65|0 +1.3.6.1.2.1.6.5.0|65|129568 +1.3.6.1.2.1.6.6.0|65|170972 +1.3.6.1.2.1.6.7.0|65|3 +1.3.6.1.2.1.6.8.0|65|151 +1.3.6.1.2.1.6.9.0|66|2 +1.3.6.1.2.1.6.10.0|65|4537796 +1.3.6.1.2.1.6.11.0|65|4516878 +1.3.6.1.2.1.6.12.0|65|1825 +1.3.6.1.2.1.6.14.0|65|0 +1.3.6.1.2.1.6.15.0|65|122 +1.3.6.1.2.1.7.1.0|65|44282148 +1.3.6.1.2.1.7.2.0|65|0 +1.3.6.1.2.1.7.3.0|65|0 +1.3.6.1.2.1.7.4.0|65|2726354 1.3.6.1.2.1.10.7.2.1.19.1|2|3 -1.3.6.1.2.1.10.7.2.1.19.2|2|2 +1.3.6.1.2.1.10.7.2.1.19.2|2|1 1.3.6.1.2.1.10.7.2.1.19.3|2|0 -1.3.6.1.2.1.10.7.2.1.19.4|2|2 -1.3.6.1.2.1.10.7.2.1.19.5|2|2 -1.3.6.1.2.1.10.7.2.1.19.6|2|2 -1.3.6.1.2.1.10.7.2.1.19.7|2|2 -1.3.6.1.2.1.10.7.2.1.19.8|2|2 -1.3.6.1.2.1.10.7.2.1.19.9|2|2 -1.3.6.1.2.1.10.7.2.1.19.10|2|2 -1.3.6.1.2.1.10.7.2.1.19.11|2|2 -1.3.6.1.2.1.10.7.2.1.19.12|2|2 -1.3.6.1.2.1.10.7.2.1.19.13|2|2 -1.3.6.1.2.1.10.7.2.1.19.14|2|2 -1.3.6.1.2.1.10.7.2.1.19.15|2|2 -1.3.6.1.2.1.10.7.2.1.19.16|2|2 +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.5|2|1 +1.3.6.1.2.1.10.7.2.1.19.6|2|1 +1.3.6.1.2.1.10.7.2.1.19.7|2|1 +1.3.6.1.2.1.10.7.2.1.19.8|2|1 +1.3.6.1.2.1.10.7.2.1.19.9|2|1 +1.3.6.1.2.1.10.7.2.1.19.10|2|1 +1.3.6.1.2.1.10.7.2.1.19.11|2|1 +1.3.6.1.2.1.10.7.2.1.19.12|2|1 +1.3.6.1.2.1.10.7.2.1.19.13|2|1 +1.3.6.1.2.1.10.7.2.1.19.14|2|1 +1.3.6.1.2.1.10.7.2.1.19.15|2|1 +1.3.6.1.2.1.10.7.2.1.19.16|2|1 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|2 -1.3.6.1.2.1.10.7.2.1.19.20|2|2 -1.3.6.1.2.1.10.7.2.1.19.21|2|2 -1.3.6.1.2.1.10.7.2.1.19.22|2|2 -1.3.6.1.2.1.10.7.2.1.19.23|2|2 -1.3.6.1.2.1.10.7.2.1.19.24|2|2 -1.3.6.1.2.1.10.7.2.1.19.25|2|2 -1.3.6.1.2.1.10.7.2.1.19.26|2|2 -1.3.6.1.2.1.10.7.2.1.19.27|2|2 -1.3.6.1.2.1.10.7.2.1.19.28|2|2 -1.3.6.1.2.1.10.7.2.1.19.29|2|2 -1.3.6.1.2.1.10.7.2.1.19.30|2|2 -1.3.6.1.2.1.10.7.2.1.19.31|2|2 -1.3.6.1.2.1.10.7.2.1.19.32|2|2 -1.3.6.1.2.1.10.7.2.1.19.33|2|2 -1.3.6.1.2.1.10.7.2.1.19.34|2|2 +1.3.6.1.2.1.10.7.2.1.19.19|2|1 +1.3.6.1.2.1.10.7.2.1.19.20|2|1 +1.3.6.1.2.1.10.7.2.1.19.21|2|1 +1.3.6.1.2.1.10.7.2.1.19.22|2|1 +1.3.6.1.2.1.10.7.2.1.19.23|2|1 +1.3.6.1.2.1.10.7.2.1.19.24|2|1 +1.3.6.1.2.1.10.7.2.1.19.25|2|1 +1.3.6.1.2.1.10.7.2.1.19.26|2|1 +1.3.6.1.2.1.10.7.2.1.19.27|2|1 +1.3.6.1.2.1.10.7.2.1.19.28|2|1 +1.3.6.1.2.1.10.7.2.1.19.29|2|1 +1.3.6.1.2.1.10.7.2.1.19.30|2|1 +1.3.6.1.2.1.10.7.2.1.19.31|2|1 +1.3.6.1.2.1.10.7.2.1.19.32|2|1 +1.3.6.1.2.1.10.7.2.1.19.33|2|1 +1.3.6.1.2.1.10.7.2.1.19.34|2|1 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|2 -1.3.6.1.2.1.10.7.2.1.19.40|2|2 -1.3.6.1.2.1.10.7.2.1.19.41|2|2 -1.3.6.1.2.1.10.7.2.1.19.42|2|2 +1.3.6.1.2.1.10.7.2.1.19.39|2|1 +1.3.6.1.2.1.10.7.2.1.19.40|2|1 +1.3.6.1.2.1.10.7.2.1.19.41|2|1 +1.3.6.1.2.1.10.7.2.1.19.42|2|1 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|0 1.3.6.1.2.1.10.7.2.1.19.45|2|0 @@ -17830,9 +2321,6 @@ 1.3.6.1.2.1.10.7.2.1.19.135|2|0 1.3.6.1.2.1.10.7.2.1.19.136|2|0 1.3.6.1.2.1.10.7.2.1.19.137|2|0 -1.3.6.1.2.1.10.7.2.1.19.138|2|0 -1.3.6.1.2.1.10.7.2.1.19.139|2|0 -1.3.6.1.2.1.10.7.2.1.19.140|2|0 1.3.6.1.2.1.10.7.2.1.19.141|2|0 1.3.6.1.2.1.10.7.2.1.19.142|2|0 1.3.6.1.2.1.10.7.2.1.19.143|2|0 @@ -17851,10 +2339,35 @@ 1.3.6.1.2.1.10.7.2.1.19.156|2|0 1.3.6.1.2.1.10.7.2.1.19.157|2|0 1.3.6.1.2.1.10.7.2.1.19.158|2|0 -1.3.6.1.2.1.10.7.2.1.19.159|2|0 1.3.6.1.2.1.10.7.2.1.19.160|2|0 1.3.6.1.2.1.10.7.2.1.19.161|2|0 1.3.6.1.2.1.10.7.2.1.19.162|2|0 +1.3.6.1.2.1.10.7.2.1.19.163|2|0 +1.3.6.1.2.1.10.7.2.1.19.164|2|0 +1.3.6.1.2.1.10.7.2.1.19.165|2|0 +1.3.6.1.2.1.10.7.2.1.19.166|2|0 +1.3.6.1.2.1.10.7.2.1.19.167|2|0 +1.3.6.1.2.1.10.7.2.1.19.168|2|0 +1.3.6.1.2.1.10.7.2.1.19.169|2|0 +1.3.6.1.2.1.10.7.2.1.19.170|2|0 +1.3.6.1.2.1.10.7.2.1.19.172|2|0 +1.3.6.1.2.1.10.7.2.1.19.173|2|0 +1.3.6.1.2.1.10.7.2.1.19.174|2|0 +1.3.6.1.2.1.10.7.2.1.19.175|2|0 +1.3.6.1.2.1.10.7.2.1.19.176|2|0 +1.3.6.1.2.1.10.7.2.1.19.177|2|0 +1.3.6.1.2.1.10.7.2.1.19.178|2|0 +1.3.6.1.2.1.10.7.2.1.19.179|2|0 +1.3.6.1.2.1.10.7.2.1.19.180|2|0 +1.3.6.1.2.1.10.7.2.1.19.181|2|0 +1.3.6.1.2.1.10.7.2.1.19.182|2|0 +1.3.6.1.2.1.10.7.2.1.19.183|2|0 +1.3.6.1.2.1.10.7.2.1.19.184|2|0 +1.3.6.1.2.1.10.7.2.1.19.185|2|0 +1.3.6.1.2.1.10.7.2.1.19.186|2|0 +1.3.6.1.2.1.10.7.2.1.19.187|2|0 +1.3.6.1.2.1.10.7.2.1.19.188|2|0 +1.3.6.1.2.1.10.7.2.1.19.189|2|0 1.3.6.1.2.1.31.1.1.1.1.1|4|mgmt1 1.3.6.1.2.1.31.1.1.1.1.2|4|port1 1.3.6.1.2.1.31.1.1.1.1.3|4|modem @@ -17903,121 +2416,143 @@ 1.3.6.1.2.1.31.1.1.1.1.46|4|npu0_vlink1 1.3.6.1.2.1.31.1.1.1.1.47|4|npu1_vlink0 1.3.6.1.2.1.31.1.1.1.1.48|4|npu1_vlink1 -1.3.6.1.2.1.31.1.1.1.1.49|4|SWITCH_DOWNLINK -1.3.6.1.2.1.31.1.1.1.1.50|4|vl_580-htr-came -1.3.6.1.2.1.31.1.1.1.1.51|4|if_l3hdwroute -1.3.6.1.2.1.31.1.1.1.1.52|4|if_l3pocroute -1.3.6.1.2.1.31.1.1.1.1.53|4|if_printers -1.3.6.1.2.1.31.1.1.1.1.54|4|if_security -1.3.6.1.2.1.31.1.1.1.1.55|4|if_32_voip +1.3.6.1.2.1.31.1.1.1.1.49|4|redacted +1.3.6.1.2.1.31.1.1.1.1.50|4|redacted +1.3.6.1.2.1.31.1.1.1.1.51|4|redacted +1.3.6.1.2.1.31.1.1.1.1.52|4|redacted +1.3.6.1.2.1.31.1.1.1.1.53|4|redacted +1.3.6.1.2.1.31.1.1.1.1.54|4|redacted +1.3.6.1.2.1.31.1.1.1.1.55|4|redacted 1.3.6.1.2.1.31.1.1.1.1.56|4|ssl.KA -1.3.6.1.2.1.31.1.1.1.1.57|4|if_dlserv -1.3.6.1.2.1.31.1.1.1.1.58|4|if_gast -1.3.6.1.2.1.31.1.1.1.1.59|4|if_meet -1.3.6.1.2.1.31.1.1.1.1.60|4|IPSEC_Motiv -1.3.6.1.2.1.31.1.1.1.1.61|4|if_126_vpn_log -1.3.6.1.2.1.31.1.1.1.1.62|4|if_68_voip -1.3.6.1.2.1.31.1.1.1.1.63|4|if_test -1.3.6.1.2.1.31.1.1.1.1.64|4|vl_540-camera-s -1.3.6.1.2.1.31.1.1.1.1.65|4|if_biman -1.3.6.1.2.1.31.1.1.1.1.66|4|if_buman -1.3.6.1.2.1.31.1.1.1.1.67|4|vl_53_hdw-w10 -1.3.6.1.2.1.31.1.1.1.1.68|4|if_dmz1 -1.3.6.1.2.1.31.1.1.1.1.69|4|if_dmz2 -1.3.6.1.2.1.31.1.1.1.1.70|4|if_dmz3 -1.3.6.1.2.1.31.1.1.1.1.71|4|if_60_avd -1.3.6.1.2.1.31.1.1.1.1.72|4|IPSEC_Portiva -1.3.6.1.2.1.31.1.1.1.1.73|4|vl_900-dc-trust -1.3.6.1.2.1.31.1.1.1.1.74|4|if_dmzxtr -1.3.6.1.2.1.31.1.1.1.1.75|4|if_gmol -1.3.6.1.2.1.31.1.1.1.1.76|4|if_ext319 -1.3.6.1.2.1.31.1.1.1.1.77|4|if_hdwdmzinfra -1.3.6.1.2.1.31.1.1.1.1.78|4|vl_581-dcd-came -1.3.6.1.2.1.31.1.1.1.1.79|4|if_hdwdmzhost2 -1.3.6.1.2.1.31.1.1.1.1.80|4|if_hdwdmzhost3 -1.3.6.1.2.1.31.1.1.1.1.81|4|if_hdwdmzhost4 -1.3.6.1.2.1.31.1.1.1.1.82|4|if_hdwdmzhost5 -1.3.6.1.2.1.31.1.1.1.1.83|4|IF_lo6-KA -1.3.6.1.2.1.31.1.1.1.1.84|4|if_ext327 -1.3.6.1.2.1.31.1.1.1.1.85|4|vLnk_root-ka0 -1.3.6.1.2.1.31.1.1.1.1.86|4|vLnk_root-ka1 -1.3.6.1.2.1.31.1.1.1.1.87|4|if_ext330 -1.3.6.1.2.1.31.1.1.1.1.88|4|IF_0333-OTA_DMZ -1.3.6.1.2.1.31.1.1.1.1.89|4|if_hdwpocdmz -1.3.6.1.2.1.31.1.1.1.1.90|4|if_xtr_infra -1.3.6.1.2.1.31.1.1.1.1.91|4|IF_0018-Server -1.3.6.1.2.1.31.1.1.1.1.92|4|IF_0222_mgmt-ex -1.3.6.1.2.1.31.1.1.1.1.93|4|IF_0017_Client -1.3.6.1.2.1.31.1.1.1.1.94|4|if_108_gast -1.3.6.1.2.1.31.1.1.1.1.95|4|if_209_man_hpc -1.3.6.1.2.1.31.1.1.1.1.96|4|vl_313-vpn-trus -1.3.6.1.2.1.31.1.1.1.1.97|4|if_5_idlab -1.3.6.1.2.1.31.1.1.1.1.98|4|if_114_winxp -1.3.6.1.2.1.31.1.1.1.1.99|4|IPSEC_WSR -1.3.6.1.2.1.31.1.1.1.1.100|4|if_102_keyproc -1.3.6.1.2.1.31.1.1.1.1.101|4|IF_0180_DTG -1.3.6.1.2.1.31.1.1.1.1.102|4|IF_0335_AD-ext -1.3.6.1.2.1.31.1.1.1.1.103|4|IF_0351_WCP-new -1.3.6.1.2.1.31.1.1.1.1.104|4|IF_0050_KA-DTL -1.3.6.1.2.1.31.1.1.1.1.105|4|P1_VPN_LOGGER -1.3.6.1.2.1.31.1.1.1.1.106|4|if_304_maas -1.3.6.1.2.1.31.1.1.1.1.107|4|IF_lo6 -1.3.6.1.2.1.31.1.1.1.1.108|4|IF_0181_GHL -1.3.6.1.2.1.31.1.1.1.1.109|4|IF_0016_Sandbox -1.3.6.1.2.1.31.1.1.1.1.110|4|IF_0015_WIFI -1.3.6.1.2.1.31.1.1.1.1.111|4|IF_0014_TABLET -1.3.6.1.2.1.31.1.1.1.1.112|4|IF_0013_RESERVE -1.3.6.1.2.1.31.1.1.1.1.113|4|IF_0600_p2p-mfw -1.3.6.1.2.1.31.1.1.1.1.114|4|IF_lo -1.3.6.1.2.1.31.1.1.1.1.115|4|IF_MGMT_Motiv -1.3.6.1.2.1.31.1.1.1.1.116|4|IF_221-SiemTcm -1.3.6.1.2.1.31.1.1.1.1.117|4|IF_lo-KA -1.3.6.1.2.1.31.1.1.1.1.118|4|IF_Vl117-OsDmz -1.3.6.1.2.1.31.1.1.1.1.119|4|IF_Vl115-NsxPoc -1.3.6.1.2.1.31.1.1.1.1.120|4|IF_0006-DmzDns -1.3.6.1.2.1.31.1.1.1.1.121|4|IPSEC_Castel -1.3.6.1.2.1.31.1.1.1.1.122|4|IF_118-NsxPoc -1.3.6.1.2.1.31.1.1.1.1.123|4|ssl.OTA -1.3.6.1.2.1.31.1.1.1.1.124|4|vLnk_root-OTA0 -1.3.6.1.2.1.31.1.1.1.1.125|4|IF_0182_HHZ -1.3.6.1.2.1.31.1.1.1.1.126|4|vl_37-wcf-clien -1.3.6.1.2.1.31.1.1.1.1.127|4|IF_0450_Azure1 -1.3.6.1.2.1.31.1.1.1.1.128|4|IF_0451_Azure2 -1.3.6.1.2.1.31.1.1.1.1.129|4|IF_0183_HHN -1.3.6.1.2.1.31.1.1.1.1.130|4|IF_0184_TRN -1.3.6.1.2.1.31.1.1.1.1.131|4|IF_0185_PAV -1.3.6.1.2.1.31.1.1.1.1.132|4|IF_0186_SGM -1.3.6.1.2.1.31.1.1.1.1.133|4|IF_0187_TTR -1.3.6.1.2.1.31.1.1.1.1.134|4|IF_0188_DTL -1.3.6.1.2.1.31.1.1.1.1.135|4|IF_0189_WPL -1.3.6.1.2.1.31.1.1.1.1.136|4|IF_0223_mgmt-IT -1.3.6.1.2.1.31.1.1.1.1.137|4|IF_0224_mgmt-KA -1.3.6.1.2.1.31.1.1.1.1.138|4|vLnk_root-OTA1 -1.3.6.1.2.1.31.1.1.1.1.139|4|IF_lo-OTA -1.3.6.1.2.1.31.1.1.1.1.140|4|IF_lo6-OTA -1.3.6.1.2.1.31.1.1.1.1.141|4|IF_OTA-Internal -1.3.6.1.2.1.31.1.1.1.1.142|4|IF_OTA-Trusted -1.3.6.1.2.1.31.1.1.1.1.143|4|IF_OTA-DMZ -1.3.6.1.2.1.31.1.1.1.1.144|4|IPSEC_Cirrus_SA -1.3.6.1.2.1.31.1.1.1.1.145|4|IF_0002_lb-dc -1.3.6.1.2.1.31.1.1.1.1.146|4|IF_old-mgmt -1.3.6.1.2.1.31.1.1.1.1.147|4|IF_0190_DCD -1.3.6.1.2.1.31.1.1.1.1.148|4|IF_0131_WIFI -1.3.6.1.2.1.31.1.1.1.1.149|4|IF_0124_dmz-rdm -1.3.6.1.2.1.31.1.1.1.1.150|4|IF_0125_dmz-ibr -1.3.6.1.2.1.31.1.1.1.1.151|4|IF_0007-DMZ-NTP -1.3.6.1.2.1.31.1.1.1.1.152|4|IF_0143_lb-ota -1.3.6.1.2.1.31.1.1.1.1.153|4|IF_0008_WCF -1.3.6.1.2.1.31.1.1.1.1.154|4|vl_9-ka-lb-vip -1.3.6.1.2.1.31.1.1.1.1.155|4|vl_312-vpn-dmz -1.3.6.1.2.1.31.1.1.1.1.156|4|vl_38-wcf-ota -1.3.6.1.2.1.31.1.1.1.1.157|4|vl_12-dmz-laadp -1.3.6.1.2.1.31.1.1.1.1.158|4|vl_1000-sddc-mg -1.3.6.1.2.1.31.1.1.1.1.159|4|vl_702-p2p-vrf -1.3.6.1.2.1.31.1.1.1.1.160|4|vl_1004-sddc-wl -1.3.6.1.2.1.31.1.1.1.1.161|4|vl_1070-dc-inte -1.3.6.1.2.1.31.1.1.1.1.162|4|vl_800-dc-dmz-r -1.3.6.1.2.1.31.1.1.1.2.1|65|9307608 +1.3.6.1.2.1.31.1.1.1.1.57|4|redacted +1.3.6.1.2.1.31.1.1.1.1.58|4|redacted +1.3.6.1.2.1.31.1.1.1.1.59|4|redacted +1.3.6.1.2.1.31.1.1.1.1.60|4|redacted +1.3.6.1.2.1.31.1.1.1.1.61|4|redacted +1.3.6.1.2.1.31.1.1.1.1.62|4|redacted +1.3.6.1.2.1.31.1.1.1.1.63|4|redacted +1.3.6.1.2.1.31.1.1.1.1.64|4|redacted +1.3.6.1.2.1.31.1.1.1.1.65|4|redacted +1.3.6.1.2.1.31.1.1.1.1.66|4|redacted +1.3.6.1.2.1.31.1.1.1.1.67|4|redacted +1.3.6.1.2.1.31.1.1.1.1.68|4|redacted +1.3.6.1.2.1.31.1.1.1.1.69|4|redacted +1.3.6.1.2.1.31.1.1.1.1.70|4|redacted +1.3.6.1.2.1.31.1.1.1.1.71|4|redacted +1.3.6.1.2.1.31.1.1.1.1.72|4|redacted +1.3.6.1.2.1.31.1.1.1.1.73|4|redacted +1.3.6.1.2.1.31.1.1.1.1.74|4|redacted +1.3.6.1.2.1.31.1.1.1.1.75|4|redacted +1.3.6.1.2.1.31.1.1.1.1.76|4|redacted +1.3.6.1.2.1.31.1.1.1.1.77|4|redacted +1.3.6.1.2.1.31.1.1.1.1.78|4|redacted +1.3.6.1.2.1.31.1.1.1.1.79|4|redacted +1.3.6.1.2.1.31.1.1.1.1.80|4|redacted +1.3.6.1.2.1.31.1.1.1.1.81|4|redacted +1.3.6.1.2.1.31.1.1.1.1.82|4|redacted +1.3.6.1.2.1.31.1.1.1.1.83|4|redacted +1.3.6.1.2.1.31.1.1.1.1.84|4|redacted +1.3.6.1.2.1.31.1.1.1.1.85|4|redacted +1.3.6.1.2.1.31.1.1.1.1.86|4|redacted +1.3.6.1.2.1.31.1.1.1.1.87|4|redacted +1.3.6.1.2.1.31.1.1.1.1.88|4|redacted +1.3.6.1.2.1.31.1.1.1.1.89|4|redacted +1.3.6.1.2.1.31.1.1.1.1.90|4|redacted +1.3.6.1.2.1.31.1.1.1.1.91|4|redacted +1.3.6.1.2.1.31.1.1.1.1.92|4|redacted +1.3.6.1.2.1.31.1.1.1.1.93|4|redacted +1.3.6.1.2.1.31.1.1.1.1.94|4|redacted +1.3.6.1.2.1.31.1.1.1.1.95|4|redacted +1.3.6.1.2.1.31.1.1.1.1.96|4|redacted +1.3.6.1.2.1.31.1.1.1.1.97|4|redacted +1.3.6.1.2.1.31.1.1.1.1.98|4|redacted +1.3.6.1.2.1.31.1.1.1.1.99|4|redacted +1.3.6.1.2.1.31.1.1.1.1.100|4|redacted +1.3.6.1.2.1.31.1.1.1.1.101|4|redacted +1.3.6.1.2.1.31.1.1.1.1.102|4|redacted +1.3.6.1.2.1.31.1.1.1.1.103|4|redacted +1.3.6.1.2.1.31.1.1.1.1.104|4|ssl.dc +1.3.6.1.2.1.31.1.1.1.1.105|4|redacted +1.3.6.1.2.1.31.1.1.1.1.106|4|redacted +1.3.6.1.2.1.31.1.1.1.1.107|4|redacted +1.3.6.1.2.1.31.1.1.1.1.108|4|redacted +1.3.6.1.2.1.31.1.1.1.1.109|4|redacted +1.3.6.1.2.1.31.1.1.1.1.110|4|redacted +1.3.6.1.2.1.31.1.1.1.1.111|4|redacted +1.3.6.1.2.1.31.1.1.1.1.112|4|redacted +1.3.6.1.2.1.31.1.1.1.1.113|4|redacted +1.3.6.1.2.1.31.1.1.1.1.114|4|redacted +1.3.6.1.2.1.31.1.1.1.1.115|4|redacted +1.3.6.1.2.1.31.1.1.1.1.116|4|redacted +1.3.6.1.2.1.31.1.1.1.1.117|4|redacted +1.3.6.1.2.1.31.1.1.1.1.118|4|redacted +1.3.6.1.2.1.31.1.1.1.1.119|4|redacted +1.3.6.1.2.1.31.1.1.1.1.120|4|redacted +1.3.6.1.2.1.31.1.1.1.1.121|4|redacted +1.3.6.1.2.1.31.1.1.1.1.122|4|redacted +1.3.6.1.2.1.31.1.1.1.1.123|4|redacted +1.3.6.1.2.1.31.1.1.1.1.124|4|redacted +1.3.6.1.2.1.31.1.1.1.1.125|4|redacted +1.3.6.1.2.1.31.1.1.1.1.126|4|redacted +1.3.6.1.2.1.31.1.1.1.1.127|4|redacted +1.3.6.1.2.1.31.1.1.1.1.128|4|redacted +1.3.6.1.2.1.31.1.1.1.1.129|4|redacted +1.3.6.1.2.1.31.1.1.1.1.130|4|redacted +1.3.6.1.2.1.31.1.1.1.1.131|4|redacted +1.3.6.1.2.1.31.1.1.1.1.132|4|redacted +1.3.6.1.2.1.31.1.1.1.1.133|4|redacted +1.3.6.1.2.1.31.1.1.1.1.134|4|redacted +1.3.6.1.2.1.31.1.1.1.1.135|4|redacted +1.3.6.1.2.1.31.1.1.1.1.136|4|redacted +1.3.6.1.2.1.31.1.1.1.1.137|4|redacted +1.3.6.1.2.1.31.1.1.1.1.141|4|redacted +1.3.6.1.2.1.31.1.1.1.1.142|4|redacted +1.3.6.1.2.1.31.1.1.1.1.143|4|redacted +1.3.6.1.2.1.31.1.1.1.1.144|4|redacted +1.3.6.1.2.1.31.1.1.1.1.145|4|redacted +1.3.6.1.2.1.31.1.1.1.1.146|4|redacted +1.3.6.1.2.1.31.1.1.1.1.147|4|redacted +1.3.6.1.2.1.31.1.1.1.1.148|4|redacted +1.3.6.1.2.1.31.1.1.1.1.149|4|redacted +1.3.6.1.2.1.31.1.1.1.1.150|4|redacted +1.3.6.1.2.1.31.1.1.1.1.151|4|redacted +1.3.6.1.2.1.31.1.1.1.1.152|4|redacted +1.3.6.1.2.1.31.1.1.1.1.153|4|redacted +1.3.6.1.2.1.31.1.1.1.1.154|4|redacted +1.3.6.1.2.1.31.1.1.1.1.155|4|redacted +1.3.6.1.2.1.31.1.1.1.1.156|4|redacted +1.3.6.1.2.1.31.1.1.1.1.157|4|redacted +1.3.6.1.2.1.31.1.1.1.1.158|4|redacted +1.3.6.1.2.1.31.1.1.1.1.160|4|redacted +1.3.6.1.2.1.31.1.1.1.1.161|4|redacted +1.3.6.1.2.1.31.1.1.1.1.162|4|redacted +1.3.6.1.2.1.31.1.1.1.1.163|4|redacted +1.3.6.1.2.1.31.1.1.1.1.164|4|redacted +1.3.6.1.2.1.31.1.1.1.1.165|4|redacted +1.3.6.1.2.1.31.1.1.1.1.166|4|redacted +1.3.6.1.2.1.31.1.1.1.1.167|4|redacted +1.3.6.1.2.1.31.1.1.1.1.168|4|redacted +1.3.6.1.2.1.31.1.1.1.1.169|4|redacted +1.3.6.1.2.1.31.1.1.1.1.170|4|redacted +1.3.6.1.2.1.31.1.1.1.1.172|4|redacted +1.3.6.1.2.1.31.1.1.1.1.173|4|redacted +1.3.6.1.2.1.31.1.1.1.1.174|4|redacted +1.3.6.1.2.1.31.1.1.1.1.175|4|redacted +1.3.6.1.2.1.31.1.1.1.1.176|4|redacted +1.3.6.1.2.1.31.1.1.1.1.177|4|redacted +1.3.6.1.2.1.31.1.1.1.1.178|4|redacted +1.3.6.1.2.1.31.1.1.1.1.179|4|redacted +1.3.6.1.2.1.31.1.1.1.1.180|4|redacted +1.3.6.1.2.1.31.1.1.1.1.181|4|redacted +1.3.6.1.2.1.31.1.1.1.1.182|4|redacted +1.3.6.1.2.1.31.1.1.1.1.183|4|redacted +1.3.6.1.2.1.31.1.1.1.1.184|4|redacted +1.3.6.1.2.1.31.1.1.1.1.185|4|redacted +1.3.6.1.2.1.31.1.1.1.1.186|4|redacted +1.3.6.1.2.1.31.1.1.1.1.187|4|redacted +1.3.6.1.2.1.31.1.1.1.1.188|4|redacted +1.3.6.1.2.1.31.1.1.1.1.189|4|redacted +1.3.6.1.2.1.31.1.1.1.2.1|65|1249123 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.4|65|0 @@ -18059,7 +2594,7 @@ 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|0 -1.3.6.1.2.1.31.1.1.1.2.43|65|15601790 +1.3.6.1.2.1.31.1.1.1.2.43|65|1054238 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 @@ -18154,9 +2689,6 @@ 1.3.6.1.2.1.31.1.1.1.2.135|65|0 1.3.6.1.2.1.31.1.1.1.2.136|65|0 1.3.6.1.2.1.31.1.1.1.2.137|65|0 -1.3.6.1.2.1.31.1.1.1.2.138|65|0 -1.3.6.1.2.1.31.1.1.1.2.139|65|0 -1.3.6.1.2.1.31.1.1.1.2.140|65|0 1.3.6.1.2.1.31.1.1.1.2.141|65|0 1.3.6.1.2.1.31.1.1.1.2.142|65|0 1.3.6.1.2.1.31.1.1.1.2.143|65|0 @@ -18175,10 +2707,35 @@ 1.3.6.1.2.1.31.1.1.1.2.156|65|0 1.3.6.1.2.1.31.1.1.1.2.157|65|0 1.3.6.1.2.1.31.1.1.1.2.158|65|0 -1.3.6.1.2.1.31.1.1.1.2.159|65|0 1.3.6.1.2.1.31.1.1.1.2.160|65|0 1.3.6.1.2.1.31.1.1.1.2.161|65|0 1.3.6.1.2.1.31.1.1.1.2.162|65|0 +1.3.6.1.2.1.31.1.1.1.2.163|65|0 +1.3.6.1.2.1.31.1.1.1.2.164|65|0 +1.3.6.1.2.1.31.1.1.1.2.165|65|0 +1.3.6.1.2.1.31.1.1.1.2.166|65|0 +1.3.6.1.2.1.31.1.1.1.2.167|65|0 +1.3.6.1.2.1.31.1.1.1.2.168|65|0 +1.3.6.1.2.1.31.1.1.1.2.169|65|0 +1.3.6.1.2.1.31.1.1.1.2.170|65|0 +1.3.6.1.2.1.31.1.1.1.2.172|65|0 +1.3.6.1.2.1.31.1.1.1.2.173|65|0 +1.3.6.1.2.1.31.1.1.1.2.174|65|0 +1.3.6.1.2.1.31.1.1.1.2.175|65|0 +1.3.6.1.2.1.31.1.1.1.2.176|65|0 +1.3.6.1.2.1.31.1.1.1.2.177|65|0 +1.3.6.1.2.1.31.1.1.1.2.178|65|0 +1.3.6.1.2.1.31.1.1.1.2.179|65|0 +1.3.6.1.2.1.31.1.1.1.2.180|65|0 +1.3.6.1.2.1.31.1.1.1.2.181|65|0 +1.3.6.1.2.1.31.1.1.1.2.182|65|0 +1.3.6.1.2.1.31.1.1.1.2.183|65|0 +1.3.6.1.2.1.31.1.1.1.2.184|65|0 +1.3.6.1.2.1.31.1.1.1.2.185|65|0 +1.3.6.1.2.1.31.1.1.1.2.186|65|0 +1.3.6.1.2.1.31.1.1.1.2.187|65|0 +1.3.6.1.2.1.31.1.1.1.2.188|65|0 +1.3.6.1.2.1.31.1.1.1.2.189|65|0 1.3.6.1.2.1.31.1.1.1.3.1|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|0 @@ -18316,9 +2873,6 @@ 1.3.6.1.2.1.31.1.1.1.3.135|65|0 1.3.6.1.2.1.31.1.1.1.3.136|65|0 1.3.6.1.2.1.31.1.1.1.3.137|65|0 -1.3.6.1.2.1.31.1.1.1.3.138|65|0 -1.3.6.1.2.1.31.1.1.1.3.139|65|0 -1.3.6.1.2.1.31.1.1.1.3.140|65|0 1.3.6.1.2.1.31.1.1.1.3.141|65|0 1.3.6.1.2.1.31.1.1.1.3.142|65|0 1.3.6.1.2.1.31.1.1.1.3.143|65|0 @@ -18337,10 +2891,35 @@ 1.3.6.1.2.1.31.1.1.1.3.156|65|0 1.3.6.1.2.1.31.1.1.1.3.157|65|0 1.3.6.1.2.1.31.1.1.1.3.158|65|0 -1.3.6.1.2.1.31.1.1.1.3.159|65|0 1.3.6.1.2.1.31.1.1.1.3.160|65|0 1.3.6.1.2.1.31.1.1.1.3.161|65|0 1.3.6.1.2.1.31.1.1.1.3.162|65|0 +1.3.6.1.2.1.31.1.1.1.3.163|65|0 +1.3.6.1.2.1.31.1.1.1.3.164|65|0 +1.3.6.1.2.1.31.1.1.1.3.165|65|0 +1.3.6.1.2.1.31.1.1.1.3.166|65|0 +1.3.6.1.2.1.31.1.1.1.3.167|65|0 +1.3.6.1.2.1.31.1.1.1.3.168|65|0 +1.3.6.1.2.1.31.1.1.1.3.169|65|0 +1.3.6.1.2.1.31.1.1.1.3.170|65|0 +1.3.6.1.2.1.31.1.1.1.3.172|65|0 +1.3.6.1.2.1.31.1.1.1.3.173|65|0 +1.3.6.1.2.1.31.1.1.1.3.174|65|0 +1.3.6.1.2.1.31.1.1.1.3.175|65|0 +1.3.6.1.2.1.31.1.1.1.3.176|65|0 +1.3.6.1.2.1.31.1.1.1.3.177|65|0 +1.3.6.1.2.1.31.1.1.1.3.178|65|0 +1.3.6.1.2.1.31.1.1.1.3.179|65|0 +1.3.6.1.2.1.31.1.1.1.3.180|65|0 +1.3.6.1.2.1.31.1.1.1.3.181|65|0 +1.3.6.1.2.1.31.1.1.1.3.182|65|0 +1.3.6.1.2.1.31.1.1.1.3.183|65|0 +1.3.6.1.2.1.31.1.1.1.3.184|65|0 +1.3.6.1.2.1.31.1.1.1.3.185|65|0 +1.3.6.1.2.1.31.1.1.1.3.186|65|0 +1.3.6.1.2.1.31.1.1.1.3.187|65|0 +1.3.6.1.2.1.31.1.1.1.3.188|65|0 +1.3.6.1.2.1.31.1.1.1.3.189|65|0 1.3.6.1.2.1.31.1.1.1.4.1|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 @@ -18478,9 +3057,6 @@ 1.3.6.1.2.1.31.1.1.1.4.135|65|0 1.3.6.1.2.1.31.1.1.1.4.136|65|0 1.3.6.1.2.1.31.1.1.1.4.137|65|0 -1.3.6.1.2.1.31.1.1.1.4.138|65|0 -1.3.6.1.2.1.31.1.1.1.4.139|65|0 -1.3.6.1.2.1.31.1.1.1.4.140|65|0 1.3.6.1.2.1.31.1.1.1.4.141|65|0 1.3.6.1.2.1.31.1.1.1.4.142|65|0 1.3.6.1.2.1.31.1.1.1.4.143|65|0 @@ -18499,10 +3075,35 @@ 1.3.6.1.2.1.31.1.1.1.4.156|65|0 1.3.6.1.2.1.31.1.1.1.4.157|65|0 1.3.6.1.2.1.31.1.1.1.4.158|65|0 -1.3.6.1.2.1.31.1.1.1.4.159|65|0 1.3.6.1.2.1.31.1.1.1.4.160|65|0 1.3.6.1.2.1.31.1.1.1.4.161|65|0 1.3.6.1.2.1.31.1.1.1.4.162|65|0 +1.3.6.1.2.1.31.1.1.1.4.163|65|0 +1.3.6.1.2.1.31.1.1.1.4.164|65|0 +1.3.6.1.2.1.31.1.1.1.4.165|65|0 +1.3.6.1.2.1.31.1.1.1.4.166|65|0 +1.3.6.1.2.1.31.1.1.1.4.167|65|0 +1.3.6.1.2.1.31.1.1.1.4.168|65|0 +1.3.6.1.2.1.31.1.1.1.4.169|65|0 +1.3.6.1.2.1.31.1.1.1.4.170|65|0 +1.3.6.1.2.1.31.1.1.1.4.172|65|0 +1.3.6.1.2.1.31.1.1.1.4.173|65|0 +1.3.6.1.2.1.31.1.1.1.4.174|65|0 +1.3.6.1.2.1.31.1.1.1.4.175|65|0 +1.3.6.1.2.1.31.1.1.1.4.176|65|0 +1.3.6.1.2.1.31.1.1.1.4.177|65|0 +1.3.6.1.2.1.31.1.1.1.4.178|65|0 +1.3.6.1.2.1.31.1.1.1.4.179|65|0 +1.3.6.1.2.1.31.1.1.1.4.180|65|0 +1.3.6.1.2.1.31.1.1.1.4.181|65|0 +1.3.6.1.2.1.31.1.1.1.4.182|65|0 +1.3.6.1.2.1.31.1.1.1.4.183|65|0 +1.3.6.1.2.1.31.1.1.1.4.184|65|0 +1.3.6.1.2.1.31.1.1.1.4.185|65|0 +1.3.6.1.2.1.31.1.1.1.4.186|65|0 +1.3.6.1.2.1.31.1.1.1.4.187|65|0 +1.3.6.1.2.1.31.1.1.1.4.188|65|0 +1.3.6.1.2.1.31.1.1.1.4.189|65|0 1.3.6.1.2.1.31.1.1.1.5.1|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|0 @@ -18640,9 +3241,6 @@ 1.3.6.1.2.1.31.1.1.1.5.135|65|0 1.3.6.1.2.1.31.1.1.1.5.136|65|0 1.3.6.1.2.1.31.1.1.1.5.137|65|0 -1.3.6.1.2.1.31.1.1.1.5.138|65|0 -1.3.6.1.2.1.31.1.1.1.5.139|65|0 -1.3.6.1.2.1.31.1.1.1.5.140|65|0 1.3.6.1.2.1.31.1.1.1.5.141|65|0 1.3.6.1.2.1.31.1.1.1.5.142|65|0 1.3.6.1.2.1.31.1.1.1.5.143|65|0 @@ -18661,11 +3259,36 @@ 1.3.6.1.2.1.31.1.1.1.5.156|65|0 1.3.6.1.2.1.31.1.1.1.5.157|65|0 1.3.6.1.2.1.31.1.1.1.5.158|65|0 -1.3.6.1.2.1.31.1.1.1.5.159|65|0 1.3.6.1.2.1.31.1.1.1.5.160|65|0 1.3.6.1.2.1.31.1.1.1.5.161|65|0 1.3.6.1.2.1.31.1.1.1.5.162|65|0 -1.3.6.1.2.1.31.1.1.1.6.1|70|541306671159 +1.3.6.1.2.1.31.1.1.1.5.163|65|0 +1.3.6.1.2.1.31.1.1.1.5.164|65|0 +1.3.6.1.2.1.31.1.1.1.5.165|65|0 +1.3.6.1.2.1.31.1.1.1.5.166|65|0 +1.3.6.1.2.1.31.1.1.1.5.167|65|0 +1.3.6.1.2.1.31.1.1.1.5.168|65|0 +1.3.6.1.2.1.31.1.1.1.5.169|65|0 +1.3.6.1.2.1.31.1.1.1.5.170|65|0 +1.3.6.1.2.1.31.1.1.1.5.172|65|0 +1.3.6.1.2.1.31.1.1.1.5.173|65|0 +1.3.6.1.2.1.31.1.1.1.5.174|65|0 +1.3.6.1.2.1.31.1.1.1.5.175|65|0 +1.3.6.1.2.1.31.1.1.1.5.176|65|0 +1.3.6.1.2.1.31.1.1.1.5.177|65|0 +1.3.6.1.2.1.31.1.1.1.5.178|65|0 +1.3.6.1.2.1.31.1.1.1.5.179|65|0 +1.3.6.1.2.1.31.1.1.1.5.180|65|0 +1.3.6.1.2.1.31.1.1.1.5.181|65|0 +1.3.6.1.2.1.31.1.1.1.5.182|65|0 +1.3.6.1.2.1.31.1.1.1.5.183|65|0 +1.3.6.1.2.1.31.1.1.1.5.184|65|0 +1.3.6.1.2.1.31.1.1.1.5.185|65|0 +1.3.6.1.2.1.31.1.1.1.5.186|65|0 +1.3.6.1.2.1.31.1.1.1.5.187|65|0 +1.3.6.1.2.1.31.1.1.1.5.188|65|0 +1.3.6.1.2.1.31.1.1.1.5.189|65|0 +1.3.6.1.2.1.31.1.1.1.6.1|70|121099477 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|0 1.3.6.1.2.1.31.1.1.1.6.4|70|0 @@ -18681,8 +3304,8 @@ 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|311886725013 -1.3.6.1.2.1.31.1.1.1.6.18|70|305674583796 +1.3.6.1.2.1.31.1.1.1.6.17|70|3236388364564 +1.3.6.1.2.1.31.1.1.1.6.18|70|5882130436 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 @@ -18699,135 +3322,157 @@ 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|1735682150320059 -1.3.6.1.2.1.31.1.1.1.6.36|70|1314510466931934 -1.3.6.1.2.1.31.1.1.1.6.37|70|134021948425924 -1.3.6.1.2.1.31.1.1.1.6.38|70|4780579036 +1.3.6.1.2.1.31.1.1.1.6.35|70|15258228306 +1.3.6.1.2.1.31.1.1.1.6.36|70|28023884818 +1.3.6.1.2.1.31.1.1.1.6.37|70|139444932 +1.3.6.1.2.1.31.1.1.1.6.38|70|138494789 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|0 -1.3.6.1.2.1.31.1.1.1.6.43|70|17642844464 +1.3.6.1.2.1.31.1.1.1.6.43|70|421861813 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|131240771478750 -1.3.6.1.2.1.31.1.1.1.6.46|70|232384313169266 +1.3.6.1.2.1.31.1.1.1.6.45|70|354 +1.3.6.1.2.1.31.1.1.1.6.46|70|120 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|3050192617251993 -1.3.6.1.2.1.31.1.1.1.6.50|70|4691850769325 -1.3.6.1.2.1.31.1.1.1.6.51|70|912741210894006 -1.3.6.1.2.1.31.1.1.1.6.52|70|0 -1.3.6.1.2.1.31.1.1.1.6.53|70|205010359887 -1.3.6.1.2.1.31.1.1.1.6.54|70|1358714485080 -1.3.6.1.2.1.31.1.1.1.6.55|70|98200312998 +1.3.6.1.2.1.31.1.1.1.6.49|70|43282113124 +1.3.6.1.2.1.31.1.1.1.6.50|70|48808 +1.3.6.1.2.1.31.1.1.1.6.51|70|8044180 +1.3.6.1.2.1.31.1.1.1.6.52|70|123560 +1.3.6.1.2.1.31.1.1.1.6.53|70|322195134 +1.3.6.1.2.1.31.1.1.1.6.54|70|3313702624 +1.3.6.1.2.1.31.1.1.1.6.55|70|5311879 1.3.6.1.2.1.31.1.1.1.6.56|70|0 -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|1391888180203 -1.3.6.1.2.1.31.1.1.1.6.59|70|13414316583330 -1.3.6.1.2.1.31.1.1.1.6.60|70|156095488628 +1.3.6.1.2.1.31.1.1.1.6.57|70|110195747 +1.3.6.1.2.1.31.1.1.1.6.58|70|165982 +1.3.6.1.2.1.31.1.1.1.6.59|70|1862310887 +1.3.6.1.2.1.31.1.1.1.6.60|70|0 1.3.6.1.2.1.31.1.1.1.6.61|70|0 -1.3.6.1.2.1.31.1.1.1.6.62|70|84136276307 -1.3.6.1.2.1.31.1.1.1.6.63|70|0 -1.3.6.1.2.1.31.1.1.1.6.64|70|19146779617536 -1.3.6.1.2.1.31.1.1.1.6.65|70|172337016895 -1.3.6.1.2.1.31.1.1.1.6.66|70|484123392325983 -1.3.6.1.2.1.31.1.1.1.6.67|70|70590902862 -1.3.6.1.2.1.31.1.1.1.6.68|70|1275989157894 -1.3.6.1.2.1.31.1.1.1.6.69|70|198321540378700 -1.3.6.1.2.1.31.1.1.1.6.70|70|0 -1.3.6.1.2.1.31.1.1.1.6.71|70|9443303961 -1.3.6.1.2.1.31.1.1.1.6.72|70|56665960 -1.3.6.1.2.1.31.1.1.1.6.73|70|95633057463 -1.3.6.1.2.1.31.1.1.1.6.74|70|22255398661980 -1.3.6.1.2.1.31.1.1.1.6.75|70|15816 -1.3.6.1.2.1.31.1.1.1.6.76|70|12805673 -1.3.6.1.2.1.31.1.1.1.6.77|70|2673426660030 -1.3.6.1.2.1.31.1.1.1.6.78|70|18374688040215 -1.3.6.1.2.1.31.1.1.1.6.79|70|46524943421 -1.3.6.1.2.1.31.1.1.1.6.80|70|199932647771078 -1.3.6.1.2.1.31.1.1.1.6.81|70|82707810282754 -1.3.6.1.2.1.31.1.1.1.6.82|70|15915439034 -1.3.6.1.2.1.31.1.1.1.6.83|70|18446612147344492552 -1.3.6.1.2.1.31.1.1.1.6.84|70|48389493701187 -1.3.6.1.2.1.31.1.1.1.6.85|70|130984285537050 -1.3.6.1.2.1.31.1.1.1.6.86|70|231971205782703 -1.3.6.1.2.1.31.1.1.1.6.87|70|67523358901142 -1.3.6.1.2.1.31.1.1.1.6.88|70|38037190928 -1.3.6.1.2.1.31.1.1.1.6.89|70|0 -1.3.6.1.2.1.31.1.1.1.6.90|70|598575661939114 -1.3.6.1.2.1.31.1.1.1.6.91|70|36253768660636 -1.3.6.1.2.1.31.1.1.1.6.92|70|0 -1.3.6.1.2.1.31.1.1.1.6.93|70|91371998602 -1.3.6.1.2.1.31.1.1.1.6.94|70|912606899161 -1.3.6.1.2.1.31.1.1.1.6.95|70|1004880641207 -1.3.6.1.2.1.31.1.1.1.6.96|70|6589549830332 -1.3.6.1.2.1.31.1.1.1.6.97|70|11462466123 -1.3.6.1.2.1.31.1.1.1.6.98|70|1067443580 -1.3.6.1.2.1.31.1.1.1.6.99|70|39687528 -1.3.6.1.2.1.31.1.1.1.6.100|70|18964537770 -1.3.6.1.2.1.31.1.1.1.6.101|70|291799064063 -1.3.6.1.2.1.31.1.1.1.6.102|70|29259234626 -1.3.6.1.2.1.31.1.1.1.6.103|70|125836313825911 -1.3.6.1.2.1.31.1.1.1.6.104|70|10696251039543 +1.3.6.1.2.1.31.1.1.1.6.62|70|24472620 +1.3.6.1.2.1.31.1.1.1.6.63|70|26005586 +1.3.6.1.2.1.31.1.1.1.6.64|70|39318240 +1.3.6.1.2.1.31.1.1.1.6.65|70|224117010 +1.3.6.1.2.1.31.1.1.1.6.66|70|35252015 +1.3.6.1.2.1.31.1.1.1.6.67|70|81997043 +1.3.6.1.2.1.31.1.1.1.6.68|70|263309603 +1.3.6.1.2.1.31.1.1.1.6.69|70|158029940 +1.3.6.1.2.1.31.1.1.1.6.70|70|291796 +1.3.6.1.2.1.31.1.1.1.6.71|70|1158976616 +1.3.6.1.2.1.31.1.1.1.6.72|70|26395348 +1.3.6.1.2.1.31.1.1.1.6.73|70|149536523 +1.3.6.1.2.1.31.1.1.1.6.74|70|33731141 +1.3.6.1.2.1.31.1.1.1.6.75|70|15824501 +1.3.6.1.2.1.31.1.1.1.6.76|70|17163602 +1.3.6.1.2.1.31.1.1.1.6.77|70|42941533 +1.3.6.1.2.1.31.1.1.1.6.78|70|1452080 +1.3.6.1.2.1.31.1.1.1.6.79|70|180548223 +1.3.6.1.2.1.31.1.1.1.6.80|70|0 +1.3.6.1.2.1.31.1.1.1.6.81|70|23004252 +1.3.6.1.2.1.31.1.1.1.6.82|70|9978575 +1.3.6.1.2.1.31.1.1.1.6.83|70|0 +1.3.6.1.2.1.31.1.1.1.6.84|70|12706701 +1.3.6.1.2.1.31.1.1.1.6.85|70|0 +1.3.6.1.2.1.31.1.1.1.6.86|70|0 +1.3.6.1.2.1.31.1.1.1.6.87|70|17579956 +1.3.6.1.2.1.31.1.1.1.6.88|70|322577642 +1.3.6.1.2.1.31.1.1.1.6.89|70|33748 +1.3.6.1.2.1.31.1.1.1.6.90|70|731531990 +1.3.6.1.2.1.31.1.1.1.6.91|70|2009539731 +1.3.6.1.2.1.31.1.1.1.6.92|70|340 +1.3.6.1.2.1.31.1.1.1.6.93|70|100411126 +1.3.6.1.2.1.31.1.1.1.6.94|70|2196793500 +1.3.6.1.2.1.31.1.1.1.6.95|70|297502469 +1.3.6.1.2.1.31.1.1.1.6.96|70|2651916 +1.3.6.1.2.1.31.1.1.1.6.97|70|238226 +1.3.6.1.2.1.31.1.1.1.6.98|70|16967022 +1.3.6.1.2.1.31.1.1.1.6.99|70|0 +1.3.6.1.2.1.31.1.1.1.6.100|70|899287786 +1.3.6.1.2.1.31.1.1.1.6.101|70|19395600 +1.3.6.1.2.1.31.1.1.1.6.102|70|7453549 +1.3.6.1.2.1.31.1.1.1.6.103|70|794350904 +1.3.6.1.2.1.31.1.1.1.6.104|70|0 1.3.6.1.2.1.31.1.1.1.6.105|70|0 -1.3.6.1.2.1.31.1.1.1.6.106|70|2624041305 -1.3.6.1.2.1.31.1.1.1.6.107|70|18446612147357702152 -1.3.6.1.2.1.31.1.1.1.6.108|70|1379520744559 -1.3.6.1.2.1.31.1.1.1.6.109|70|0 -1.3.6.1.2.1.31.1.1.1.6.110|70|0 -1.3.6.1.2.1.31.1.1.1.6.111|70|0 -1.3.6.1.2.1.31.1.1.1.6.112|70|0 -1.3.6.1.2.1.31.1.1.1.6.113|70|1528940558861 -1.3.6.1.2.1.31.1.1.1.6.114|70|18446612147348428808 -1.3.6.1.2.1.31.1.1.1.6.115|70|22730533685 -1.3.6.1.2.1.31.1.1.1.6.116|70|1333318743624 -1.3.6.1.2.1.31.1.1.1.6.117|70|18446612147350525960 -1.3.6.1.2.1.31.1.1.1.6.118|70|485315783496 -1.3.6.1.2.1.31.1.1.1.6.119|70|1717393233571 -1.3.6.1.2.1.31.1.1.1.6.120|70|294974832919 -1.3.6.1.2.1.31.1.1.1.6.121|70|343506402592 -1.3.6.1.2.1.31.1.1.1.6.122|70|796 -1.3.6.1.2.1.31.1.1.1.6.123|70|0 -1.3.6.1.2.1.31.1.1.1.6.124|70|253591955543 -1.3.6.1.2.1.31.1.1.1.6.125|70|4896519408066 -1.3.6.1.2.1.31.1.1.1.6.126|70|794555710446 -1.3.6.1.2.1.31.1.1.1.6.127|70|45180793 -1.3.6.1.2.1.31.1.1.1.6.128|70|45143781 -1.3.6.1.2.1.31.1.1.1.6.129|70|6363979782058 -1.3.6.1.2.1.31.1.1.1.6.130|70|18499982643571 -1.3.6.1.2.1.31.1.1.1.6.131|70|806700 -1.3.6.1.2.1.31.1.1.1.6.132|70|8267216257599 -1.3.6.1.2.1.31.1.1.1.6.133|70|61201613482915 -1.3.6.1.2.1.31.1.1.1.6.134|70|10851468177177 -1.3.6.1.2.1.31.1.1.1.6.135|70|75582374376 -1.3.6.1.2.1.31.1.1.1.6.136|70|358415398790 -1.3.6.1.2.1.31.1.1.1.6.137|70|19261949748 -1.3.6.1.2.1.31.1.1.1.6.138|70|410778304843 -1.3.6.1.2.1.31.1.1.1.6.139|70|18446612147538835464 -1.3.6.1.2.1.31.1.1.1.6.140|70|18446744072100656464 -1.3.6.1.2.1.31.1.1.1.6.141|70|0 -1.3.6.1.2.1.31.1.1.1.6.142|70|1221204866 -1.3.6.1.2.1.31.1.1.1.6.143|70|0 -1.3.6.1.2.1.31.1.1.1.6.144|70|15576173824 -1.3.6.1.2.1.31.1.1.1.6.145|70|81927829 -1.3.6.1.2.1.31.1.1.1.6.146|70|2792356591 -1.3.6.1.2.1.31.1.1.1.6.147|70|3423370 -1.3.6.1.2.1.31.1.1.1.6.148|70|1066 -1.3.6.1.2.1.31.1.1.1.6.149|70|1792052132085 -1.3.6.1.2.1.31.1.1.1.6.150|70|39796958835460 -1.3.6.1.2.1.31.1.1.1.6.151|70|591005276 +1.3.6.1.2.1.31.1.1.1.6.106|70|0 +1.3.6.1.2.1.31.1.1.1.6.107|70|0 +1.3.6.1.2.1.31.1.1.1.6.108|70|19451700 +1.3.6.1.2.1.31.1.1.1.6.109|70|291796 +1.3.6.1.2.1.31.1.1.1.6.110|70|291796 +1.3.6.1.2.1.31.1.1.1.6.111|70|291796 +1.3.6.1.2.1.31.1.1.1.6.112|70|291796 +1.3.6.1.2.1.31.1.1.1.6.113|70|3291643 +1.3.6.1.2.1.31.1.1.1.6.114|70|0 +1.3.6.1.2.1.31.1.1.1.6.115|70|6855491 +1.3.6.1.2.1.31.1.1.1.6.116|70|1271263151 +1.3.6.1.2.1.31.1.1.1.6.117|70|0 +1.3.6.1.2.1.31.1.1.1.6.118|70|158360524 +1.3.6.1.2.1.31.1.1.1.6.119|70|322254 +1.3.6.1.2.1.31.1.1.1.6.120|70|4558380 +1.3.6.1.2.1.31.1.1.1.6.121|70|21263 +1.3.6.1.2.1.31.1.1.1.6.122|70|2724045937 +1.3.6.1.2.1.31.1.1.1.6.123|70|13590050252 +1.3.6.1.2.1.31.1.1.1.6.124|70|16969687 +1.3.6.1.2.1.31.1.1.1.6.125|70|19451768 +1.3.6.1.2.1.31.1.1.1.6.126|70|5227243097 +1.3.6.1.2.1.31.1.1.1.6.127|70|0 +1.3.6.1.2.1.31.1.1.1.6.128|70|85102 +1.3.6.1.2.1.31.1.1.1.6.129|70|19450204 +1.3.6.1.2.1.31.1.1.1.6.130|70|19427288 +1.3.6.1.2.1.31.1.1.1.6.131|70|19556804 +1.3.6.1.2.1.31.1.1.1.6.132|70|19552398 +1.3.6.1.2.1.31.1.1.1.6.133|70|19452264 +1.3.6.1.2.1.31.1.1.1.6.134|70|20590189 +1.3.6.1.2.1.31.1.1.1.6.135|70|19461334 +1.3.6.1.2.1.31.1.1.1.6.136|70|216261275 +1.3.6.1.2.1.31.1.1.1.6.137|70|6884504 +1.3.6.1.2.1.31.1.1.1.6.141|70|340 +1.3.6.1.2.1.31.1.1.1.6.142|70|340 +1.3.6.1.2.1.31.1.1.1.6.143|70|340 +1.3.6.1.2.1.31.1.1.1.6.144|70|0 +1.3.6.1.2.1.31.1.1.1.6.145|70|0 +1.3.6.1.2.1.31.1.1.1.6.146|70|45046999 +1.3.6.1.2.1.31.1.1.1.6.147|70|19554832 +1.3.6.1.2.1.31.1.1.1.6.148|70|0 +1.3.6.1.2.1.31.1.1.1.6.149|70|9504662 +1.3.6.1.2.1.31.1.1.1.6.150|70|1412781 +1.3.6.1.2.1.31.1.1.1.6.151|70|17024 1.3.6.1.2.1.31.1.1.1.6.152|70|0 -1.3.6.1.2.1.31.1.1.1.6.153|70|0 -1.3.6.1.2.1.31.1.1.1.6.154|70|231670653 -1.3.6.1.2.1.31.1.1.1.6.155|70|12224252193880 -1.3.6.1.2.1.31.1.1.1.6.156|70|25259254273 -1.3.6.1.2.1.31.1.1.1.6.157|70|725897973 -1.3.6.1.2.1.31.1.1.1.6.158|70|3817396935 -1.3.6.1.2.1.31.1.1.1.6.159|70|43671958 -1.3.6.1.2.1.31.1.1.1.6.160|70|313906727 -1.3.6.1.2.1.31.1.1.1.6.161|70|41713599373 -1.3.6.1.2.1.31.1.1.1.6.162|70|85635832963 -1.3.6.1.2.1.31.1.1.1.7.1|70|3021661946 +1.3.6.1.2.1.31.1.1.1.6.153|70|16968312 +1.3.6.1.2.1.31.1.1.1.6.154|70|0 +1.3.6.1.2.1.31.1.1.1.6.155|70|332068 +1.3.6.1.2.1.31.1.1.1.6.156|70|114446516 +1.3.6.1.2.1.31.1.1.1.6.157|70|102833539 +1.3.6.1.2.1.31.1.1.1.6.158|70|130876 +1.3.6.1.2.1.31.1.1.1.6.160|70|340 +1.3.6.1.2.1.31.1.1.1.6.161|70|105872 +1.3.6.1.2.1.31.1.1.1.6.162|70|245716 +1.3.6.1.2.1.31.1.1.1.6.163|70|340 +1.3.6.1.2.1.31.1.1.1.6.164|70|48644 +1.3.6.1.2.1.31.1.1.1.6.165|70|6489095 +1.3.6.1.2.1.31.1.1.1.6.166|70|904613 +1.3.6.1.2.1.31.1.1.1.6.167|70|207527829 +1.3.6.1.2.1.31.1.1.1.6.168|70|1529754 +1.3.6.1.2.1.31.1.1.1.6.169|70|51204 +1.3.6.1.2.1.31.1.1.1.6.170|70|28650 +1.3.6.1.2.1.31.1.1.1.6.172|70|1755660 +1.3.6.1.2.1.31.1.1.1.6.173|70|340 +1.3.6.1.2.1.31.1.1.1.6.174|70|92474073 +1.3.6.1.2.1.31.1.1.1.6.175|70|122056 +1.3.6.1.2.1.31.1.1.1.6.176|70|0 +1.3.6.1.2.1.31.1.1.1.6.177|70|0 +1.3.6.1.2.1.31.1.1.1.6.178|70|0 +1.3.6.1.2.1.31.1.1.1.6.179|70|0 +1.3.6.1.2.1.31.1.1.1.6.180|70|4399566 +1.3.6.1.2.1.31.1.1.1.6.181|70|5019964 +1.3.6.1.2.1.31.1.1.1.6.182|70|17238955 +1.3.6.1.2.1.31.1.1.1.6.183|70|16982609 +1.3.6.1.2.1.31.1.1.1.6.184|70|645408512 +1.3.6.1.2.1.31.1.1.1.6.185|70|7799236 +1.3.6.1.2.1.31.1.1.1.6.186|70|611417 +1.3.6.1.2.1.31.1.1.1.6.187|70|1602814980 +1.3.6.1.2.1.31.1.1.1.6.188|70|918359659 +1.3.6.1.2.1.31.1.1.1.6.189|70|2441931 +1.3.6.1.2.1.31.1.1.1.7.1|70|1659052 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|0 1.3.6.1.2.1.31.1.1.1.7.4|70|0 @@ -18843,8 +3488,8 @@ 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|1832207260 -1.3.6.1.2.1.31.1.1.1.7.18|70|1788553393 +1.3.6.1.2.1.31.1.1.1.7.17|70|17550487554 +1.3.6.1.2.1.31.1.1.1.7.18|70|13804311 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 @@ -18861,135 +3506,157 @@ 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|1831900405183 -1.3.6.1.2.1.31.1.1.1.7.36|70|1512102281401 -1.3.6.1.2.1.31.1.1.1.7.37|70|223398870195 -1.3.6.1.2.1.31.1.1.1.7.38|70|27107725 +1.3.6.1.2.1.31.1.1.1.7.35|70|123449730 +1.3.6.1.2.1.31.1.1.1.7.36|70|163067620 +1.3.6.1.2.1.31.1.1.1.7.37|70|1635516 +1.3.6.1.2.1.31.1.1.1.7.38|70|1624954 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|103590945 +1.3.6.1.2.1.31.1.1.1.7.43|70|3052929 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|157601303279 -1.3.6.1.2.1.31.1.1.1.7.46|70|211719419038 +1.3.6.1.2.1.31.1.1.1.7.45|70|7 +1.3.6.1.2.1.31.1.1.1.7.46|70|5 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|3344002686584 -1.3.6.1.2.1.31.1.1.1.7.50|70|3482391494 -1.3.6.1.2.1.31.1.1.1.7.51|70|1277686503538 -1.3.6.1.2.1.31.1.1.1.7.52|70|0 -1.3.6.1.2.1.31.1.1.1.7.53|70|1385610857 -1.3.6.1.2.1.31.1.1.1.7.54|70|1405983785 -1.3.6.1.2.1.31.1.1.1.7.55|70|565496623 +1.3.6.1.2.1.31.1.1.1.7.49|70|286517350 +1.3.6.1.2.1.31.1.1.1.7.50|70|757 +1.3.6.1.2.1.31.1.1.1.7.51|70|125690 +1.3.6.1.2.1.31.1.1.1.7.52|70|1819 +1.3.6.1.2.1.31.1.1.1.7.53|70|4026538 +1.3.6.1.2.1.31.1.1.1.7.54|70|29057196 +1.3.6.1.2.1.31.1.1.1.7.55|70|66573 1.3.6.1.2.1.31.1.1.1.7.56|70|0 -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|3853885523 -1.3.6.1.2.1.31.1.1.1.7.59|70|9453077761 -1.3.6.1.2.1.31.1.1.1.7.60|70|644685546 +1.3.6.1.2.1.31.1.1.1.7.57|70|1487692 +1.3.6.1.2.1.31.1.1.1.7.58|70|1665 +1.3.6.1.2.1.31.1.1.1.7.59|70|12816088 +1.3.6.1.2.1.31.1.1.1.7.60|70|0 1.3.6.1.2.1.31.1.1.1.7.61|70|0 -1.3.6.1.2.1.31.1.1.1.7.62|70|580298861 -1.3.6.1.2.1.31.1.1.1.7.63|70|0 -1.3.6.1.2.1.31.1.1.1.7.64|70|19413129150 -1.3.6.1.2.1.31.1.1.1.7.65|70|1419974477 -1.3.6.1.2.1.31.1.1.1.7.66|70|321199416703 -1.3.6.1.2.1.31.1.1.1.7.67|70|215657387 -1.3.6.1.2.1.31.1.1.1.7.68|70|1129846225 -1.3.6.1.2.1.31.1.1.1.7.69|70|140255839927 -1.3.6.1.2.1.31.1.1.1.7.70|70|0 -1.3.6.1.2.1.31.1.1.1.7.71|70|65396921 -1.3.6.1.2.1.31.1.1.1.7.72|70|137671 -1.3.6.1.2.1.31.1.1.1.7.73|70|135389092 -1.3.6.1.2.1.31.1.1.1.7.74|70|36986834097 -1.3.6.1.2.1.31.1.1.1.7.75|70|237 -1.3.6.1.2.1.31.1.1.1.7.76|70|45060 -1.3.6.1.2.1.31.1.1.1.7.77|70|2770214345 -1.3.6.1.2.1.31.1.1.1.7.78|70|12853618335 -1.3.6.1.2.1.31.1.1.1.7.79|70|55089357 -1.3.6.1.2.1.31.1.1.1.7.80|70|156741714838 -1.3.6.1.2.1.31.1.1.1.7.81|70|55246628200 -1.3.6.1.2.1.31.1.1.1.7.82|70|17840100 -1.3.6.1.2.1.31.1.1.1.7.83|70|18446612147350523904 -1.3.6.1.2.1.31.1.1.1.7.84|70|32297524697 -1.3.6.1.2.1.31.1.1.1.7.85|70|157151117112 -1.3.6.1.2.1.31.1.1.1.7.86|70|211273192106 -1.3.6.1.2.1.31.1.1.1.7.87|70|45162395788 -1.3.6.1.2.1.31.1.1.1.7.88|70|141410111 -1.3.6.1.2.1.31.1.1.1.7.89|70|0 -1.3.6.1.2.1.31.1.1.1.7.90|70|745682106622 -1.3.6.1.2.1.31.1.1.1.7.91|70|95954419006 -1.3.6.1.2.1.31.1.1.1.7.92|70|0 -1.3.6.1.2.1.31.1.1.1.7.93|70|258290786 -1.3.6.1.2.1.31.1.1.1.7.94|70|1783539180 -1.3.6.1.2.1.31.1.1.1.7.95|70|1413861984 -1.3.6.1.2.1.31.1.1.1.7.96|70|13106717546 -1.3.6.1.2.1.31.1.1.1.7.97|70|69566796 -1.3.6.1.2.1.31.1.1.1.7.98|70|10899756 -1.3.6.1.2.1.31.1.1.1.7.99|70|288433 -1.3.6.1.2.1.31.1.1.1.7.100|70|93431967 -1.3.6.1.2.1.31.1.1.1.7.101|70|252495220 -1.3.6.1.2.1.31.1.1.1.7.102|70|39256551 -1.3.6.1.2.1.31.1.1.1.7.103|70|144473569043 -1.3.6.1.2.1.31.1.1.1.7.104|70|10465530925 +1.3.6.1.2.1.31.1.1.1.7.62|70|289979 +1.3.6.1.2.1.31.1.1.1.7.63|70|215440 +1.3.6.1.2.1.31.1.1.1.7.64|70|363291 +1.3.6.1.2.1.31.1.1.1.7.65|70|2297389 +1.3.6.1.2.1.31.1.1.1.7.66|70|189135 +1.3.6.1.2.1.31.1.1.1.7.67|70|772351 +1.3.6.1.2.1.31.1.1.1.7.68|70|3840439 +1.3.6.1.2.1.31.1.1.1.7.69|70|2324020 +1.3.6.1.2.1.31.1.1.1.7.70|70|4559 +1.3.6.1.2.1.31.1.1.1.7.71|70|11422535 +1.3.6.1.2.1.31.1.1.1.7.72|70|135576 +1.3.6.1.2.1.31.1.1.1.7.73|70|1088034 +1.3.6.1.2.1.31.1.1.1.7.74|70|325276 +1.3.6.1.2.1.31.1.1.1.7.75|70|218579 +1.3.6.1.2.1.31.1.1.1.7.76|70|200356 +1.3.6.1.2.1.31.1.1.1.7.77|70|391083 +1.3.6.1.2.1.31.1.1.1.7.78|70|4860 +1.3.6.1.2.1.31.1.1.1.7.79|70|616582 +1.3.6.1.2.1.31.1.1.1.7.80|70|0 +1.3.6.1.2.1.31.1.1.1.7.81|70|238535 +1.3.6.1.2.1.31.1.1.1.7.82|70|75331 +1.3.6.1.2.1.31.1.1.1.7.83|70|0 +1.3.6.1.2.1.31.1.1.1.7.84|70|107273 +1.3.6.1.2.1.31.1.1.1.7.85|70|0 +1.3.6.1.2.1.31.1.1.1.7.86|70|0 +1.3.6.1.2.1.31.1.1.1.7.87|70|206855 +1.3.6.1.2.1.31.1.1.1.7.88|70|5013834 +1.3.6.1.2.1.31.1.1.1.7.89|70|527 +1.3.6.1.2.1.31.1.1.1.7.90|70|4314045 +1.3.6.1.2.1.31.1.1.1.7.91|70|18037567 +1.3.6.1.2.1.31.1.1.1.7.92|70|5 +1.3.6.1.2.1.31.1.1.1.7.93|70|776554 +1.3.6.1.2.1.31.1.1.1.7.94|70|11434672 +1.3.6.1.2.1.31.1.1.1.7.95|70|2069105 +1.3.6.1.2.1.31.1.1.1.7.96|70|23187 +1.3.6.1.2.1.31.1.1.1.7.97|70|3561 +1.3.6.1.2.1.31.1.1.1.7.98|70|197292 +1.3.6.1.2.1.31.1.1.1.7.99|70|0 +1.3.6.1.2.1.31.1.1.1.7.100|70|1790347 +1.3.6.1.2.1.31.1.1.1.7.101|70|66601 +1.3.6.1.2.1.31.1.1.1.7.102|70|73447 +1.3.6.1.2.1.31.1.1.1.7.103|70|7717984 +1.3.6.1.2.1.31.1.1.1.7.104|70|0 1.3.6.1.2.1.31.1.1.1.7.105|70|0 -1.3.6.1.2.1.31.1.1.1.7.106|70|31326442 -1.3.6.1.2.1.31.1.1.1.7.107|70|18446612147344490496 -1.3.6.1.2.1.31.1.1.1.7.108|70|1714985208 -1.3.6.1.2.1.31.1.1.1.7.109|70|0 -1.3.6.1.2.1.31.1.1.1.7.110|70|0 -1.3.6.1.2.1.31.1.1.1.7.111|70|0 -1.3.6.1.2.1.31.1.1.1.7.112|70|0 -1.3.6.1.2.1.31.1.1.1.7.113|70|4310925900 -1.3.6.1.2.1.31.1.1.1.7.114|70|18446612147347775488 -1.3.6.1.2.1.31.1.1.1.7.115|70|59983118 -1.3.6.1.2.1.31.1.1.1.7.116|70|5319741962 -1.3.6.1.2.1.31.1.1.1.7.117|70|18446612147348426752 -1.3.6.1.2.1.31.1.1.1.7.118|70|1370349849 -1.3.6.1.2.1.31.1.1.1.7.119|70|1906359109 -1.3.6.1.2.1.31.1.1.1.7.120|70|1176244567 -1.3.6.1.2.1.31.1.1.1.7.121|70|263804096 -1.3.6.1.2.1.31.1.1.1.7.122|70|10 -1.3.6.1.2.1.31.1.1.1.7.123|70|0 -1.3.6.1.2.1.31.1.1.1.7.124|70|447463699 -1.3.6.1.2.1.31.1.1.1.7.125|70|13697651930 -1.3.6.1.2.1.31.1.1.1.7.126|70|4258378724 -1.3.6.1.2.1.31.1.1.1.7.127|70|683712 -1.3.6.1.2.1.31.1.1.1.7.128|70|683271 -1.3.6.1.2.1.31.1.1.1.7.129|70|6814913244 -1.3.6.1.2.1.31.1.1.1.7.130|70|16622189662 -1.3.6.1.2.1.31.1.1.1.7.131|70|12588 -1.3.6.1.2.1.31.1.1.1.7.132|70|9576689416 -1.3.6.1.2.1.31.1.1.1.7.133|70|69446581440 -1.3.6.1.2.1.31.1.1.1.7.134|70|8876363552 -1.3.6.1.2.1.31.1.1.1.7.135|70|197384918 -1.3.6.1.2.1.31.1.1.1.7.136|70|2308342445 -1.3.6.1.2.1.31.1.1.1.7.137|70|46276387 -1.3.6.1.2.1.31.1.1.1.7.138|70|443923749 -1.3.6.1.2.1.31.1.1.1.7.139|70|18446612147357700096 -1.3.6.1.2.1.31.1.1.1.7.140|70|18446612147538833408 -1.3.6.1.2.1.31.1.1.1.7.141|70|0 -1.3.6.1.2.1.31.1.1.1.7.142|70|1434228 -1.3.6.1.2.1.31.1.1.1.7.143|70|0 -1.3.6.1.2.1.31.1.1.1.7.144|70|60199952 -1.3.6.1.2.1.31.1.1.1.7.145|70|124645 -1.3.6.1.2.1.31.1.1.1.7.146|70|39735982 -1.3.6.1.2.1.31.1.1.1.7.147|70|24392 -1.3.6.1.2.1.31.1.1.1.7.148|70|13 -1.3.6.1.2.1.31.1.1.1.7.149|70|1290313235 -1.3.6.1.2.1.31.1.1.1.7.150|70|36683416703 -1.3.6.1.2.1.31.1.1.1.7.151|70|6504813 +1.3.6.1.2.1.31.1.1.1.7.106|70|0 +1.3.6.1.2.1.31.1.1.1.7.107|70|0 +1.3.6.1.2.1.31.1.1.1.7.108|70|67426 +1.3.6.1.2.1.31.1.1.1.7.109|70|4559 +1.3.6.1.2.1.31.1.1.1.7.110|70|4559 +1.3.6.1.2.1.31.1.1.1.7.111|70|4559 +1.3.6.1.2.1.31.1.1.1.7.112|70|4559 +1.3.6.1.2.1.31.1.1.1.7.113|70|16534 +1.3.6.1.2.1.31.1.1.1.7.114|70|0 +1.3.6.1.2.1.31.1.1.1.7.115|70|55275 +1.3.6.1.2.1.31.1.1.1.7.116|70|14741529 +1.3.6.1.2.1.31.1.1.1.7.117|70|0 +1.3.6.1.2.1.31.1.1.1.7.118|70|1490968 +1.3.6.1.2.1.31.1.1.1.7.119|70|4795 +1.3.6.1.2.1.31.1.1.1.7.120|70|47043 +1.3.6.1.2.1.31.1.1.1.7.121|70|226 +1.3.6.1.2.1.31.1.1.1.7.122|70|17380196 +1.3.6.1.2.1.31.1.1.1.7.123|70|37663826 +1.3.6.1.2.1.31.1.1.1.7.124|70|197329 +1.3.6.1.2.1.31.1.1.1.7.125|70|67427 +1.3.6.1.2.1.31.1.1.1.7.126|70|46745330 +1.3.6.1.2.1.31.1.1.1.7.127|70|0 +1.3.6.1.2.1.31.1.1.1.7.128|70|1255 +1.3.6.1.2.1.31.1.1.1.7.129|70|67404 +1.3.6.1.2.1.31.1.1.1.7.130|70|67067 +1.3.6.1.2.1.31.1.1.1.7.131|70|69068 +1.3.6.1.2.1.31.1.1.1.7.132|70|68993 +1.3.6.1.2.1.31.1.1.1.7.133|70|67433 +1.3.6.1.2.1.31.1.1.1.7.134|70|69645 +1.3.6.1.2.1.31.1.1.1.7.135|70|67557 +1.3.6.1.2.1.31.1.1.1.7.136|70|1344570 +1.3.6.1.2.1.31.1.1.1.7.137|70|94546 +1.3.6.1.2.1.31.1.1.1.7.141|70|5 +1.3.6.1.2.1.31.1.1.1.7.142|70|5 +1.3.6.1.2.1.31.1.1.1.7.143|70|5 +1.3.6.1.2.1.31.1.1.1.7.144|70|0 +1.3.6.1.2.1.31.1.1.1.7.145|70|0 +1.3.6.1.2.1.31.1.1.1.7.146|70|608291 +1.3.6.1.2.1.31.1.1.1.7.147|70|69038 +1.3.6.1.2.1.31.1.1.1.7.148|70|0 +1.3.6.1.2.1.31.1.1.1.7.149|70|77394 +1.3.6.1.2.1.31.1.1.1.7.150|70|8721 +1.3.6.1.2.1.31.1.1.1.7.151|70|264 1.3.6.1.2.1.31.1.1.1.7.152|70|0 -1.3.6.1.2.1.31.1.1.1.7.153|70|0 -1.3.6.1.2.1.31.1.1.1.7.154|70|192954 -1.3.6.1.2.1.31.1.1.1.7.155|70|15109075081 -1.3.6.1.2.1.31.1.1.1.7.156|70|74346407 -1.3.6.1.2.1.31.1.1.1.7.157|70|4456692 -1.3.6.1.2.1.31.1.1.1.7.158|70|19265017 -1.3.6.1.2.1.31.1.1.1.7.159|70|494654 -1.3.6.1.2.1.31.1.1.1.7.160|70|420303 -1.3.6.1.2.1.31.1.1.1.7.161|70|80159247 -1.3.6.1.2.1.31.1.1.1.7.162|70|82948672 -1.3.6.1.2.1.31.1.1.1.8.1|70|9307608 +1.3.6.1.2.1.31.1.1.1.7.153|70|197307 +1.3.6.1.2.1.31.1.1.1.7.154|70|0 +1.3.6.1.2.1.31.1.1.1.7.155|70|3611 +1.3.6.1.2.1.31.1.1.1.7.156|70|1228040 +1.3.6.1.2.1.31.1.1.1.7.157|70|566535 +1.3.6.1.2.1.31.1.1.1.7.158|70|1933 +1.3.6.1.2.1.31.1.1.1.7.160|70|5 +1.3.6.1.2.1.31.1.1.1.7.161|70|1545 +1.3.6.1.2.1.31.1.1.1.7.162|70|3616 +1.3.6.1.2.1.31.1.1.1.7.163|70|5 +1.3.6.1.2.1.31.1.1.1.7.164|70|719 +1.3.6.1.2.1.31.1.1.1.7.165|70|50493 +1.3.6.1.2.1.31.1.1.1.7.166|70|5751 +1.3.6.1.2.1.31.1.1.1.7.167|70|1978081 +1.3.6.1.2.1.31.1.1.1.7.168|70|7467 +1.3.6.1.2.1.31.1.1.1.7.169|70|753 +1.3.6.1.2.1.31.1.1.1.7.170|70|406 +1.3.6.1.2.1.31.1.1.1.7.172|70|25468 +1.3.6.1.2.1.31.1.1.1.7.173|70|5 +1.3.6.1.2.1.31.1.1.1.7.174|70|900999 +1.3.6.1.2.1.31.1.1.1.7.175|70|1795 +1.3.6.1.2.1.31.1.1.1.7.176|70|0 +1.3.6.1.2.1.31.1.1.1.7.177|70|0 +1.3.6.1.2.1.31.1.1.1.7.178|70|0 +1.3.6.1.2.1.31.1.1.1.7.179|70|0 +1.3.6.1.2.1.31.1.1.1.7.180|70|4433 +1.3.6.1.2.1.31.1.1.1.7.181|70|38062 +1.3.6.1.2.1.31.1.1.1.7.182|70|201523 +1.3.6.1.2.1.31.1.1.1.7.183|70|197507 +1.3.6.1.2.1.31.1.1.1.7.184|70|3108215 +1.3.6.1.2.1.31.1.1.1.7.185|70|120981 +1.3.6.1.2.1.31.1.1.1.7.186|70|8141 +1.3.6.1.2.1.31.1.1.1.7.187|70|15703462 +1.3.6.1.2.1.31.1.1.1.7.188|70|11081065 +1.3.6.1.2.1.31.1.1.1.7.189|70|28929 +1.3.6.1.2.1.31.1.1.1.8.1|70|1249123 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.4|70|0 @@ -19031,7 +3698,7 @@ 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|0 -1.3.6.1.2.1.31.1.1.1.8.43|70|15601790 +1.3.6.1.2.1.31.1.1.1.8.43|70|1054238 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 @@ -19126,9 +3793,6 @@ 1.3.6.1.2.1.31.1.1.1.8.135|70|0 1.3.6.1.2.1.31.1.1.1.8.136|70|0 1.3.6.1.2.1.31.1.1.1.8.137|70|0 -1.3.6.1.2.1.31.1.1.1.8.138|70|0 -1.3.6.1.2.1.31.1.1.1.8.139|70|0 -1.3.6.1.2.1.31.1.1.1.8.140|70|0 1.3.6.1.2.1.31.1.1.1.8.141|70|0 1.3.6.1.2.1.31.1.1.1.8.142|70|0 1.3.6.1.2.1.31.1.1.1.8.143|70|0 @@ -19147,10 +3811,35 @@ 1.3.6.1.2.1.31.1.1.1.8.156|70|0 1.3.6.1.2.1.31.1.1.1.8.157|70|0 1.3.6.1.2.1.31.1.1.1.8.158|70|0 -1.3.6.1.2.1.31.1.1.1.8.159|70|0 1.3.6.1.2.1.31.1.1.1.8.160|70|0 1.3.6.1.2.1.31.1.1.1.8.161|70|0 1.3.6.1.2.1.31.1.1.1.8.162|70|0 +1.3.6.1.2.1.31.1.1.1.8.163|70|0 +1.3.6.1.2.1.31.1.1.1.8.164|70|0 +1.3.6.1.2.1.31.1.1.1.8.165|70|0 +1.3.6.1.2.1.31.1.1.1.8.166|70|0 +1.3.6.1.2.1.31.1.1.1.8.167|70|0 +1.3.6.1.2.1.31.1.1.1.8.168|70|0 +1.3.6.1.2.1.31.1.1.1.8.169|70|0 +1.3.6.1.2.1.31.1.1.1.8.170|70|0 +1.3.6.1.2.1.31.1.1.1.8.172|70|0 +1.3.6.1.2.1.31.1.1.1.8.173|70|0 +1.3.6.1.2.1.31.1.1.1.8.174|70|0 +1.3.6.1.2.1.31.1.1.1.8.175|70|0 +1.3.6.1.2.1.31.1.1.1.8.176|70|0 +1.3.6.1.2.1.31.1.1.1.8.177|70|0 +1.3.6.1.2.1.31.1.1.1.8.178|70|0 +1.3.6.1.2.1.31.1.1.1.8.179|70|0 +1.3.6.1.2.1.31.1.1.1.8.180|70|0 +1.3.6.1.2.1.31.1.1.1.8.181|70|0 +1.3.6.1.2.1.31.1.1.1.8.182|70|0 +1.3.6.1.2.1.31.1.1.1.8.183|70|0 +1.3.6.1.2.1.31.1.1.1.8.184|70|0 +1.3.6.1.2.1.31.1.1.1.8.185|70|0 +1.3.6.1.2.1.31.1.1.1.8.186|70|0 +1.3.6.1.2.1.31.1.1.1.8.187|70|0 +1.3.6.1.2.1.31.1.1.1.8.188|70|0 +1.3.6.1.2.1.31.1.1.1.8.189|70|0 1.3.6.1.2.1.31.1.1.1.9.1|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|0 @@ -19288,9 +3977,6 @@ 1.3.6.1.2.1.31.1.1.1.9.135|70|0 1.3.6.1.2.1.31.1.1.1.9.136|70|0 1.3.6.1.2.1.31.1.1.1.9.137|70|0 -1.3.6.1.2.1.31.1.1.1.9.138|70|0 -1.3.6.1.2.1.31.1.1.1.9.139|70|0 -1.3.6.1.2.1.31.1.1.1.9.140|70|0 1.3.6.1.2.1.31.1.1.1.9.141|70|0 1.3.6.1.2.1.31.1.1.1.9.142|70|0 1.3.6.1.2.1.31.1.1.1.9.143|70|0 @@ -19309,11 +3995,36 @@ 1.3.6.1.2.1.31.1.1.1.9.156|70|0 1.3.6.1.2.1.31.1.1.1.9.157|70|0 1.3.6.1.2.1.31.1.1.1.9.158|70|0 -1.3.6.1.2.1.31.1.1.1.9.159|70|0 1.3.6.1.2.1.31.1.1.1.9.160|70|0 1.3.6.1.2.1.31.1.1.1.9.161|70|0 1.3.6.1.2.1.31.1.1.1.9.162|70|0 -1.3.6.1.2.1.31.1.1.1.10.1|70|742962781953 +1.3.6.1.2.1.31.1.1.1.9.163|70|0 +1.3.6.1.2.1.31.1.1.1.9.164|70|0 +1.3.6.1.2.1.31.1.1.1.9.165|70|0 +1.3.6.1.2.1.31.1.1.1.9.166|70|0 +1.3.6.1.2.1.31.1.1.1.9.167|70|0 +1.3.6.1.2.1.31.1.1.1.9.168|70|0 +1.3.6.1.2.1.31.1.1.1.9.169|70|0 +1.3.6.1.2.1.31.1.1.1.9.170|70|0 +1.3.6.1.2.1.31.1.1.1.9.172|70|0 +1.3.6.1.2.1.31.1.1.1.9.173|70|0 +1.3.6.1.2.1.31.1.1.1.9.174|70|0 +1.3.6.1.2.1.31.1.1.1.9.175|70|0 +1.3.6.1.2.1.31.1.1.1.9.176|70|0 +1.3.6.1.2.1.31.1.1.1.9.177|70|0 +1.3.6.1.2.1.31.1.1.1.9.178|70|0 +1.3.6.1.2.1.31.1.1.1.9.179|70|0 +1.3.6.1.2.1.31.1.1.1.9.180|70|0 +1.3.6.1.2.1.31.1.1.1.9.181|70|0 +1.3.6.1.2.1.31.1.1.1.9.182|70|0 +1.3.6.1.2.1.31.1.1.1.9.183|70|0 +1.3.6.1.2.1.31.1.1.1.9.184|70|0 +1.3.6.1.2.1.31.1.1.1.9.185|70|0 +1.3.6.1.2.1.31.1.1.1.9.186|70|0 +1.3.6.1.2.1.31.1.1.1.9.187|70|0 +1.3.6.1.2.1.31.1.1.1.9.188|70|0 +1.3.6.1.2.1.31.1.1.1.9.189|70|0 +1.3.6.1.2.1.31.1.1.1.10.1|70|10650042 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|0 1.3.6.1.2.1.31.1.1.1.10.4|70|0 @@ -19329,8 +4040,8 @@ 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|2343644387597 -1.3.6.1.2.1.31.1.1.1.10.18|70|2241311639887 +1.3.6.1.2.1.31.1.1.1.10.17|70|350661341757 +1.3.6.1.2.1.31.1.1.1.10.18|70|5954824277 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 @@ -19347,135 +4058,157 @@ 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|1708267939379979 -1.3.6.1.2.1.31.1.1.1.10.36|70|1340106316637250 -1.3.6.1.2.1.31.1.1.1.10.37|70|126772093646495 -1.3.6.1.2.1.31.1.1.1.10.38|70|3114258322 +1.3.6.1.2.1.31.1.1.1.10.35|70|45454446 +1.3.6.1.2.1.31.1.1.1.10.36|70|45460506 +1.3.6.1.2.1.31.1.1.1.10.37|70|128 +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|0 -1.3.6.1.2.1.31.1.1.1.10.43|70|307894459682 +1.3.6.1.2.1.31.1.1.1.10.43|70|2804446283 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|232384313169266 -1.3.6.1.2.1.31.1.1.1.10.46|70|131240771478750 +1.3.6.1.2.1.31.1.1.1.10.45|70|120 +1.3.6.1.2.1.31.1.1.1.10.46|70|354 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|3048374256017229 -1.3.6.1.2.1.31.1.1.1.10.50|70|5728934173 -1.3.6.1.2.1.31.1.1.1.10.51|70|1884087083484641 -1.3.6.1.2.1.31.1.1.1.10.52|70|204096 -1.3.6.1.2.1.31.1.1.1.10.53|70|887037436713 -1.3.6.1.2.1.31.1.1.1.10.54|70|88411889157 -1.3.6.1.2.1.31.1.1.1.10.55|70|104526860619 +1.3.6.1.2.1.31.1.1.1.10.49|70|90914952 +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.51|70|0 +1.3.6.1.2.1.31.1.1.1.10.52|70|0 +1.3.6.1.2.1.31.1.1.1.10.53|70|0 +1.3.6.1.2.1.31.1.1.1.10.54|70|0 +1.3.6.1.2.1.31.1.1.1.10.55|70|0 1.3.6.1.2.1.31.1.1.1.10.56|70|0 -1.3.6.1.2.1.31.1.1.1.10.57|70|1713960 -1.3.6.1.2.1.31.1.1.1.10.58|70|7518261634956 -1.3.6.1.2.1.31.1.1.1.10.59|70|1471221903960 -1.3.6.1.2.1.31.1.1.1.10.60|70|892981049318 -1.3.6.1.2.1.31.1.1.1.10.61|70|50784 -1.3.6.1.2.1.31.1.1.1.10.62|70|89807995688 -1.3.6.1.2.1.31.1.1.1.10.63|70|1784892 -1.3.6.1.2.1.31.1.1.1.10.64|70|23000323984989 -1.3.6.1.2.1.31.1.1.1.10.65|70|158762602270 -1.3.6.1.2.1.31.1.1.1.10.66|70|3411628769170 -1.3.6.1.2.1.31.1.1.1.10.67|70|776579518360 -1.3.6.1.2.1.31.1.1.1.10.68|70|387770326201 -1.3.6.1.2.1.31.1.1.1.10.69|70|13992986837223 -1.3.6.1.2.1.31.1.1.1.10.70|70|17319184 -1.3.6.1.2.1.31.1.1.1.10.71|70|15252555706 -1.3.6.1.2.1.31.1.1.1.10.72|70|122478829 -1.3.6.1.2.1.31.1.1.1.10.73|70|47709890917 -1.3.6.1.2.1.31.1.1.1.10.74|70|22197101211701 -1.3.6.1.2.1.31.1.1.1.10.75|70|980842 -1.3.6.1.2.1.31.1.1.1.10.76|70|2575701 -1.3.6.1.2.1.31.1.1.1.10.77|70|512975468277 -1.3.6.1.2.1.31.1.1.1.10.78|70|376592683875 -1.3.6.1.2.1.31.1.1.1.10.79|70|17812739132 -1.3.6.1.2.1.31.1.1.1.10.80|70|145302757334509 -1.3.6.1.2.1.31.1.1.1.10.81|70|1226346330682 -1.3.6.1.2.1.31.1.1.1.10.82|70|8868003304 -1.3.6.1.2.1.31.1.1.1.10.83|70|0 -1.3.6.1.2.1.31.1.1.1.10.84|70|892875230322 -1.3.6.1.2.1.31.1.1.1.10.85|70|231971205782703 -1.3.6.1.2.1.31.1.1.1.10.86|70|130984285537050 -1.3.6.1.2.1.31.1.1.1.10.87|70|1180550868974 -1.3.6.1.2.1.31.1.1.1.10.88|70|445728334893 -1.3.6.1.2.1.31.1.1.1.10.89|70|209760 -1.3.6.1.2.1.31.1.1.1.10.90|70|437555428803152 -1.3.6.1.2.1.31.1.1.1.10.91|70|16473308646508 -1.3.6.1.2.1.31.1.1.1.10.92|70|17728 -1.3.6.1.2.1.31.1.1.1.10.93|70|353552052753 -1.3.6.1.2.1.31.1.1.1.10.94|70|3086217519932 -1.3.6.1.2.1.31.1.1.1.10.95|70|97007378015 -1.3.6.1.2.1.31.1.1.1.10.96|70|16715501783143 -1.3.6.1.2.1.31.1.1.1.10.97|70|17525070543 -1.3.6.1.2.1.31.1.1.1.10.98|70|125048602 -1.3.6.1.2.1.31.1.1.1.10.99|70|190250457 -1.3.6.1.2.1.31.1.1.1.10.100|70|18472421482 -1.3.6.1.2.1.31.1.1.1.10.101|70|666594630466 -1.3.6.1.2.1.31.1.1.1.10.102|70|65314142090 -1.3.6.1.2.1.31.1.1.1.10.103|70|113215751881496 -1.3.6.1.2.1.31.1.1.1.10.104|70|11447232725346 +1.3.6.1.2.1.31.1.1.1.10.57|70|0 +1.3.6.1.2.1.31.1.1.1.10.58|70|0 +1.3.6.1.2.1.31.1.1.1.10.59|70|0 +1.3.6.1.2.1.31.1.1.1.10.60|70|0 +1.3.6.1.2.1.31.1.1.1.10.61|70|0 +1.3.6.1.2.1.31.1.1.1.10.62|70|0 +1.3.6.1.2.1.31.1.1.1.10.63|70|0 +1.3.6.1.2.1.31.1.1.1.10.64|70|0 +1.3.6.1.2.1.31.1.1.1.10.65|70|0 +1.3.6.1.2.1.31.1.1.1.10.66|70|0 +1.3.6.1.2.1.31.1.1.1.10.67|70|0 +1.3.6.1.2.1.31.1.1.1.10.68|70|0 +1.3.6.1.2.1.31.1.1.1.10.69|70|0 +1.3.6.1.2.1.31.1.1.1.10.70|70|0 +1.3.6.1.2.1.31.1.1.1.10.71|70|0 +1.3.6.1.2.1.31.1.1.1.10.72|70|0 +1.3.6.1.2.1.31.1.1.1.10.73|70|0 +1.3.6.1.2.1.31.1.1.1.10.74|70|0 +1.3.6.1.2.1.31.1.1.1.10.75|70|0 +1.3.6.1.2.1.31.1.1.1.10.76|70|0 +1.3.6.1.2.1.31.1.1.1.10.77|70|0 +1.3.6.1.2.1.31.1.1.1.10.78|70|0 +1.3.6.1.2.1.31.1.1.1.10.79|70|0 +1.3.6.1.2.1.31.1.1.1.10.80|70|0 +1.3.6.1.2.1.31.1.1.1.10.81|70|0 +1.3.6.1.2.1.31.1.1.1.10.82|70|0 +1.3.6.1.2.1.31.1.1.1.10.83|70|304 +1.3.6.1.2.1.31.1.1.1.10.84|70|0 +1.3.6.1.2.1.31.1.1.1.10.85|70|0 +1.3.6.1.2.1.31.1.1.1.10.86|70|0 +1.3.6.1.2.1.31.1.1.1.10.87|70|0 +1.3.6.1.2.1.31.1.1.1.10.88|70|0 +1.3.6.1.2.1.31.1.1.1.10.89|70|0 +1.3.6.1.2.1.31.1.1.1.10.90|70|0 +1.3.6.1.2.1.31.1.1.1.10.91|70|0 +1.3.6.1.2.1.31.1.1.1.10.92|70|0 +1.3.6.1.2.1.31.1.1.1.10.93|70|0 +1.3.6.1.2.1.31.1.1.1.10.94|70|1044 +1.3.6.1.2.1.31.1.1.1.10.95|70|0 +1.3.6.1.2.1.31.1.1.1.10.96|70|0 +1.3.6.1.2.1.31.1.1.1.10.97|70|0 +1.3.6.1.2.1.31.1.1.1.10.98|70|0 +1.3.6.1.2.1.31.1.1.1.10.99|70|0 +1.3.6.1.2.1.31.1.1.1.10.100|70|0 +1.3.6.1.2.1.31.1.1.1.10.101|70|0 +1.3.6.1.2.1.31.1.1.1.10.102|70|0 +1.3.6.1.2.1.31.1.1.1.10.103|70|58 +1.3.6.1.2.1.31.1.1.1.10.104|70|0 1.3.6.1.2.1.31.1.1.1.10.105|70|0 -1.3.6.1.2.1.31.1.1.1.10.106|70|7267397082 -1.3.6.1.2.1.31.1.1.1.10.107|70|0 -1.3.6.1.2.1.31.1.1.1.10.108|70|1966575661683 -1.3.6.1.2.1.31.1.1.1.10.109|70|1903020 -1.3.6.1.2.1.31.1.1.1.10.110|70|1903020 -1.3.6.1.2.1.31.1.1.1.10.111|70|1903020 -1.3.6.1.2.1.31.1.1.1.10.112|70|1903020 -1.3.6.1.2.1.31.1.1.1.10.113|70|783520718466 -1.3.6.1.2.1.31.1.1.1.10.114|70|0 -1.3.6.1.2.1.31.1.1.1.10.115|70|35689687710 -1.3.6.1.2.1.31.1.1.1.10.116|70|4268371580864 -1.3.6.1.2.1.31.1.1.1.10.117|70|0 -1.3.6.1.2.1.31.1.1.1.10.118|70|716123027654 -1.3.6.1.2.1.31.1.1.1.10.119|70|12918746894956 -1.3.6.1.2.1.31.1.1.1.10.120|70|194438542979 -1.3.6.1.2.1.31.1.1.1.10.121|70|77738142138 -1.3.6.1.2.1.31.1.1.1.10.122|70|130828624 +1.3.6.1.2.1.31.1.1.1.10.106|70|0 +1.3.6.1.2.1.31.1.1.1.10.107|70|304 +1.3.6.1.2.1.31.1.1.1.10.108|70|0 +1.3.6.1.2.1.31.1.1.1.10.109|70|0 +1.3.6.1.2.1.31.1.1.1.10.110|70|0 +1.3.6.1.2.1.31.1.1.1.10.111|70|0 +1.3.6.1.2.1.31.1.1.1.10.112|70|0 +1.3.6.1.2.1.31.1.1.1.10.113|70|0 +1.3.6.1.2.1.31.1.1.1.10.114|70|152 +1.3.6.1.2.1.31.1.1.1.10.115|70|0 +1.3.6.1.2.1.31.1.1.1.10.116|70|0 +1.3.6.1.2.1.31.1.1.1.10.117|70|152 +1.3.6.1.2.1.31.1.1.1.10.118|70|0 +1.3.6.1.2.1.31.1.1.1.10.119|70|0 +1.3.6.1.2.1.31.1.1.1.10.120|70|0 +1.3.6.1.2.1.31.1.1.1.10.121|70|0 +1.3.6.1.2.1.31.1.1.1.10.122|70|116 1.3.6.1.2.1.31.1.1.1.10.123|70|0 -1.3.6.1.2.1.31.1.1.1.10.124|70|410778304843 -1.3.6.1.2.1.31.1.1.1.10.125|70|60216025783015 -1.3.6.1.2.1.31.1.1.1.10.126|70|10404782174694 -1.3.6.1.2.1.31.1.1.1.10.127|70|44028895 -1.3.6.1.2.1.31.1.1.1.10.128|70|43856909 -1.3.6.1.2.1.31.1.1.1.10.129|70|9718135602234 -1.3.6.1.2.1.31.1.1.1.10.130|70|20293631498658 -1.3.6.1.2.1.31.1.1.1.10.131|70|346978360 -1.3.6.1.2.1.31.1.1.1.10.132|70|12522251821317 -1.3.6.1.2.1.31.1.1.1.10.133|70|106029511537448 -1.3.6.1.2.1.31.1.1.1.10.134|70|5877225535086 -1.3.6.1.2.1.31.1.1.1.10.135|70|292879033160 -1.3.6.1.2.1.31.1.1.1.10.136|70|1513967869810 -1.3.6.1.2.1.31.1.1.1.10.137|70|96236983175 -1.3.6.1.2.1.31.1.1.1.10.138|70|253591955543 -1.3.6.1.2.1.31.1.1.1.10.139|70|0 -1.3.6.1.2.1.31.1.1.1.10.140|70|0 -1.3.6.1.2.1.31.1.1.1.10.141|70|17960 -1.3.6.1.2.1.31.1.1.1.10.142|70|17960 -1.3.6.1.2.1.31.1.1.1.10.143|70|17960 -1.3.6.1.2.1.31.1.1.1.10.144|70|88975803507 +1.3.6.1.2.1.31.1.1.1.10.124|70|0 +1.3.6.1.2.1.31.1.1.1.10.125|70|0 +1.3.6.1.2.1.31.1.1.1.10.126|70|0 +1.3.6.1.2.1.31.1.1.1.10.127|70|0 +1.3.6.1.2.1.31.1.1.1.10.128|70|0 +1.3.6.1.2.1.31.1.1.1.10.129|70|0 +1.3.6.1.2.1.31.1.1.1.10.130|70|0 +1.3.6.1.2.1.31.1.1.1.10.131|70|0 +1.3.6.1.2.1.31.1.1.1.10.132|70|0 +1.3.6.1.2.1.31.1.1.1.10.133|70|348 +1.3.6.1.2.1.31.1.1.1.10.134|70|0 +1.3.6.1.2.1.31.1.1.1.10.135|70|0 +1.3.6.1.2.1.31.1.1.1.10.136|70|0 +1.3.6.1.2.1.31.1.1.1.10.137|70|0 +1.3.6.1.2.1.31.1.1.1.10.141|70|0 +1.3.6.1.2.1.31.1.1.1.10.142|70|0 +1.3.6.1.2.1.31.1.1.1.10.143|70|0 +1.3.6.1.2.1.31.1.1.1.10.144|70|0 1.3.6.1.2.1.31.1.1.1.10.145|70|0 1.3.6.1.2.1.31.1.1.1.10.146|70|0 -1.3.6.1.2.1.31.1.1.1.10.147|70|346975602 -1.3.6.1.2.1.31.1.1.1.10.148|70|124043848 -1.3.6.1.2.1.31.1.1.1.10.149|70|75533509080 -1.3.6.1.2.1.31.1.1.1.10.150|70|69244227030694 -1.3.6.1.2.1.31.1.1.1.10.151|70|578769972 +1.3.6.1.2.1.31.1.1.1.10.147|70|0 +1.3.6.1.2.1.31.1.1.1.10.148|70|0 +1.3.6.1.2.1.31.1.1.1.10.149|70|0 +1.3.6.1.2.1.31.1.1.1.10.150|70|0 +1.3.6.1.2.1.31.1.1.1.10.151|70|0 1.3.6.1.2.1.31.1.1.1.10.152|70|0 -1.3.6.1.2.1.31.1.1.1.10.153|70|18556 +1.3.6.1.2.1.31.1.1.1.10.153|70|0 1.3.6.1.2.1.31.1.1.1.10.154|70|0 -1.3.6.1.2.1.31.1.1.1.10.155|70|5727015268301 -1.3.6.1.2.1.31.1.1.1.10.156|70|40988180622 -1.3.6.1.2.1.31.1.1.1.10.157|70|286142628 -1.3.6.1.2.1.31.1.1.1.10.158|70|24171708565 -1.3.6.1.2.1.31.1.1.1.10.159|70|56327414 -1.3.6.1.2.1.31.1.1.1.10.160|70|39754475 -1.3.6.1.2.1.31.1.1.1.10.161|70|15605681048 -1.3.6.1.2.1.31.1.1.1.10.162|70|86475288243 -1.3.6.1.2.1.31.1.1.1.11.1|70|2592279717 +1.3.6.1.2.1.31.1.1.1.10.155|70|0 +1.3.6.1.2.1.31.1.1.1.10.156|70|0 +1.3.6.1.2.1.31.1.1.1.10.157|70|346 +1.3.6.1.2.1.31.1.1.1.10.158|70|0 +1.3.6.1.2.1.31.1.1.1.10.160|70|0 +1.3.6.1.2.1.31.1.1.1.10.161|70|0 +1.3.6.1.2.1.31.1.1.1.10.162|70|0 +1.3.6.1.2.1.31.1.1.1.10.163|70|0 +1.3.6.1.2.1.31.1.1.1.10.164|70|0 +1.3.6.1.2.1.31.1.1.1.10.165|70|0 +1.3.6.1.2.1.31.1.1.1.10.166|70|0 +1.3.6.1.2.1.31.1.1.1.10.167|70|0 +1.3.6.1.2.1.31.1.1.1.10.168|70|0 +1.3.6.1.2.1.31.1.1.1.10.169|70|0 +1.3.6.1.2.1.31.1.1.1.10.170|70|1102 +1.3.6.1.2.1.31.1.1.1.10.172|70|0 +1.3.6.1.2.1.31.1.1.1.10.173|70|0 +1.3.6.1.2.1.31.1.1.1.10.174|70|116 +1.3.6.1.2.1.31.1.1.1.10.175|70|0 +1.3.6.1.2.1.31.1.1.1.10.176|70|0 +1.3.6.1.2.1.31.1.1.1.10.177|70|0 +1.3.6.1.2.1.31.1.1.1.10.178|70|0 +1.3.6.1.2.1.31.1.1.1.10.179|70|152 +1.3.6.1.2.1.31.1.1.1.10.180|70|0 +1.3.6.1.2.1.31.1.1.1.10.181|70|0 +1.3.6.1.2.1.31.1.1.1.10.182|70|0 +1.3.6.1.2.1.31.1.1.1.10.183|70|0 +1.3.6.1.2.1.31.1.1.1.10.184|70|0 +1.3.6.1.2.1.31.1.1.1.10.185|70|0 +1.3.6.1.2.1.31.1.1.1.10.186|70|0 +1.3.6.1.2.1.31.1.1.1.10.187|70|58 +1.3.6.1.2.1.31.1.1.1.10.188|70|58 +1.3.6.1.2.1.31.1.1.1.10.189|70|0 +1.3.6.1.2.1.31.1.1.1.11.1|70|65741 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|0 1.3.6.1.2.1.31.1.1.1.11.4|70|0 @@ -19491,8 +4224,8 @@ 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|14177768760 -1.3.6.1.2.1.31.1.1.1.11.18|70|13484206481 +1.3.6.1.2.1.31.1.1.1.11.17|70|2208354206 +1.3.6.1.2.1.31.1.1.1.11.18|70|13803693 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 @@ -19509,134 +4242,156 @@ 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|1823538011957 -1.3.6.1.2.1.31.1.1.1.11.36|70|1516476160290 -1.3.6.1.2.1.31.1.1.1.11.37|70|142652567848 -1.3.6.1.2.1.31.1.1.1.11.38|70|10594317 +1.3.6.1.2.1.31.1.1.1.11.35|70|131257 +1.3.6.1.2.1.31.1.1.1.11.36|70|131264 +1.3.6.1.2.1.31.1.1.1.11.37|70|2 +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|561954194 +1.3.6.1.2.1.31.1.1.1.11.43|70|3094668 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|211719419038 -1.3.6.1.2.1.31.1.1.1.11.46|70|157601303279 +1.3.6.1.2.1.31.1.1.1.11.45|70|5 +1.3.6.1.2.1.31.1.1.1.11.46|70|7 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|3340014172247 -1.3.6.1.2.1.31.1.1.1.11.50|70|48449250 -1.3.6.1.2.1.31.1.1.1.11.51|70|1806075458874 -1.3.6.1.2.1.31.1.1.1.11.52|70|4323 -1.3.6.1.2.1.31.1.1.1.11.53|70|1618692522 -1.3.6.1.2.1.31.1.1.1.11.54|70|708444586 -1.3.6.1.2.1.31.1.1.1.11.55|70|565337811 +1.3.6.1.2.1.31.1.1.1.11.49|70|262521 +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.51|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.53|70|0 +1.3.6.1.2.1.31.1.1.1.11.54|70|0 +1.3.6.1.2.1.31.1.1.1.11.55|70|0 1.3.6.1.2.1.31.1.1.1.11.56|70|0 -1.3.6.1.2.1.31.1.1.1.11.57|70|37152 -1.3.6.1.2.1.31.1.1.1.11.58|70|6652411075 -1.3.6.1.2.1.31.1.1.1.11.59|70|5575209103 -1.3.6.1.2.1.31.1.1.1.11.60|70|1119128811 -1.3.6.1.2.1.31.1.1.1.11.61|70|996 -1.3.6.1.2.1.31.1.1.1.11.62|70|598971817 -1.3.6.1.2.1.31.1.1.1.11.63|70|38694 -1.3.6.1.2.1.31.1.1.1.11.64|70|18199554779 -1.3.6.1.2.1.31.1.1.1.11.65|70|1393192547 -1.3.6.1.2.1.31.1.1.1.11.66|70|57461849963 -1.3.6.1.2.1.31.1.1.1.11.67|70|535068392 -1.3.6.1.2.1.31.1.1.1.11.68|70|786601243 -1.3.6.1.2.1.31.1.1.1.11.69|70|37732747020 -1.3.6.1.2.1.31.1.1.1.11.70|70|376396 -1.3.6.1.2.1.31.1.1.1.11.71|70|26799105 -1.3.6.1.2.1.31.1.1.1.11.72|70|196742 -1.3.6.1.2.1.31.1.1.1.11.73|70|112263952 -1.3.6.1.2.1.31.1.1.1.11.74|70|35238439835 -1.3.6.1.2.1.31.1.1.1.11.75|70|20253 -1.3.6.1.2.1.31.1.1.1.11.76|70|47864 -1.3.6.1.2.1.31.1.1.1.11.77|70|1709125453 -1.3.6.1.2.1.31.1.1.1.11.78|70|6484152901 -1.3.6.1.2.1.31.1.1.1.11.79|70|31622000 -1.3.6.1.2.1.31.1.1.1.11.80|70|133685638335 -1.3.6.1.2.1.31.1.1.1.11.81|70|10757924926 -1.3.6.1.2.1.31.1.1.1.11.82|70|16210415 -1.3.6.1.2.1.31.1.1.1.11.83|70|18446612147348428808 -1.3.6.1.2.1.31.1.1.1.11.84|70|3568225504 -1.3.6.1.2.1.31.1.1.1.11.85|70|211273192106 -1.3.6.1.2.1.31.1.1.1.11.86|70|157151117112 -1.3.6.1.2.1.31.1.1.1.11.87|70|9040830956 -1.3.6.1.2.1.31.1.1.1.11.88|70|390191601 -1.3.6.1.2.1.31.1.1.1.11.89|70|4452 -1.3.6.1.2.1.31.1.1.1.11.90|70|654390746825 -1.3.6.1.2.1.31.1.1.1.11.91|70|86698753091 -1.3.6.1.2.1.31.1.1.1.11.92|70|277 -1.3.6.1.2.1.31.1.1.1.11.93|70|334369709 -1.3.6.1.2.1.31.1.1.1.11.94|70|2803165852 -1.3.6.1.2.1.31.1.1.1.11.95|70|1231728981 -1.3.6.1.2.1.31.1.1.1.11.96|70|14381379029 -1.3.6.1.2.1.31.1.1.1.11.97|70|75617842 -1.3.6.1.2.1.31.1.1.1.11.98|70|1554001 -1.3.6.1.2.1.31.1.1.1.11.99|70|597610 -1.3.6.1.2.1.31.1.1.1.11.100|70|95779361 -1.3.6.1.2.1.31.1.1.1.11.101|70|552987782 -1.3.6.1.2.1.31.1.1.1.11.102|70|67094352 -1.3.6.1.2.1.31.1.1.1.11.103|70|134312137968 -1.3.6.1.2.1.31.1.1.1.11.104|70|11628914787 +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.11.59|70|0 +1.3.6.1.2.1.31.1.1.1.11.60|70|0 +1.3.6.1.2.1.31.1.1.1.11.61|70|0 +1.3.6.1.2.1.31.1.1.1.11.62|70|0 +1.3.6.1.2.1.31.1.1.1.11.63|70|0 +1.3.6.1.2.1.31.1.1.1.11.64|70|0 +1.3.6.1.2.1.31.1.1.1.11.65|70|0 +1.3.6.1.2.1.31.1.1.1.11.66|70|0 +1.3.6.1.2.1.31.1.1.1.11.67|70|0 +1.3.6.1.2.1.31.1.1.1.11.68|70|0 +1.3.6.1.2.1.31.1.1.1.11.69|70|0 +1.3.6.1.2.1.31.1.1.1.11.70|70|0 +1.3.6.1.2.1.31.1.1.1.11.71|70|0 +1.3.6.1.2.1.31.1.1.1.11.72|70|0 +1.3.6.1.2.1.31.1.1.1.11.73|70|0 +1.3.6.1.2.1.31.1.1.1.11.74|70|0 +1.3.6.1.2.1.31.1.1.1.11.75|70|0 +1.3.6.1.2.1.31.1.1.1.11.76|70|0 +1.3.6.1.2.1.31.1.1.1.11.77|70|0 +1.3.6.1.2.1.31.1.1.1.11.78|70|0 +1.3.6.1.2.1.31.1.1.1.11.79|70|0 +1.3.6.1.2.1.31.1.1.1.11.80|70|0 +1.3.6.1.2.1.31.1.1.1.11.81|70|0 +1.3.6.1.2.1.31.1.1.1.11.82|70|0 +1.3.6.1.2.1.31.1.1.1.11.83|70|4 +1.3.6.1.2.1.31.1.1.1.11.84|70|0 +1.3.6.1.2.1.31.1.1.1.11.85|70|0 +1.3.6.1.2.1.31.1.1.1.11.86|70|0 +1.3.6.1.2.1.31.1.1.1.11.87|70|0 +1.3.6.1.2.1.31.1.1.1.11.88|70|0 +1.3.6.1.2.1.31.1.1.1.11.89|70|0 +1.3.6.1.2.1.31.1.1.1.11.90|70|0 +1.3.6.1.2.1.31.1.1.1.11.91|70|0 +1.3.6.1.2.1.31.1.1.1.11.92|70|0 +1.3.6.1.2.1.31.1.1.1.11.93|70|0 +1.3.6.1.2.1.31.1.1.1.11.94|70|18 +1.3.6.1.2.1.31.1.1.1.11.95|70|0 +1.3.6.1.2.1.31.1.1.1.11.96|70|0 +1.3.6.1.2.1.31.1.1.1.11.97|70|0 +1.3.6.1.2.1.31.1.1.1.11.98|70|0 +1.3.6.1.2.1.31.1.1.1.11.99|70|0 +1.3.6.1.2.1.31.1.1.1.11.100|70|0 +1.3.6.1.2.1.31.1.1.1.11.101|70|0 +1.3.6.1.2.1.31.1.1.1.11.102|70|0 +1.3.6.1.2.1.31.1.1.1.11.103|70|1 +1.3.6.1.2.1.31.1.1.1.11.104|70|0 1.3.6.1.2.1.31.1.1.1.11.105|70|0 -1.3.6.1.2.1.31.1.1.1.11.106|70|32914378 -1.3.6.1.2.1.31.1.1.1.11.107|70|18446612147350525960 -1.3.6.1.2.1.31.1.1.1.11.108|70|1898782269 -1.3.6.1.2.1.31.1.1.1.11.109|70|41262 -1.3.6.1.2.1.31.1.1.1.11.110|70|41262 -1.3.6.1.2.1.31.1.1.1.11.111|70|41262 -1.3.6.1.2.1.31.1.1.1.11.112|70|41262 -1.3.6.1.2.1.31.1.1.1.11.113|70|4314514218 -1.3.6.1.2.1.31.1.1.1.11.114|70|18446744072100656464 -1.3.6.1.2.1.31.1.1.1.11.115|70|53595909 -1.3.6.1.2.1.31.1.1.1.11.116|70|5011275617 -1.3.6.1.2.1.31.1.1.1.11.117|70|18446612147347777544 -1.3.6.1.2.1.31.1.1.1.11.118|70|1397711726 -1.3.6.1.2.1.31.1.1.1.11.119|70|9472781472 -1.3.6.1.2.1.31.1.1.1.11.120|70|1161386928 -1.3.6.1.2.1.31.1.1.1.11.121|70|125487860 -1.3.6.1.2.1.31.1.1.1.11.122|70|1660321 +1.3.6.1.2.1.31.1.1.1.11.106|70|0 +1.3.6.1.2.1.31.1.1.1.11.107|70|4 +1.3.6.1.2.1.31.1.1.1.11.108|70|0 +1.3.6.1.2.1.31.1.1.1.11.109|70|0 +1.3.6.1.2.1.31.1.1.1.11.110|70|0 +1.3.6.1.2.1.31.1.1.1.11.111|70|0 +1.3.6.1.2.1.31.1.1.1.11.112|70|0 +1.3.6.1.2.1.31.1.1.1.11.113|70|0 +1.3.6.1.2.1.31.1.1.1.11.114|70|2 +1.3.6.1.2.1.31.1.1.1.11.115|70|0 +1.3.6.1.2.1.31.1.1.1.11.116|70|0 +1.3.6.1.2.1.31.1.1.1.11.117|70|2 +1.3.6.1.2.1.31.1.1.1.11.118|70|0 +1.3.6.1.2.1.31.1.1.1.11.119|70|0 +1.3.6.1.2.1.31.1.1.1.11.120|70|0 +1.3.6.1.2.1.31.1.1.1.11.121|70|0 +1.3.6.1.2.1.31.1.1.1.11.122|70|2 1.3.6.1.2.1.31.1.1.1.11.123|70|0 -1.3.6.1.2.1.31.1.1.1.11.124|70|443923749 -1.3.6.1.2.1.31.1.1.1.11.125|70|43739889064 -1.3.6.1.2.1.31.1.1.1.11.126|70|7336384434 -1.3.6.1.2.1.31.1.1.1.11.127|70|689027 -1.3.6.1.2.1.31.1.1.1.11.128|70|685624 -1.3.6.1.2.1.31.1.1.1.11.129|70|8133551634 -1.3.6.1.2.1.31.1.1.1.11.130|70|20334320324 -1.3.6.1.2.1.31.1.1.1.11.131|70|2029401 -1.3.6.1.2.1.31.1.1.1.11.132|70|12101962734 -1.3.6.1.2.1.31.1.1.1.11.133|70|93028253088 -1.3.6.1.2.1.31.1.1.1.11.134|70|7770235338 -1.3.6.1.2.1.31.1.1.1.11.135|70|268078308 -1.3.6.1.2.1.31.1.1.1.11.136|70|2738447458 -1.3.6.1.2.1.31.1.1.1.11.137|70|84712145 -1.3.6.1.2.1.31.1.1.1.11.138|70|447463699 -1.3.6.1.2.1.31.1.1.1.11.139|70|18446612147344492552 -1.3.6.1.2.1.31.1.1.1.11.140|70|18446612147357702152 -1.3.6.1.2.1.31.1.1.1.11.141|70|281 -1.3.6.1.2.1.31.1.1.1.11.142|70|281 -1.3.6.1.2.1.31.1.1.1.11.143|70|281 -1.3.6.1.2.1.31.1.1.1.11.144|70|83784529 +1.3.6.1.2.1.31.1.1.1.11.124|70|0 +1.3.6.1.2.1.31.1.1.1.11.125|70|0 +1.3.6.1.2.1.31.1.1.1.11.126|70|0 +1.3.6.1.2.1.31.1.1.1.11.127|70|0 +1.3.6.1.2.1.31.1.1.1.11.128|70|0 +1.3.6.1.2.1.31.1.1.1.11.129|70|0 +1.3.6.1.2.1.31.1.1.1.11.130|70|0 +1.3.6.1.2.1.31.1.1.1.11.131|70|0 +1.3.6.1.2.1.31.1.1.1.11.132|70|0 +1.3.6.1.2.1.31.1.1.1.11.133|70|6 +1.3.6.1.2.1.31.1.1.1.11.134|70|0 +1.3.6.1.2.1.31.1.1.1.11.135|70|0 +1.3.6.1.2.1.31.1.1.1.11.136|70|0 +1.3.6.1.2.1.31.1.1.1.11.137|70|0 +1.3.6.1.2.1.31.1.1.1.11.141|70|0 +1.3.6.1.2.1.31.1.1.1.11.142|70|0 +1.3.6.1.2.1.31.1.1.1.11.143|70|0 +1.3.6.1.2.1.31.1.1.1.11.144|70|0 1.3.6.1.2.1.31.1.1.1.11.145|70|0 1.3.6.1.2.1.31.1.1.1.11.146|70|0 -1.3.6.1.2.1.31.1.1.1.11.147|70|2029388 -1.3.6.1.2.1.31.1.1.1.11.148|70|1512793 -1.3.6.1.2.1.31.1.1.1.11.149|70|250259786 -1.3.6.1.2.1.31.1.1.1.11.150|70|55518600346 -1.3.6.1.2.1.31.1.1.1.11.151|70|6505371 +1.3.6.1.2.1.31.1.1.1.11.147|70|0 +1.3.6.1.2.1.31.1.1.1.11.148|70|0 +1.3.6.1.2.1.31.1.1.1.11.149|70|0 +1.3.6.1.2.1.31.1.1.1.11.150|70|0 +1.3.6.1.2.1.31.1.1.1.11.151|70|0 1.3.6.1.2.1.31.1.1.1.11.152|70|0 -1.3.6.1.2.1.31.1.1.1.11.153|70|295 +1.3.6.1.2.1.31.1.1.1.11.153|70|0 1.3.6.1.2.1.31.1.1.1.11.154|70|0 -1.3.6.1.2.1.31.1.1.1.11.155|70|14868896911 -1.3.6.1.2.1.31.1.1.1.11.156|70|72352396 -1.3.6.1.2.1.31.1.1.1.11.157|70|2259580 -1.3.6.1.2.1.31.1.1.1.11.158|70|28844130 -1.3.6.1.2.1.31.1.1.1.11.159|70|686213 -1.3.6.1.2.1.31.1.1.1.11.160|70|220171 -1.3.6.1.2.1.31.1.1.1.11.161|70|76818123 -1.3.6.1.2.1.31.1.1.1.11.162|70|88737657 +1.3.6.1.2.1.31.1.1.1.11.155|70|0 +1.3.6.1.2.1.31.1.1.1.11.156|70|0 +1.3.6.1.2.1.31.1.1.1.11.157|70|1 +1.3.6.1.2.1.31.1.1.1.11.158|70|0 +1.3.6.1.2.1.31.1.1.1.11.160|70|0 +1.3.6.1.2.1.31.1.1.1.11.161|70|0 +1.3.6.1.2.1.31.1.1.1.11.162|70|0 +1.3.6.1.2.1.31.1.1.1.11.163|70|0 +1.3.6.1.2.1.31.1.1.1.11.164|70|0 +1.3.6.1.2.1.31.1.1.1.11.165|70|0 +1.3.6.1.2.1.31.1.1.1.11.166|70|0 +1.3.6.1.2.1.31.1.1.1.11.167|70|0 +1.3.6.1.2.1.31.1.1.1.11.168|70|0 +1.3.6.1.2.1.31.1.1.1.11.169|70|0 +1.3.6.1.2.1.31.1.1.1.11.170|70|19 +1.3.6.1.2.1.31.1.1.1.11.172|70|0 +1.3.6.1.2.1.31.1.1.1.11.173|70|0 +1.3.6.1.2.1.31.1.1.1.11.174|70|2 +1.3.6.1.2.1.31.1.1.1.11.175|70|0 +1.3.6.1.2.1.31.1.1.1.11.176|70|0 +1.3.6.1.2.1.31.1.1.1.11.177|70|0 +1.3.6.1.2.1.31.1.1.1.11.178|70|0 +1.3.6.1.2.1.31.1.1.1.11.179|70|2 +1.3.6.1.2.1.31.1.1.1.11.180|70|0 +1.3.6.1.2.1.31.1.1.1.11.181|70|0 +1.3.6.1.2.1.31.1.1.1.11.182|70|0 +1.3.6.1.2.1.31.1.1.1.11.183|70|0 +1.3.6.1.2.1.31.1.1.1.11.184|70|0 +1.3.6.1.2.1.31.1.1.1.11.185|70|0 +1.3.6.1.2.1.31.1.1.1.11.186|70|0 +1.3.6.1.2.1.31.1.1.1.11.187|70|1 +1.3.6.1.2.1.31.1.1.1.11.188|70|1 +1.3.6.1.2.1.31.1.1.1.11.189|70|0 1.3.6.1.2.1.31.1.1.1.12.1|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 @@ -19774,9 +4529,6 @@ 1.3.6.1.2.1.31.1.1.1.12.135|70|0 1.3.6.1.2.1.31.1.1.1.12.136|70|0 1.3.6.1.2.1.31.1.1.1.12.137|70|0 -1.3.6.1.2.1.31.1.1.1.12.138|70|0 -1.3.6.1.2.1.31.1.1.1.12.139|70|0 -1.3.6.1.2.1.31.1.1.1.12.140|70|0 1.3.6.1.2.1.31.1.1.1.12.141|70|0 1.3.6.1.2.1.31.1.1.1.12.142|70|0 1.3.6.1.2.1.31.1.1.1.12.143|70|0 @@ -19795,10 +4547,35 @@ 1.3.6.1.2.1.31.1.1.1.12.156|70|0 1.3.6.1.2.1.31.1.1.1.12.157|70|0 1.3.6.1.2.1.31.1.1.1.12.158|70|0 -1.3.6.1.2.1.31.1.1.1.12.159|70|0 1.3.6.1.2.1.31.1.1.1.12.160|70|0 1.3.6.1.2.1.31.1.1.1.12.161|70|0 1.3.6.1.2.1.31.1.1.1.12.162|70|0 +1.3.6.1.2.1.31.1.1.1.12.163|70|0 +1.3.6.1.2.1.31.1.1.1.12.164|70|0 +1.3.6.1.2.1.31.1.1.1.12.165|70|0 +1.3.6.1.2.1.31.1.1.1.12.166|70|0 +1.3.6.1.2.1.31.1.1.1.12.167|70|0 +1.3.6.1.2.1.31.1.1.1.12.168|70|0 +1.3.6.1.2.1.31.1.1.1.12.169|70|0 +1.3.6.1.2.1.31.1.1.1.12.170|70|0 +1.3.6.1.2.1.31.1.1.1.12.172|70|0 +1.3.6.1.2.1.31.1.1.1.12.173|70|0 +1.3.6.1.2.1.31.1.1.1.12.174|70|0 +1.3.6.1.2.1.31.1.1.1.12.175|70|0 +1.3.6.1.2.1.31.1.1.1.12.176|70|0 +1.3.6.1.2.1.31.1.1.1.12.177|70|0 +1.3.6.1.2.1.31.1.1.1.12.178|70|0 +1.3.6.1.2.1.31.1.1.1.12.179|70|0 +1.3.6.1.2.1.31.1.1.1.12.180|70|0 +1.3.6.1.2.1.31.1.1.1.12.181|70|0 +1.3.6.1.2.1.31.1.1.1.12.182|70|0 +1.3.6.1.2.1.31.1.1.1.12.183|70|0 +1.3.6.1.2.1.31.1.1.1.12.184|70|0 +1.3.6.1.2.1.31.1.1.1.12.185|70|0 +1.3.6.1.2.1.31.1.1.1.12.186|70|0 +1.3.6.1.2.1.31.1.1.1.12.187|70|0 +1.3.6.1.2.1.31.1.1.1.12.188|70|0 +1.3.6.1.2.1.31.1.1.1.12.189|70|0 1.3.6.1.2.1.31.1.1.1.13.1|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|0 @@ -19936,9 +4713,6 @@ 1.3.6.1.2.1.31.1.1.1.13.135|70|0 1.3.6.1.2.1.31.1.1.1.13.136|70|0 1.3.6.1.2.1.31.1.1.1.13.137|70|0 -1.3.6.1.2.1.31.1.1.1.13.138|70|0 -1.3.6.1.2.1.31.1.1.1.13.139|70|0 -1.3.6.1.2.1.31.1.1.1.13.140|70|0 1.3.6.1.2.1.31.1.1.1.13.141|70|0 1.3.6.1.2.1.31.1.1.1.13.142|70|0 1.3.6.1.2.1.31.1.1.1.13.143|70|0 @@ -19957,10 +4731,35 @@ 1.3.6.1.2.1.31.1.1.1.13.156|70|0 1.3.6.1.2.1.31.1.1.1.13.157|70|0 1.3.6.1.2.1.31.1.1.1.13.158|70|0 -1.3.6.1.2.1.31.1.1.1.13.159|70|0 1.3.6.1.2.1.31.1.1.1.13.160|70|0 1.3.6.1.2.1.31.1.1.1.13.161|70|0 1.3.6.1.2.1.31.1.1.1.13.162|70|0 +1.3.6.1.2.1.31.1.1.1.13.163|70|0 +1.3.6.1.2.1.31.1.1.1.13.164|70|0 +1.3.6.1.2.1.31.1.1.1.13.165|70|0 +1.3.6.1.2.1.31.1.1.1.13.166|70|0 +1.3.6.1.2.1.31.1.1.1.13.167|70|0 +1.3.6.1.2.1.31.1.1.1.13.168|70|0 +1.3.6.1.2.1.31.1.1.1.13.169|70|0 +1.3.6.1.2.1.31.1.1.1.13.170|70|0 +1.3.6.1.2.1.31.1.1.1.13.172|70|0 +1.3.6.1.2.1.31.1.1.1.13.173|70|0 +1.3.6.1.2.1.31.1.1.1.13.174|70|0 +1.3.6.1.2.1.31.1.1.1.13.175|70|0 +1.3.6.1.2.1.31.1.1.1.13.176|70|0 +1.3.6.1.2.1.31.1.1.1.13.177|70|0 +1.3.6.1.2.1.31.1.1.1.13.178|70|0 +1.3.6.1.2.1.31.1.1.1.13.179|70|0 +1.3.6.1.2.1.31.1.1.1.13.180|70|0 +1.3.6.1.2.1.31.1.1.1.13.181|70|0 +1.3.6.1.2.1.31.1.1.1.13.182|70|0 +1.3.6.1.2.1.31.1.1.1.13.183|70|0 +1.3.6.1.2.1.31.1.1.1.13.184|70|0 +1.3.6.1.2.1.31.1.1.1.13.185|70|0 +1.3.6.1.2.1.31.1.1.1.13.186|70|0 +1.3.6.1.2.1.31.1.1.1.13.187|70|0 +1.3.6.1.2.1.31.1.1.1.13.188|70|0 +1.3.6.1.2.1.31.1.1.1.13.189|70|0 1.3.6.1.2.1.31.1.1.1.14.1|2|1 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 @@ -20098,9 +4897,6 @@ 1.3.6.1.2.1.31.1.1.1.14.135|2|1 1.3.6.1.2.1.31.1.1.1.14.136|2|1 1.3.6.1.2.1.31.1.1.1.14.137|2|1 -1.3.6.1.2.1.31.1.1.1.14.138|2|1 -1.3.6.1.2.1.31.1.1.1.14.139|2|1 -1.3.6.1.2.1.31.1.1.1.14.140|2|1 1.3.6.1.2.1.31.1.1.1.14.141|2|1 1.3.6.1.2.1.31.1.1.1.14.142|2|1 1.3.6.1.2.1.31.1.1.1.14.143|2|1 @@ -20119,10 +4915,35 @@ 1.3.6.1.2.1.31.1.1.1.14.156|2|1 1.3.6.1.2.1.31.1.1.1.14.157|2|1 1.3.6.1.2.1.31.1.1.1.14.158|2|1 -1.3.6.1.2.1.31.1.1.1.14.159|2|1 1.3.6.1.2.1.31.1.1.1.14.160|2|1 1.3.6.1.2.1.31.1.1.1.14.161|2|1 1.3.6.1.2.1.31.1.1.1.14.162|2|1 +1.3.6.1.2.1.31.1.1.1.14.163|2|1 +1.3.6.1.2.1.31.1.1.1.14.164|2|1 +1.3.6.1.2.1.31.1.1.1.14.165|2|1 +1.3.6.1.2.1.31.1.1.1.14.166|2|1 +1.3.6.1.2.1.31.1.1.1.14.167|2|1 +1.3.6.1.2.1.31.1.1.1.14.168|2|1 +1.3.6.1.2.1.31.1.1.1.14.169|2|1 +1.3.6.1.2.1.31.1.1.1.14.170|2|1 +1.3.6.1.2.1.31.1.1.1.14.172|2|1 +1.3.6.1.2.1.31.1.1.1.14.173|2|1 +1.3.6.1.2.1.31.1.1.1.14.174|2|1 +1.3.6.1.2.1.31.1.1.1.14.175|2|1 +1.3.6.1.2.1.31.1.1.1.14.176|2|1 +1.3.6.1.2.1.31.1.1.1.14.177|2|1 +1.3.6.1.2.1.31.1.1.1.14.178|2|1 +1.3.6.1.2.1.31.1.1.1.14.179|2|1 +1.3.6.1.2.1.31.1.1.1.14.180|2|1 +1.3.6.1.2.1.31.1.1.1.14.181|2|1 +1.3.6.1.2.1.31.1.1.1.14.182|2|1 +1.3.6.1.2.1.31.1.1.1.14.183|2|1 +1.3.6.1.2.1.31.1.1.1.14.184|2|1 +1.3.6.1.2.1.31.1.1.1.14.185|2|1 +1.3.6.1.2.1.31.1.1.1.14.186|2|1 +1.3.6.1.2.1.31.1.1.1.14.187|2|1 +1.3.6.1.2.1.31.1.1.1.14.188|2|1 +1.3.6.1.2.1.31.1.1.1.14.189|2|1 1.3.6.1.2.1.31.1.1.1.15.1|66|1000 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|0 @@ -20194,7 +5015,7 @@ 1.3.6.1.2.1.31.1.1.1.15.69|66|20000 1.3.6.1.2.1.31.1.1.1.15.70|66|20000 1.3.6.1.2.1.31.1.1.1.15.71|66|20000 -1.3.6.1.2.1.31.1.1.1.15.72|66|0 +1.3.6.1.2.1.31.1.1.1.15.72|66|20000 1.3.6.1.2.1.31.1.1.1.15.73|66|20000 1.3.6.1.2.1.31.1.1.1.15.74|66|20000 1.3.6.1.2.1.31.1.1.1.15.75|66|20000 @@ -20202,7 +5023,7 @@ 1.3.6.1.2.1.31.1.1.1.15.77|66|20000 1.3.6.1.2.1.31.1.1.1.15.78|66|20000 1.3.6.1.2.1.31.1.1.1.15.79|66|20000 -1.3.6.1.2.1.31.1.1.1.15.80|66|20000 +1.3.6.1.2.1.31.1.1.1.15.80|66|0 1.3.6.1.2.1.31.1.1.1.15.81|66|20000 1.3.6.1.2.1.31.1.1.1.15.82|66|20000 1.3.6.1.2.1.31.1.1.1.15.83|66|0 @@ -20226,7 +5047,7 @@ 1.3.6.1.2.1.31.1.1.1.15.101|66|20000 1.3.6.1.2.1.31.1.1.1.15.102|66|20000 1.3.6.1.2.1.31.1.1.1.15.103|66|20000 -1.3.6.1.2.1.31.1.1.1.15.104|66|20000 +1.3.6.1.2.1.31.1.1.1.15.104|66|0 1.3.6.1.2.1.31.1.1.1.15.105|66|20000 1.3.6.1.2.1.31.1.1.1.15.106|66|20000 1.3.6.1.2.1.31.1.1.1.15.107|66|0 @@ -20243,10 +5064,10 @@ 1.3.6.1.2.1.31.1.1.1.15.118|66|20000 1.3.6.1.2.1.31.1.1.1.15.119|66|20000 1.3.6.1.2.1.31.1.1.1.15.120|66|20000 -1.3.6.1.2.1.31.1.1.1.15.121|66|0 +1.3.6.1.2.1.31.1.1.1.15.121|66|20000 1.3.6.1.2.1.31.1.1.1.15.122|66|20000 -1.3.6.1.2.1.31.1.1.1.15.123|66|0 -1.3.6.1.2.1.31.1.1.1.15.124|66|0 +1.3.6.1.2.1.31.1.1.1.15.123|66|20000 +1.3.6.1.2.1.31.1.1.1.15.124|66|20000 1.3.6.1.2.1.31.1.1.1.15.125|66|20000 1.3.6.1.2.1.31.1.1.1.15.126|66|20000 1.3.6.1.2.1.31.1.1.1.15.127|66|20000 @@ -20260,9 +5081,6 @@ 1.3.6.1.2.1.31.1.1.1.15.135|66|20000 1.3.6.1.2.1.31.1.1.1.15.136|66|20000 1.3.6.1.2.1.31.1.1.1.15.137|66|20000 -1.3.6.1.2.1.31.1.1.1.15.138|66|0 -1.3.6.1.2.1.31.1.1.1.15.139|66|0 -1.3.6.1.2.1.31.1.1.1.15.140|66|0 1.3.6.1.2.1.31.1.1.1.15.141|66|20000 1.3.6.1.2.1.31.1.1.1.15.142|66|20000 1.3.6.1.2.1.31.1.1.1.15.143|66|20000 @@ -20281,172 +5099,219 @@ 1.3.6.1.2.1.31.1.1.1.15.156|66|20000 1.3.6.1.2.1.31.1.1.1.15.157|66|20000 1.3.6.1.2.1.31.1.1.1.15.158|66|20000 -1.3.6.1.2.1.31.1.1.1.15.159|66|20000 1.3.6.1.2.1.31.1.1.1.15.160|66|20000 1.3.6.1.2.1.31.1.1.1.15.161|66|20000 1.3.6.1.2.1.31.1.1.1.15.162|66|20000 -1.3.6.1.2.1.31.1.1.1.16.1|2|1 -1.3.6.1.2.1.31.1.1.1.16.2|2|1 +1.3.6.1.2.1.31.1.1.1.15.163|66|20000 +1.3.6.1.2.1.31.1.1.1.15.164|66|20000 +1.3.6.1.2.1.31.1.1.1.15.165|66|20000 +1.3.6.1.2.1.31.1.1.1.15.166|66|20000 +1.3.6.1.2.1.31.1.1.1.15.167|66|20000 +1.3.6.1.2.1.31.1.1.1.15.168|66|20000 +1.3.6.1.2.1.31.1.1.1.15.169|66|20000 +1.3.6.1.2.1.31.1.1.1.15.170|66|20000 +1.3.6.1.2.1.31.1.1.1.15.172|66|20000 +1.3.6.1.2.1.31.1.1.1.15.173|66|20000 +1.3.6.1.2.1.31.1.1.1.15.174|66|20000 +1.3.6.1.2.1.31.1.1.1.15.175|66|20000 +1.3.6.1.2.1.31.1.1.1.15.176|66|0 +1.3.6.1.2.1.31.1.1.1.15.177|66|0 +1.3.6.1.2.1.31.1.1.1.15.178|66|0 +1.3.6.1.2.1.31.1.1.1.15.179|66|0 +1.3.6.1.2.1.31.1.1.1.15.180|66|20000 +1.3.6.1.2.1.31.1.1.1.15.181|66|20000 +1.3.6.1.2.1.31.1.1.1.15.182|66|20000 +1.3.6.1.2.1.31.1.1.1.15.183|66|20000 +1.3.6.1.2.1.31.1.1.1.15.184|66|20000 +1.3.6.1.2.1.31.1.1.1.15.185|66|20000 +1.3.6.1.2.1.31.1.1.1.15.186|66|20000 +1.3.6.1.2.1.31.1.1.1.15.187|66|20000 +1.3.6.1.2.1.31.1.1.1.15.188|66|20000 +1.3.6.1.2.1.31.1.1.1.15.189|66|20000 +1.3.6.1.2.1.31.1.1.1.16.1|2|2 +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|1 -1.3.6.1.2.1.31.1.1.1.16.5|2|1 -1.3.6.1.2.1.31.1.1.1.16.6|2|1 -1.3.6.1.2.1.31.1.1.1.16.7|2|1 -1.3.6.1.2.1.31.1.1.1.16.8|2|1 -1.3.6.1.2.1.31.1.1.1.16.9|2|1 -1.3.6.1.2.1.31.1.1.1.16.10|2|1 -1.3.6.1.2.1.31.1.1.1.16.11|2|1 -1.3.6.1.2.1.31.1.1.1.16.12|2|1 -1.3.6.1.2.1.31.1.1.1.16.13|2|1 -1.3.6.1.2.1.31.1.1.1.16.14|2|1 -1.3.6.1.2.1.31.1.1.1.16.15|2|1 -1.3.6.1.2.1.31.1.1.1.16.16|2|1 -1.3.6.1.2.1.31.1.1.1.16.17|2|1 -1.3.6.1.2.1.31.1.1.1.16.18|2|1 -1.3.6.1.2.1.31.1.1.1.16.19|2|1 -1.3.6.1.2.1.31.1.1.1.16.20|2|1 -1.3.6.1.2.1.31.1.1.1.16.21|2|1 -1.3.6.1.2.1.31.1.1.1.16.22|2|1 -1.3.6.1.2.1.31.1.1.1.16.23|2|1 -1.3.6.1.2.1.31.1.1.1.16.24|2|1 -1.3.6.1.2.1.31.1.1.1.16.25|2|1 -1.3.6.1.2.1.31.1.1.1.16.26|2|1 -1.3.6.1.2.1.31.1.1.1.16.27|2|1 -1.3.6.1.2.1.31.1.1.1.16.28|2|1 -1.3.6.1.2.1.31.1.1.1.16.29|2|1 -1.3.6.1.2.1.31.1.1.1.16.30|2|1 -1.3.6.1.2.1.31.1.1.1.16.31|2|1 -1.3.6.1.2.1.31.1.1.1.16.32|2|1 -1.3.6.1.2.1.31.1.1.1.16.33|2|1 -1.3.6.1.2.1.31.1.1.1.16.34|2|1 -1.3.6.1.2.1.31.1.1.1.16.35|2|1 -1.3.6.1.2.1.31.1.1.1.16.36|2|1 -1.3.6.1.2.1.31.1.1.1.16.37|2|1 -1.3.6.1.2.1.31.1.1.1.16.38|2|1 -1.3.6.1.2.1.31.1.1.1.16.39|2|1 -1.3.6.1.2.1.31.1.1.1.16.40|2|1 -1.3.6.1.2.1.31.1.1.1.16.41|2|1 -1.3.6.1.2.1.31.1.1.1.16.42|2|1 +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.5|2|2 +1.3.6.1.2.1.31.1.1.1.16.6|2|2 +1.3.6.1.2.1.31.1.1.1.16.7|2|2 +1.3.6.1.2.1.31.1.1.1.16.8|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|1 -1.3.6.1.2.1.31.1.1.1.16.46|2|1 -1.3.6.1.2.1.31.1.1.1.16.47|2|1 -1.3.6.1.2.1.31.1.1.1.16.48|2|1 -1.3.6.1.2.1.31.1.1.1.16.49|2|1 -1.3.6.1.2.1.31.1.1.1.16.50|2|1 -1.3.6.1.2.1.31.1.1.1.16.51|2|1 -1.3.6.1.2.1.31.1.1.1.16.52|2|1 -1.3.6.1.2.1.31.1.1.1.16.53|2|1 -1.3.6.1.2.1.31.1.1.1.16.54|2|1 -1.3.6.1.2.1.31.1.1.1.16.55|2|1 +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.51|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.53|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|1 -1.3.6.1.2.1.31.1.1.1.16.58|2|1 -1.3.6.1.2.1.31.1.1.1.16.59|2|1 +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.16.59|2|2 1.3.6.1.2.1.31.1.1.1.16.60|2|2 -1.3.6.1.2.1.31.1.1.1.16.61|2|1 -1.3.6.1.2.1.31.1.1.1.16.62|2|1 -1.3.6.1.2.1.31.1.1.1.16.63|2|1 -1.3.6.1.2.1.31.1.1.1.16.64|2|1 -1.3.6.1.2.1.31.1.1.1.16.65|2|1 -1.3.6.1.2.1.31.1.1.1.16.66|2|1 -1.3.6.1.2.1.31.1.1.1.16.67|2|1 -1.3.6.1.2.1.31.1.1.1.16.68|2|1 -1.3.6.1.2.1.31.1.1.1.16.69|2|1 -1.3.6.1.2.1.31.1.1.1.16.70|2|1 -1.3.6.1.2.1.31.1.1.1.16.71|2|1 +1.3.6.1.2.1.31.1.1.1.16.61|2|2 +1.3.6.1.2.1.31.1.1.1.16.62|2|2 +1.3.6.1.2.1.31.1.1.1.16.63|2|2 +1.3.6.1.2.1.31.1.1.1.16.64|2|2 +1.3.6.1.2.1.31.1.1.1.16.65|2|2 +1.3.6.1.2.1.31.1.1.1.16.66|2|2 +1.3.6.1.2.1.31.1.1.1.16.67|2|2 +1.3.6.1.2.1.31.1.1.1.16.68|2|2 +1.3.6.1.2.1.31.1.1.1.16.69|2|2 +1.3.6.1.2.1.31.1.1.1.16.70|2|2 +1.3.6.1.2.1.31.1.1.1.16.71|2|2 1.3.6.1.2.1.31.1.1.1.16.72|2|2 -1.3.6.1.2.1.31.1.1.1.16.73|2|1 -1.3.6.1.2.1.31.1.1.1.16.74|2|1 -1.3.6.1.2.1.31.1.1.1.16.75|2|1 -1.3.6.1.2.1.31.1.1.1.16.76|2|1 -1.3.6.1.2.1.31.1.1.1.16.77|2|1 -1.3.6.1.2.1.31.1.1.1.16.78|2|1 -1.3.6.1.2.1.31.1.1.1.16.79|2|1 -1.3.6.1.2.1.31.1.1.1.16.80|2|1 -1.3.6.1.2.1.31.1.1.1.16.81|2|1 -1.3.6.1.2.1.31.1.1.1.16.82|2|1 +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.75|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.16.77|2|2 +1.3.6.1.2.1.31.1.1.1.16.78|2|2 +1.3.6.1.2.1.31.1.1.1.16.79|2|2 +1.3.6.1.2.1.31.1.1.1.16.80|2|2 +1.3.6.1.2.1.31.1.1.1.16.81|2|2 +1.3.6.1.2.1.31.1.1.1.16.82|2|2 1.3.6.1.2.1.31.1.1.1.16.83|2|2 -1.3.6.1.2.1.31.1.1.1.16.84|2|1 -1.3.6.1.2.1.31.1.1.1.16.85|2|1 -1.3.6.1.2.1.31.1.1.1.16.86|2|1 -1.3.6.1.2.1.31.1.1.1.16.87|2|1 -1.3.6.1.2.1.31.1.1.1.16.88|2|1 -1.3.6.1.2.1.31.1.1.1.16.89|2|1 -1.3.6.1.2.1.31.1.1.1.16.90|2|1 -1.3.6.1.2.1.31.1.1.1.16.91|2|1 -1.3.6.1.2.1.31.1.1.1.16.92|2|1 -1.3.6.1.2.1.31.1.1.1.16.93|2|1 -1.3.6.1.2.1.31.1.1.1.16.94|2|1 -1.3.6.1.2.1.31.1.1.1.16.95|2|1 -1.3.6.1.2.1.31.1.1.1.16.96|2|1 -1.3.6.1.2.1.31.1.1.1.16.97|2|1 -1.3.6.1.2.1.31.1.1.1.16.98|2|1 +1.3.6.1.2.1.31.1.1.1.16.84|2|2 +1.3.6.1.2.1.31.1.1.1.16.85|2|2 +1.3.6.1.2.1.31.1.1.1.16.86|2|2 +1.3.6.1.2.1.31.1.1.1.16.87|2|2 +1.3.6.1.2.1.31.1.1.1.16.88|2|2 +1.3.6.1.2.1.31.1.1.1.16.89|2|2 +1.3.6.1.2.1.31.1.1.1.16.90|2|2 +1.3.6.1.2.1.31.1.1.1.16.91|2|2 +1.3.6.1.2.1.31.1.1.1.16.92|2|2 +1.3.6.1.2.1.31.1.1.1.16.93|2|2 +1.3.6.1.2.1.31.1.1.1.16.94|2|2 +1.3.6.1.2.1.31.1.1.1.16.95|2|2 +1.3.6.1.2.1.31.1.1.1.16.96|2|2 +1.3.6.1.2.1.31.1.1.1.16.97|2|2 +1.3.6.1.2.1.31.1.1.1.16.98|2|2 1.3.6.1.2.1.31.1.1.1.16.99|2|2 -1.3.6.1.2.1.31.1.1.1.16.100|2|1 -1.3.6.1.2.1.31.1.1.1.16.101|2|1 -1.3.6.1.2.1.31.1.1.1.16.102|2|1 -1.3.6.1.2.1.31.1.1.1.16.103|2|1 -1.3.6.1.2.1.31.1.1.1.16.104|2|1 +1.3.6.1.2.1.31.1.1.1.16.100|2|2 +1.3.6.1.2.1.31.1.1.1.16.101|2|2 +1.3.6.1.2.1.31.1.1.1.16.102|2|2 +1.3.6.1.2.1.31.1.1.1.16.103|2|2 +1.3.6.1.2.1.31.1.1.1.16.104|2|2 1.3.6.1.2.1.31.1.1.1.16.105|2|2 -1.3.6.1.2.1.31.1.1.1.16.106|2|1 +1.3.6.1.2.1.31.1.1.1.16.106|2|2 1.3.6.1.2.1.31.1.1.1.16.107|2|2 -1.3.6.1.2.1.31.1.1.1.16.108|2|1 -1.3.6.1.2.1.31.1.1.1.16.109|2|1 -1.3.6.1.2.1.31.1.1.1.16.110|2|1 -1.3.6.1.2.1.31.1.1.1.16.111|2|1 -1.3.6.1.2.1.31.1.1.1.16.112|2|1 -1.3.6.1.2.1.31.1.1.1.16.113|2|1 +1.3.6.1.2.1.31.1.1.1.16.108|2|2 +1.3.6.1.2.1.31.1.1.1.16.109|2|2 +1.3.6.1.2.1.31.1.1.1.16.110|2|2 +1.3.6.1.2.1.31.1.1.1.16.111|2|2 +1.3.6.1.2.1.31.1.1.1.16.112|2|2 +1.3.6.1.2.1.31.1.1.1.16.113|2|2 1.3.6.1.2.1.31.1.1.1.16.114|2|2 -1.3.6.1.2.1.31.1.1.1.16.115|2|1 -1.3.6.1.2.1.31.1.1.1.16.116|2|1 +1.3.6.1.2.1.31.1.1.1.16.115|2|2 +1.3.6.1.2.1.31.1.1.1.16.116|2|2 1.3.6.1.2.1.31.1.1.1.16.117|2|2 -1.3.6.1.2.1.31.1.1.1.16.118|2|1 -1.3.6.1.2.1.31.1.1.1.16.119|2|1 -1.3.6.1.2.1.31.1.1.1.16.120|2|1 +1.3.6.1.2.1.31.1.1.1.16.118|2|2 +1.3.6.1.2.1.31.1.1.1.16.119|2|2 +1.3.6.1.2.1.31.1.1.1.16.120|2|2 1.3.6.1.2.1.31.1.1.1.16.121|2|2 -1.3.6.1.2.1.31.1.1.1.16.122|2|1 +1.3.6.1.2.1.31.1.1.1.16.122|2|2 1.3.6.1.2.1.31.1.1.1.16.123|2|2 -1.3.6.1.2.1.31.1.1.1.16.124|2|1 -1.3.6.1.2.1.31.1.1.1.16.125|2|1 -1.3.6.1.2.1.31.1.1.1.16.126|2|1 -1.3.6.1.2.1.31.1.1.1.16.127|2|1 -1.3.6.1.2.1.31.1.1.1.16.128|2|1 -1.3.6.1.2.1.31.1.1.1.16.129|2|1 -1.3.6.1.2.1.31.1.1.1.16.130|2|1 -1.3.6.1.2.1.31.1.1.1.16.131|2|1 -1.3.6.1.2.1.31.1.1.1.16.132|2|1 -1.3.6.1.2.1.31.1.1.1.16.133|2|1 -1.3.6.1.2.1.31.1.1.1.16.134|2|1 -1.3.6.1.2.1.31.1.1.1.16.135|2|1 -1.3.6.1.2.1.31.1.1.1.16.136|2|1 -1.3.6.1.2.1.31.1.1.1.16.137|2|1 -1.3.6.1.2.1.31.1.1.1.16.138|2|1 -1.3.6.1.2.1.31.1.1.1.16.139|2|2 -1.3.6.1.2.1.31.1.1.1.16.140|2|2 -1.3.6.1.2.1.31.1.1.1.16.141|2|1 -1.3.6.1.2.1.31.1.1.1.16.142|2|1 -1.3.6.1.2.1.31.1.1.1.16.143|2|1 +1.3.6.1.2.1.31.1.1.1.16.124|2|2 +1.3.6.1.2.1.31.1.1.1.16.125|2|2 +1.3.6.1.2.1.31.1.1.1.16.126|2|2 +1.3.6.1.2.1.31.1.1.1.16.127|2|2 +1.3.6.1.2.1.31.1.1.1.16.128|2|2 +1.3.6.1.2.1.31.1.1.1.16.129|2|2 +1.3.6.1.2.1.31.1.1.1.16.130|2|2 +1.3.6.1.2.1.31.1.1.1.16.131|2|2 +1.3.6.1.2.1.31.1.1.1.16.132|2|2 +1.3.6.1.2.1.31.1.1.1.16.133|2|2 +1.3.6.1.2.1.31.1.1.1.16.134|2|2 +1.3.6.1.2.1.31.1.1.1.16.135|2|2 +1.3.6.1.2.1.31.1.1.1.16.136|2|2 +1.3.6.1.2.1.31.1.1.1.16.137|2|2 +1.3.6.1.2.1.31.1.1.1.16.141|2|2 +1.3.6.1.2.1.31.1.1.1.16.142|2|2 +1.3.6.1.2.1.31.1.1.1.16.143|2|2 1.3.6.1.2.1.31.1.1.1.16.144|2|2 -1.3.6.1.2.1.31.1.1.1.16.145|2|1 -1.3.6.1.2.1.31.1.1.1.16.146|2|1 -1.3.6.1.2.1.31.1.1.1.16.147|2|1 -1.3.6.1.2.1.31.1.1.1.16.148|2|1 -1.3.6.1.2.1.31.1.1.1.16.149|2|1 -1.3.6.1.2.1.31.1.1.1.16.150|2|1 -1.3.6.1.2.1.31.1.1.1.16.151|2|1 -1.3.6.1.2.1.31.1.1.1.16.152|2|1 -1.3.6.1.2.1.31.1.1.1.16.153|2|1 -1.3.6.1.2.1.31.1.1.1.16.154|2|1 -1.3.6.1.2.1.31.1.1.1.16.155|2|1 -1.3.6.1.2.1.31.1.1.1.16.156|2|1 -1.3.6.1.2.1.31.1.1.1.16.157|2|1 -1.3.6.1.2.1.31.1.1.1.16.158|2|1 -1.3.6.1.2.1.31.1.1.1.16.159|2|1 -1.3.6.1.2.1.31.1.1.1.16.160|2|1 -1.3.6.1.2.1.31.1.1.1.16.161|2|1 +1.3.6.1.2.1.31.1.1.1.16.145|2|2 +1.3.6.1.2.1.31.1.1.1.16.146|2|2 +1.3.6.1.2.1.31.1.1.1.16.147|2|2 +1.3.6.1.2.1.31.1.1.1.16.148|2|2 +1.3.6.1.2.1.31.1.1.1.16.149|2|2 +1.3.6.1.2.1.31.1.1.1.16.150|2|2 +1.3.6.1.2.1.31.1.1.1.16.151|2|2 +1.3.6.1.2.1.31.1.1.1.16.152|2|2 +1.3.6.1.2.1.31.1.1.1.16.153|2|2 +1.3.6.1.2.1.31.1.1.1.16.154|2|2 +1.3.6.1.2.1.31.1.1.1.16.155|2|2 +1.3.6.1.2.1.31.1.1.1.16.156|2|2 +1.3.6.1.2.1.31.1.1.1.16.157|2|2 +1.3.6.1.2.1.31.1.1.1.16.158|2|2 +1.3.6.1.2.1.31.1.1.1.16.160|2|2 +1.3.6.1.2.1.31.1.1.1.16.161|2|2 1.3.6.1.2.1.31.1.1.1.16.162|2|2 +1.3.6.1.2.1.31.1.1.1.16.163|2|2 +1.3.6.1.2.1.31.1.1.1.16.164|2|2 +1.3.6.1.2.1.31.1.1.1.16.165|2|2 +1.3.6.1.2.1.31.1.1.1.16.166|2|2 +1.3.6.1.2.1.31.1.1.1.16.167|2|2 +1.3.6.1.2.1.31.1.1.1.16.168|2|2 +1.3.6.1.2.1.31.1.1.1.16.169|2|2 +1.3.6.1.2.1.31.1.1.1.16.170|2|2 +1.3.6.1.2.1.31.1.1.1.16.172|2|2 +1.3.6.1.2.1.31.1.1.1.16.173|2|2 +1.3.6.1.2.1.31.1.1.1.16.174|2|2 +1.3.6.1.2.1.31.1.1.1.16.175|2|2 +1.3.6.1.2.1.31.1.1.1.16.176|2|2 +1.3.6.1.2.1.31.1.1.1.16.177|2|2 +1.3.6.1.2.1.31.1.1.1.16.178|2|2 +1.3.6.1.2.1.31.1.1.1.16.179|2|2 +1.3.6.1.2.1.31.1.1.1.16.180|2|2 +1.3.6.1.2.1.31.1.1.1.16.181|2|2 +1.3.6.1.2.1.31.1.1.1.16.182|2|2 +1.3.6.1.2.1.31.1.1.1.16.183|2|2 +1.3.6.1.2.1.31.1.1.1.16.184|2|2 +1.3.6.1.2.1.31.1.1.1.16.185|2|2 +1.3.6.1.2.1.31.1.1.1.16.186|2|2 +1.3.6.1.2.1.31.1.1.1.16.187|2|2 +1.3.6.1.2.1.31.1.1.1.16.188|2|2 +1.3.6.1.2.1.31.1.1.1.16.189|2|2 1.3.6.1.2.1.31.1.1.1.17.1|2|1 1.3.6.1.2.1.31.1.1.1.17.2|2|1 1.3.6.1.2.1.31.1.1.1.17.3|2|1 @@ -20584,9 +5449,6 @@ 1.3.6.1.2.1.31.1.1.1.17.135|2|2 1.3.6.1.2.1.31.1.1.1.17.136|2|2 1.3.6.1.2.1.31.1.1.1.17.137|2|2 -1.3.6.1.2.1.31.1.1.1.17.138|2|2 -1.3.6.1.2.1.31.1.1.1.17.139|2|2 -1.3.6.1.2.1.31.1.1.1.17.140|2|2 1.3.6.1.2.1.31.1.1.1.17.141|2|2 1.3.6.1.2.1.31.1.1.1.17.142|2|2 1.3.6.1.2.1.31.1.1.1.17.143|2|2 @@ -20605,10 +5467,35 @@ 1.3.6.1.2.1.31.1.1.1.17.156|2|2 1.3.6.1.2.1.31.1.1.1.17.157|2|2 1.3.6.1.2.1.31.1.1.1.17.158|2|2 -1.3.6.1.2.1.31.1.1.1.17.159|2|2 1.3.6.1.2.1.31.1.1.1.17.160|2|2 1.3.6.1.2.1.31.1.1.1.17.161|2|2 1.3.6.1.2.1.31.1.1.1.17.162|2|2 +1.3.6.1.2.1.31.1.1.1.17.163|2|2 +1.3.6.1.2.1.31.1.1.1.17.164|2|2 +1.3.6.1.2.1.31.1.1.1.17.165|2|2 +1.3.6.1.2.1.31.1.1.1.17.166|2|2 +1.3.6.1.2.1.31.1.1.1.17.167|2|2 +1.3.6.1.2.1.31.1.1.1.17.168|2|2 +1.3.6.1.2.1.31.1.1.1.17.169|2|2 +1.3.6.1.2.1.31.1.1.1.17.170|2|2 +1.3.6.1.2.1.31.1.1.1.17.172|2|2 +1.3.6.1.2.1.31.1.1.1.17.173|2|2 +1.3.6.1.2.1.31.1.1.1.17.174|2|2 +1.3.6.1.2.1.31.1.1.1.17.175|2|2 +1.3.6.1.2.1.31.1.1.1.17.176|2|2 +1.3.6.1.2.1.31.1.1.1.17.177|2|2 +1.3.6.1.2.1.31.1.1.1.17.178|2|2 +1.3.6.1.2.1.31.1.1.1.17.179|2|2 +1.3.6.1.2.1.31.1.1.1.17.180|2|2 +1.3.6.1.2.1.31.1.1.1.17.181|2|2 +1.3.6.1.2.1.31.1.1.1.17.182|2|2 +1.3.6.1.2.1.31.1.1.1.17.183|2|2 +1.3.6.1.2.1.31.1.1.1.17.184|2|2 +1.3.6.1.2.1.31.1.1.1.17.185|2|2 +1.3.6.1.2.1.31.1.1.1.17.186|2|2 +1.3.6.1.2.1.31.1.1.1.17.187|2|2 +1.3.6.1.2.1.31.1.1.1.17.188|2|2 +1.3.6.1.2.1.31.1.1.1.17.189|2|2 1.3.6.1.2.1.31.1.1.1.18.1|4| 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| @@ -20625,8 +5512,8 @@ 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|HA1 -1.3.6.1.2.1.31.1.1.1.18.18|4|HA2 +1.3.6.1.2.1.31.1.1.1.18.17|4|redacted +1.3.6.1.2.1.31.1.1.1.18.18|4|redacted 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| @@ -20645,14 +5532,14 @@ 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|SURFNET gsw02out -1.3.6.1.2.1.31.1.1.1.18.38|4|SURFNET gsw01out +1.3.6.1.2.1.31.1.1.1.18.37|4|redacted +1.3.6.1.2.1.31.1.1.1.18.38|4|redacted 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|sslvpn tunnel interface +1.3.6.1.2.1.31.1.1.1.18.44|4|redacted 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| @@ -20664,14 +5551,14 @@ 1.3.6.1.2.1.31.1.1.1.18.53|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.55|4| -1.3.6.1.2.1.31.1.1.1.18.56|4|SSL VPN interface -1.3.6.1.2.1.31.1.1.1.18.57|4| +1.3.6.1.2.1.31.1.1.1.18.56|4|redacted +1.3.6.1.2.1.31.1.1.1.18.57|4|redacted 1.3.6.1.2.1.31.1.1.1.18.58|4| 1.3.6.1.2.1.31.1.1.1.18.59|4| 1.3.6.1.2.1.31.1.1.1.18.60|4| 1.3.6.1.2.1.31.1.1.1.18.61|4| 1.3.6.1.2.1.31.1.1.1.18.62|4| -1.3.6.1.2.1.31.1.1.1.18.63|4| +1.3.6.1.2.1.31.1.1.1.18.63|4|redacted 1.3.6.1.2.1.31.1.1.1.18.64|4| 1.3.6.1.2.1.31.1.1.1.18.65|4| 1.3.6.1.2.1.31.1.1.1.18.66|4| @@ -20681,38 +5568,38 @@ 1.3.6.1.2.1.31.1.1.1.18.70|4| 1.3.6.1.2.1.31.1.1.1.18.71|4| 1.3.6.1.2.1.31.1.1.1.18.72|4| -1.3.6.1.2.1.31.1.1.1.18.73|4| -1.3.6.1.2.1.31.1.1.1.18.74|4| -1.3.6.1.2.1.31.1.1.1.18.75|4| +1.3.6.1.2.1.31.1.1.1.18.73|4|redacted +1.3.6.1.2.1.31.1.1.1.18.74|4|redacted +1.3.6.1.2.1.31.1.1.1.18.75|4|redacted 1.3.6.1.2.1.31.1.1.1.18.76|4| 1.3.6.1.2.1.31.1.1.1.18.77|4| 1.3.6.1.2.1.31.1.1.1.18.78|4| 1.3.6.1.2.1.31.1.1.1.18.79|4| 1.3.6.1.2.1.31.1.1.1.18.80|4| -1.3.6.1.2.1.31.1.1.1.18.81|4| +1.3.6.1.2.1.31.1.1.1.18.81|4|redacted 1.3.6.1.2.1.31.1.1.1.18.82|4| 1.3.6.1.2.1.31.1.1.1.18.83|4| 1.3.6.1.2.1.31.1.1.1.18.84|4| 1.3.6.1.2.1.31.1.1.1.18.85|4| 1.3.6.1.2.1.31.1.1.1.18.86|4| -1.3.6.1.2.1.31.1.1.1.18.87|4| +1.3.6.1.2.1.31.1.1.1.18.87|4|redacted 1.3.6.1.2.1.31.1.1.1.18.88|4| 1.3.6.1.2.1.31.1.1.1.18.89|4| -1.3.6.1.2.1.31.1.1.1.18.90|4| +1.3.6.1.2.1.31.1.1.1.18.90|4|redacted 1.3.6.1.2.1.31.1.1.1.18.91|4| 1.3.6.1.2.1.31.1.1.1.18.92|4| 1.3.6.1.2.1.31.1.1.1.18.93|4| 1.3.6.1.2.1.31.1.1.1.18.94|4| 1.3.6.1.2.1.31.1.1.1.18.95|4| 1.3.6.1.2.1.31.1.1.1.18.96|4| -1.3.6.1.2.1.31.1.1.1.18.97|4| +1.3.6.1.2.1.31.1.1.1.18.97|4|redacted 1.3.6.1.2.1.31.1.1.1.18.98|4| 1.3.6.1.2.1.31.1.1.1.18.99|4| 1.3.6.1.2.1.31.1.1.1.18.100|4| 1.3.6.1.2.1.31.1.1.1.18.101|4| 1.3.6.1.2.1.31.1.1.1.18.102|4| 1.3.6.1.2.1.31.1.1.1.18.103|4| -1.3.6.1.2.1.31.1.1.1.18.104|4| +1.3.6.1.2.1.31.1.1.1.18.104|4|redacted 1.3.6.1.2.1.31.1.1.1.18.105|4| 1.3.6.1.2.1.31.1.1.1.18.106|4| 1.3.6.1.2.1.31.1.1.1.18.107|4| @@ -20727,28 +5614,25 @@ 1.3.6.1.2.1.31.1.1.1.18.116|4| 1.3.6.1.2.1.31.1.1.1.18.117|4| 1.3.6.1.2.1.31.1.1.1.18.118|4| -1.3.6.1.2.1.31.1.1.1.18.119|4| +1.3.6.1.2.1.31.1.1.1.18.119|4|redacted 1.3.6.1.2.1.31.1.1.1.18.120|4| -1.3.6.1.2.1.31.1.1.1.18.121|4| +1.3.6.1.2.1.31.1.1.1.18.121|4|redacted 1.3.6.1.2.1.31.1.1.1.18.122|4| -1.3.6.1.2.1.31.1.1.1.18.123|4|SSL VPN interface -1.3.6.1.2.1.31.1.1.1.18.124|4| +1.3.6.1.2.1.31.1.1.1.18.123|4|redacted +1.3.6.1.2.1.31.1.1.1.18.124|4|redacted 1.3.6.1.2.1.31.1.1.1.18.125|4| 1.3.6.1.2.1.31.1.1.1.18.126|4| 1.3.6.1.2.1.31.1.1.1.18.127|4| -1.3.6.1.2.1.31.1.1.1.18.128|4| +1.3.6.1.2.1.31.1.1.1.18.128|4|redacted 1.3.6.1.2.1.31.1.1.1.18.129|4| 1.3.6.1.2.1.31.1.1.1.18.130|4| 1.3.6.1.2.1.31.1.1.1.18.131|4| 1.3.6.1.2.1.31.1.1.1.18.132|4| 1.3.6.1.2.1.31.1.1.1.18.133|4| 1.3.6.1.2.1.31.1.1.1.18.134|4| -1.3.6.1.2.1.31.1.1.1.18.135|4| +1.3.6.1.2.1.31.1.1.1.18.135|4|tst 1.3.6.1.2.1.31.1.1.1.18.136|4| 1.3.6.1.2.1.31.1.1.1.18.137|4| -1.3.6.1.2.1.31.1.1.1.18.138|4| -1.3.6.1.2.1.31.1.1.1.18.139|4| -1.3.6.1.2.1.31.1.1.1.18.140|4| 1.3.6.1.2.1.31.1.1.1.18.141|4| 1.3.6.1.2.1.31.1.1.1.18.142|4| 1.3.6.1.2.1.31.1.1.1.18.143|4| @@ -20763,14 +5647,39 @@ 1.3.6.1.2.1.31.1.1.1.18.152|4| 1.3.6.1.2.1.31.1.1.1.18.153|4| 1.3.6.1.2.1.31.1.1.1.18.154|4| -1.3.6.1.2.1.31.1.1.1.18.155|4| +1.3.6.1.2.1.31.1.1.1.18.155|4|redacted 1.3.6.1.2.1.31.1.1.1.18.156|4| 1.3.6.1.2.1.31.1.1.1.18.157|4| -1.3.6.1.2.1.31.1.1.1.18.158|4| -1.3.6.1.2.1.31.1.1.1.18.159|4| -1.3.6.1.2.1.31.1.1.1.18.160|4| -1.3.6.1.2.1.31.1.1.1.18.161|4| +1.3.6.1.2.1.31.1.1.1.18.158|4|redacted +1.3.6.1.2.1.31.1.1.1.18.160|4|redacted +1.3.6.1.2.1.31.1.1.1.18.161|4|redacted 1.3.6.1.2.1.31.1.1.1.18.162|4| +1.3.6.1.2.1.31.1.1.1.18.163|4|redacted +1.3.6.1.2.1.31.1.1.1.18.164|4|redacted +1.3.6.1.2.1.31.1.1.1.18.165|4|redacted +1.3.6.1.2.1.31.1.1.1.18.166|4| +1.3.6.1.2.1.31.1.1.1.18.167|4|redacted +1.3.6.1.2.1.31.1.1.1.18.168|4|redacted +1.3.6.1.2.1.31.1.1.1.18.169|4|redacted +1.3.6.1.2.1.31.1.1.1.18.170|4|redacted +1.3.6.1.2.1.31.1.1.1.18.172|4|redacted +1.3.6.1.2.1.31.1.1.1.18.173|4|redacted +1.3.6.1.2.1.31.1.1.1.18.174|4| +1.3.6.1.2.1.31.1.1.1.18.175|4|redacted +1.3.6.1.2.1.31.1.1.1.18.176|4| +1.3.6.1.2.1.31.1.1.1.18.177|4| +1.3.6.1.2.1.31.1.1.1.18.178|4| +1.3.6.1.2.1.31.1.1.1.18.179|4| +1.3.6.1.2.1.31.1.1.1.18.180|4|redacted +1.3.6.1.2.1.31.1.1.1.18.181|4| +1.3.6.1.2.1.31.1.1.1.18.182|4|redacted +1.3.6.1.2.1.31.1.1.1.18.183|4|redacted +1.3.6.1.2.1.31.1.1.1.18.184|4| +1.3.6.1.2.1.31.1.1.1.18.185|4|redacted +1.3.6.1.2.1.31.1.1.1.18.186|4| +1.3.6.1.2.1.31.1.1.1.18.187|4| +1.3.6.1.2.1.31.1.1.1.18.188|4| +1.3.6.1.2.1.31.1.1.1.18.189|4| 1.3.6.1.2.1.31.1.1.1.19.1|67|0 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 @@ -20908,9 +5817,6 @@ 1.3.6.1.2.1.31.1.1.1.19.135|67|0 1.3.6.1.2.1.31.1.1.1.19.136|67|0 1.3.6.1.2.1.31.1.1.1.19.137|67|0 -1.3.6.1.2.1.31.1.1.1.19.138|67|0 -1.3.6.1.2.1.31.1.1.1.19.139|67|0 -1.3.6.1.2.1.31.1.1.1.19.140|67|0 1.3.6.1.2.1.31.1.1.1.19.141|67|0 1.3.6.1.2.1.31.1.1.1.19.142|67|0 1.3.6.1.2.1.31.1.1.1.19.143|67|0 @@ -20929,10 +5835,35 @@ 1.3.6.1.2.1.31.1.1.1.19.156|67|0 1.3.6.1.2.1.31.1.1.1.19.157|67|0 1.3.6.1.2.1.31.1.1.1.19.158|67|0 -1.3.6.1.2.1.31.1.1.1.19.159|67|0 1.3.6.1.2.1.31.1.1.1.19.160|67|0 1.3.6.1.2.1.31.1.1.1.19.161|67|0 1.3.6.1.2.1.31.1.1.1.19.162|67|0 +1.3.6.1.2.1.31.1.1.1.19.163|67|0 +1.3.6.1.2.1.31.1.1.1.19.164|67|0 +1.3.6.1.2.1.31.1.1.1.19.165|67|0 +1.3.6.1.2.1.31.1.1.1.19.166|67|0 +1.3.6.1.2.1.31.1.1.1.19.167|67|0 +1.3.6.1.2.1.31.1.1.1.19.168|67|0 +1.3.6.1.2.1.31.1.1.1.19.169|67|0 +1.3.6.1.2.1.31.1.1.1.19.170|67|0 +1.3.6.1.2.1.31.1.1.1.19.172|67|0 +1.3.6.1.2.1.31.1.1.1.19.173|67|0 +1.3.6.1.2.1.31.1.1.1.19.174|67|0 +1.3.6.1.2.1.31.1.1.1.19.175|67|0 +1.3.6.1.2.1.31.1.1.1.19.176|67|0 +1.3.6.1.2.1.31.1.1.1.19.177|67|0 +1.3.6.1.2.1.31.1.1.1.19.178|67|0 +1.3.6.1.2.1.31.1.1.1.19.179|67|0 +1.3.6.1.2.1.31.1.1.1.19.180|67|0 +1.3.6.1.2.1.31.1.1.1.19.181|67|0 +1.3.6.1.2.1.31.1.1.1.19.182|67|0 +1.3.6.1.2.1.31.1.1.1.19.183|67|0 +1.3.6.1.2.1.31.1.1.1.19.184|67|0 +1.3.6.1.2.1.31.1.1.1.19.185|67|0 +1.3.6.1.2.1.31.1.1.1.19.186|67|0 +1.3.6.1.2.1.31.1.1.1.19.187|67|0 +1.3.6.1.2.1.31.1.1.1.19.188|67|0 +1.3.6.1.2.1.31.1.1.1.19.189|67|0 1.3.6.1.2.1.31.1.2.1.3.0.1|2|1 1.3.6.1.2.1.31.1.2.1.3.0.2|2|2 1.3.6.1.2.1.31.1.2.1.3.0.3|2|2 @@ -20975,8 +5906,6 @@ 1.3.6.1.2.1.31.1.2.1.3.0.42|2|2 1.3.6.1.2.1.31.1.2.1.3.0.43|2|1 1.3.6.1.2.1.31.1.2.1.3.0.44|2|1 -1.3.6.1.2.1.31.1.2.1.3.0.47|2|2 -1.3.6.1.2.1.31.1.2.1.3.0.48|2|2 1.3.6.1.2.1.31.1.2.1.3.0.50|2|1 1.3.6.1.2.1.31.1.2.1.3.0.51|2|1 1.3.6.1.2.1.31.1.2.1.3.0.52|2|1 @@ -21031,8 +5960,8 @@ 1.3.6.1.2.1.31.1.2.1.3.0.102|2|1 1.3.6.1.2.1.31.1.2.1.3.0.103|2|1 1.3.6.1.2.1.31.1.2.1.3.0.104|2|1 -1.3.6.1.2.1.31.1.2.1.3.0.105|2|2 -1.3.6.1.2.1.31.1.2.1.3.0.106|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.105|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.106|2|2 1.3.6.1.2.1.31.1.2.1.3.0.107|2|1 1.3.6.1.2.1.31.1.2.1.3.0.108|2|1 1.3.6.1.2.1.31.1.2.1.3.0.109|2|1 @@ -21042,7 +5971,6 @@ 1.3.6.1.2.1.31.1.2.1.3.0.113|2|1 1.3.6.1.2.1.31.1.2.1.3.0.115|2|1 1.3.6.1.2.1.31.1.2.1.3.0.116|2|1 -1.3.6.1.2.1.31.1.2.1.3.0.117|2|1 1.3.6.1.2.1.31.1.2.1.3.0.118|2|1 1.3.6.1.2.1.31.1.2.1.3.0.119|2|1 1.3.6.1.2.1.31.1.2.1.3.0.120|2|1 @@ -21063,9 +5991,6 @@ 1.3.6.1.2.1.31.1.2.1.3.0.135|2|1 1.3.6.1.2.1.31.1.2.1.3.0.136|2|1 1.3.6.1.2.1.31.1.2.1.3.0.137|2|1 -1.3.6.1.2.1.31.1.2.1.3.0.138|2|1 -1.3.6.1.2.1.31.1.2.1.3.0.139|2|1 -1.3.6.1.2.1.31.1.2.1.3.0.140|2|1 1.3.6.1.2.1.31.1.2.1.3.0.141|2|1 1.3.6.1.2.1.31.1.2.1.3.0.142|2|1 1.3.6.1.2.1.31.1.2.1.3.0.143|2|1 @@ -21073,7 +5998,7 @@ 1.3.6.1.2.1.31.1.2.1.3.0.145|2|1 1.3.6.1.2.1.31.1.2.1.3.0.146|2|1 1.3.6.1.2.1.31.1.2.1.3.0.147|2|1 -1.3.6.1.2.1.31.1.2.1.3.0.148|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.148|2|2 1.3.6.1.2.1.31.1.2.1.3.0.149|2|1 1.3.6.1.2.1.31.1.2.1.3.0.150|2|1 1.3.6.1.2.1.31.1.2.1.3.0.151|2|1 @@ -21084,10 +6009,35 @@ 1.3.6.1.2.1.31.1.2.1.3.0.156|2|1 1.3.6.1.2.1.31.1.2.1.3.0.157|2|1 1.3.6.1.2.1.31.1.2.1.3.0.158|2|1 -1.3.6.1.2.1.31.1.2.1.3.0.159|2|1 1.3.6.1.2.1.31.1.2.1.3.0.160|2|1 1.3.6.1.2.1.31.1.2.1.3.0.161|2|1 1.3.6.1.2.1.31.1.2.1.3.0.162|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.163|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.164|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.165|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.166|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.167|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.168|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.169|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.170|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.172|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.173|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.174|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.175|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.176|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.177|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.178|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.179|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.180|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.181|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.182|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.183|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.184|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.185|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.186|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.187|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.188|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.189|2|1 1.3.6.1.2.1.31.1.2.1.3.1.0|2|1 1.3.6.1.2.1.31.1.2.1.3.2.0|2|2 1.3.6.1.2.1.31.1.2.1.3.3.0|2|2 @@ -21134,8 +6084,8 @@ 1.3.6.1.2.1.31.1.2.1.3.44.0|2|1 1.3.6.1.2.1.31.1.2.1.3.45.0|2|1 1.3.6.1.2.1.31.1.2.1.3.46.0|2|1 -1.3.6.1.2.1.31.1.2.1.3.47.0|2|2 -1.3.6.1.2.1.31.1.2.1.3.48.0|2|2 +1.3.6.1.2.1.31.1.2.1.3.47.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.48.0|2|1 1.3.6.1.2.1.31.1.2.1.3.49.35|2|1 1.3.6.1.2.1.31.1.2.1.3.49.36|2|1 1.3.6.1.2.1.31.1.2.1.3.50.49|2|1 @@ -21160,7 +6110,7 @@ 1.3.6.1.2.1.31.1.2.1.3.69.49|2|1 1.3.6.1.2.1.31.1.2.1.3.70.49|2|1 1.3.6.1.2.1.31.1.2.1.3.71.49|2|1 -1.3.6.1.2.1.31.1.2.1.3.72.114|2|1 +1.3.6.1.2.1.31.1.2.1.3.72.49|2|1 1.3.6.1.2.1.31.1.2.1.3.73.49|2|1 1.3.6.1.2.1.31.1.2.1.3.74.49|2|1 1.3.6.1.2.1.31.1.2.1.3.75.49|2|1 @@ -21168,7 +6118,7 @@ 1.3.6.1.2.1.31.1.2.1.3.77.49|2|1 1.3.6.1.2.1.31.1.2.1.3.78.49|2|1 1.3.6.1.2.1.31.1.2.1.3.79.49|2|1 -1.3.6.1.2.1.31.1.2.1.3.80.49|2|1 +1.3.6.1.2.1.31.1.2.1.3.80.117|2|1 1.3.6.1.2.1.31.1.2.1.3.81.49|2|1 1.3.6.1.2.1.31.1.2.1.3.82.49|2|1 1.3.6.1.2.1.31.1.2.1.3.83.0|2|1 @@ -21192,9 +6142,9 @@ 1.3.6.1.2.1.31.1.2.1.3.101.49|2|1 1.3.6.1.2.1.31.1.2.1.3.102.49|2|1 1.3.6.1.2.1.31.1.2.1.3.103.49|2|1 -1.3.6.1.2.1.31.1.2.1.3.104.49|2|1 -1.3.6.1.2.1.31.1.2.1.3.105.61|2|2 -1.3.6.1.2.1.31.1.2.1.3.106.49|2|1 +1.3.6.1.2.1.31.1.2.1.3.104.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.105.61|2|1 +1.3.6.1.2.1.31.1.2.1.3.106.49|2|2 1.3.6.1.2.1.31.1.2.1.3.107.0|2|1 1.3.6.1.2.1.31.1.2.1.3.108.49|2|1 1.3.6.1.2.1.31.1.2.1.3.109.49|2|1 @@ -21209,10 +6159,10 @@ 1.3.6.1.2.1.31.1.2.1.3.118.49|2|1 1.3.6.1.2.1.31.1.2.1.3.119.49|2|1 1.3.6.1.2.1.31.1.2.1.3.120.49|2|1 -1.3.6.1.2.1.31.1.2.1.3.121.114|2|1 +1.3.6.1.2.1.31.1.2.1.3.121.49|2|1 1.3.6.1.2.1.31.1.2.1.3.122.49|2|1 -1.3.6.1.2.1.31.1.2.1.3.123.0|2|1 -1.3.6.1.2.1.31.1.2.1.3.124.45|2|1 +1.3.6.1.2.1.31.1.2.1.3.123.49|2|1 +1.3.6.1.2.1.31.1.2.1.3.124.49|2|1 1.3.6.1.2.1.31.1.2.1.3.125.49|2|1 1.3.6.1.2.1.31.1.2.1.3.126.49|2|1 1.3.6.1.2.1.31.1.2.1.3.127.49|2|1 @@ -21226,34 +6176,56 @@ 1.3.6.1.2.1.31.1.2.1.3.135.49|2|1 1.3.6.1.2.1.31.1.2.1.3.136.49|2|1 1.3.6.1.2.1.31.1.2.1.3.137.49|2|1 -1.3.6.1.2.1.31.1.2.1.3.138.46|2|1 -1.3.6.1.2.1.31.1.2.1.3.139.0|2|1 -1.3.6.1.2.1.31.1.2.1.3.140.0|2|1 1.3.6.1.2.1.31.1.2.1.3.141.49|2|1 1.3.6.1.2.1.31.1.2.1.3.142.49|2|1 1.3.6.1.2.1.31.1.2.1.3.143.49|2|1 1.3.6.1.2.1.31.1.2.1.3.144.114|2|1 -1.3.6.1.2.1.31.1.2.1.3.145.46|2|1 +1.3.6.1.2.1.31.1.2.1.3.145.48|2|1 1.3.6.1.2.1.31.1.2.1.3.146.49|2|1 1.3.6.1.2.1.31.1.2.1.3.147.49|2|1 -1.3.6.1.2.1.31.1.2.1.3.148.49|2|1 +1.3.6.1.2.1.31.1.2.1.3.148.49|2|2 1.3.6.1.2.1.31.1.2.1.3.149.49|2|1 1.3.6.1.2.1.31.1.2.1.3.150.49|2|1 1.3.6.1.2.1.31.1.2.1.3.151.49|2|1 -1.3.6.1.2.1.31.1.2.1.3.152.46|2|1 +1.3.6.1.2.1.31.1.2.1.3.152.48|2|1 1.3.6.1.2.1.31.1.2.1.3.153.49|2|1 1.3.6.1.2.1.31.1.2.1.3.154.46|2|1 1.3.6.1.2.1.31.1.2.1.3.155.49|2|1 1.3.6.1.2.1.31.1.2.1.3.156.49|2|1 1.3.6.1.2.1.31.1.2.1.3.157.49|2|1 1.3.6.1.2.1.31.1.2.1.3.158.49|2|1 -1.3.6.1.2.1.31.1.2.1.3.159.49|2|1 1.3.6.1.2.1.31.1.2.1.3.160.49|2|1 1.3.6.1.2.1.31.1.2.1.3.161.49|2|1 1.3.6.1.2.1.31.1.2.1.3.162.49|2|1 -1.3.6.1.2.1.47.1.1.1.1.2.1|4|Fortinet FGT_1500D, HW Serial#: FG1K5D3I14802132 +1.3.6.1.2.1.31.1.2.1.3.163.49|2|1 +1.3.6.1.2.1.31.1.2.1.3.164.49|2|1 +1.3.6.1.2.1.31.1.2.1.3.165.49|2|1 +1.3.6.1.2.1.31.1.2.1.3.166.49|2|1 +1.3.6.1.2.1.31.1.2.1.3.167.49|2|1 +1.3.6.1.2.1.31.1.2.1.3.168.49|2|1 +1.3.6.1.2.1.31.1.2.1.3.169.49|2|1 +1.3.6.1.2.1.31.1.2.1.3.170.49|2|1 +1.3.6.1.2.1.31.1.2.1.3.172.49|2|1 +1.3.6.1.2.1.31.1.2.1.3.173.49|2|1 +1.3.6.1.2.1.31.1.2.1.3.174.49|2|1 +1.3.6.1.2.1.31.1.2.1.3.175.49|2|1 +1.3.6.1.2.1.31.1.2.1.3.176.117|2|1 +1.3.6.1.2.1.31.1.2.1.3.177.47|2|1 +1.3.6.1.2.1.31.1.2.1.3.178.48|2|1 +1.3.6.1.2.1.31.1.2.1.3.179.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.180.49|2|1 +1.3.6.1.2.1.31.1.2.1.3.181.49|2|1 +1.3.6.1.2.1.31.1.2.1.3.182.49|2|1 +1.3.6.1.2.1.31.1.2.1.3.183.49|2|1 +1.3.6.1.2.1.31.1.2.1.3.184.49|2|1 +1.3.6.1.2.1.31.1.2.1.3.185.49|2|1 +1.3.6.1.2.1.31.1.2.1.3.186.49|2|1 +1.3.6.1.2.1.31.1.2.1.3.187.49|2|1 +1.3.6.1.2.1.31.1.2.1.3.188.49|2|1 +1.3.6.1.2.1.31.1.2.1.3.189.49|2|1 +1.3.6.1.2.1.47.1.1.1.1.2.1|4|Fortinet FGT_1500D, HW Serial#: redacted 1.3.6.1.2.1.47.1.1.1.1.2.2|4|Ethernet Port, Vitual Domain: root -1.3.6.1.2.1.47.1.1.1.1.2.3|4|Ethernet Port, Vitual Domain: vsys_hamgmt +1.3.6.1.2.1.47.1.1.1.1.2.3|4|Ethernet Port, Vitual Domain: root 1.3.6.1.2.1.47.1.1.1.1.2.4|4|Ethernet Port, Vitual Domain: root 1.3.6.1.2.1.47.1.1.1.1.2.5|4|Ethernet Port, Vitual Domain: root 1.3.6.1.2.1.47.1.1.1.1.2.6|4|Ethernet Port, Vitual Domain: root @@ -21493,48 +6465,48 @@ 1.3.6.1.2.1.47.1.1.1.1.6.48|2|47 1.3.6.1.2.1.47.1.1.1.1.7.1|4|FGT_1500D 1.3.6.1.2.1.47.1.1.1.1.7.2|4|mgmt1 -1.3.6.1.2.1.47.1.1.1.1.7.3|4|mgmt2 +1.3.6.1.2.1.47.1.1.1.1.7.3|4|port1 1.3.6.1.2.1.47.1.1.1.1.7.4|4|modem -1.3.6.1.2.1.47.1.1.1.1.7.5|4|npu0_vlink0 -1.3.6.1.2.1.47.1.1.1.1.7.6|4|npu0_vlink1 -1.3.6.1.2.1.47.1.1.1.1.7.7|4|npu1_vlink0 -1.3.6.1.2.1.47.1.1.1.1.7.8|4|npu1_vlink1 -1.3.6.1.2.1.47.1.1.1.1.7.9|4|port1 -1.3.6.1.2.1.47.1.1.1.1.7.10|4|port2 -1.3.6.1.2.1.47.1.1.1.1.7.11|4|port3 -1.3.6.1.2.1.47.1.1.1.1.7.12|4|port4 -1.3.6.1.2.1.47.1.1.1.1.7.13|4|port5 -1.3.6.1.2.1.47.1.1.1.1.7.14|4|port6 -1.3.6.1.2.1.47.1.1.1.1.7.15|4|port7 -1.3.6.1.2.1.47.1.1.1.1.7.16|4|port8 -1.3.6.1.2.1.47.1.1.1.1.7.17|4|port9 -1.3.6.1.2.1.47.1.1.1.1.7.18|4|port10 -1.3.6.1.2.1.47.1.1.1.1.7.19|4|port11 -1.3.6.1.2.1.47.1.1.1.1.7.20|4|port12 -1.3.6.1.2.1.47.1.1.1.1.7.21|4|port13 -1.3.6.1.2.1.47.1.1.1.1.7.22|4|port14 -1.3.6.1.2.1.47.1.1.1.1.7.23|4|port15 -1.3.6.1.2.1.47.1.1.1.1.7.24|4|port16 -1.3.6.1.2.1.47.1.1.1.1.7.25|4|port17 -1.3.6.1.2.1.47.1.1.1.1.7.26|4|port18 -1.3.6.1.2.1.47.1.1.1.1.7.27|4|port19 -1.3.6.1.2.1.47.1.1.1.1.7.28|4|port20 -1.3.6.1.2.1.47.1.1.1.1.7.29|4|port21 -1.3.6.1.2.1.47.1.1.1.1.7.30|4|port22 -1.3.6.1.2.1.47.1.1.1.1.7.31|4|port23 -1.3.6.1.2.1.47.1.1.1.1.7.32|4|port24 -1.3.6.1.2.1.47.1.1.1.1.7.33|4|port25 -1.3.6.1.2.1.47.1.1.1.1.7.34|4|port26 -1.3.6.1.2.1.47.1.1.1.1.7.35|4|port27 -1.3.6.1.2.1.47.1.1.1.1.7.36|4|port28 -1.3.6.1.2.1.47.1.1.1.1.7.37|4|port29 -1.3.6.1.2.1.47.1.1.1.1.7.38|4|port30 -1.3.6.1.2.1.47.1.1.1.1.7.39|4|port31 -1.3.6.1.2.1.47.1.1.1.1.7.40|4|port32 -1.3.6.1.2.1.47.1.1.1.1.7.41|4|port33 -1.3.6.1.2.1.47.1.1.1.1.7.42|4|port34 -1.3.6.1.2.1.47.1.1.1.1.7.43|4|port35 -1.3.6.1.2.1.47.1.1.1.1.7.44|4|port36 +1.3.6.1.2.1.47.1.1.1.1.7.5|4|port2 +1.3.6.1.2.1.47.1.1.1.1.7.6|4|port3 +1.3.6.1.2.1.47.1.1.1.1.7.7|4|port4 +1.3.6.1.2.1.47.1.1.1.1.7.8|4|port5 +1.3.6.1.2.1.47.1.1.1.1.7.9|4|port6 +1.3.6.1.2.1.47.1.1.1.1.7.10|4|port7 +1.3.6.1.2.1.47.1.1.1.1.7.11|4|port8 +1.3.6.1.2.1.47.1.1.1.1.7.12|4|port9 +1.3.6.1.2.1.47.1.1.1.1.7.13|4|port10 +1.3.6.1.2.1.47.1.1.1.1.7.14|4|port11 +1.3.6.1.2.1.47.1.1.1.1.7.15|4|port12 +1.3.6.1.2.1.47.1.1.1.1.7.16|4|port13 +1.3.6.1.2.1.47.1.1.1.1.7.17|4|port14 +1.3.6.1.2.1.47.1.1.1.1.7.18|4|port15 +1.3.6.1.2.1.47.1.1.1.1.7.19|4|port16 +1.3.6.1.2.1.47.1.1.1.1.7.20|4|port17 +1.3.6.1.2.1.47.1.1.1.1.7.21|4|port18 +1.3.6.1.2.1.47.1.1.1.1.7.22|4|port19 +1.3.6.1.2.1.47.1.1.1.1.7.23|4|port20 +1.3.6.1.2.1.47.1.1.1.1.7.24|4|port21 +1.3.6.1.2.1.47.1.1.1.1.7.25|4|port22 +1.3.6.1.2.1.47.1.1.1.1.7.26|4|port23 +1.3.6.1.2.1.47.1.1.1.1.7.27|4|port24 +1.3.6.1.2.1.47.1.1.1.1.7.28|4|port25 +1.3.6.1.2.1.47.1.1.1.1.7.29|4|port26 +1.3.6.1.2.1.47.1.1.1.1.7.30|4|port27 +1.3.6.1.2.1.47.1.1.1.1.7.31|4|port28 +1.3.6.1.2.1.47.1.1.1.1.7.32|4|port29 +1.3.6.1.2.1.47.1.1.1.1.7.33|4|port30 +1.3.6.1.2.1.47.1.1.1.1.7.34|4|port31 +1.3.6.1.2.1.47.1.1.1.1.7.35|4|port32 +1.3.6.1.2.1.47.1.1.1.1.7.36|4|port33 +1.3.6.1.2.1.47.1.1.1.1.7.37|4|port34 +1.3.6.1.2.1.47.1.1.1.1.7.38|4|port35 +1.3.6.1.2.1.47.1.1.1.1.7.39|4|port36 +1.3.6.1.2.1.47.1.1.1.1.7.40|4|port37 +1.3.6.1.2.1.47.1.1.1.1.7.41|4|port38 +1.3.6.1.2.1.47.1.1.1.1.7.42|4|port39 +1.3.6.1.2.1.47.1.1.1.1.7.43|4|port40 +1.3.6.1.2.1.47.1.1.1.1.7.44|4|mgmt2 1.3.6.1.2.1.47.1.1.1.1.7.45|4|port37 1.3.6.1.2.1.47.1.1.1.1.7.46|4|port38 1.3.6.1.2.1.47.1.1.1.1.7.47|4|port39 @@ -21635,7 +6607,7 @@ 1.3.6.1.2.1.47.1.1.1.1.9.46|4| 1.3.6.1.2.1.47.1.1.1.1.9.47|4| 1.3.6.1.2.1.47.1.1.1.1.9.48|4| -1.3.6.1.2.1.47.1.1.1.1.10.1|4|FortiGate-1500D v5.4.8,build1183b1183,180115 (GA) +1.3.6.1.2.1.47.1.1.1.1.10.1|4|FortiGate-1500D v6.4.8,build1914,211117 (GA) 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| @@ -21683,7 +6655,7 @@ 1.3.6.1.2.1.47.1.1.1.1.10.46|4| 1.3.6.1.2.1.47.1.1.1.1.10.47|4| 1.3.6.1.2.1.47.1.1.1.1.10.48|4| -1.3.6.1.2.1.47.1.1.1.1.11.1|4|FG1K5D3I14802132 +1.3.6.1.2.1.47.1.1.1.1.11.1|4|redacted 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| @@ -21849,8 +6821,8 @@ 1.3.6.1.2.1.47.1.1.1.1.14.20|4| 1.3.6.1.2.1.47.1.1.1.1.14.21|4| 1.3.6.1.2.1.47.1.1.1.1.14.22|4| -1.3.6.1.2.1.47.1.1.1.1.14.23|4|HA1 -1.3.6.1.2.1.47.1.1.1.1.14.24|4|HA2 +1.3.6.1.2.1.47.1.1.1.1.14.23|4|redacted +1.3.6.1.2.1.47.1.1.1.1.14.24|4|redacted 1.3.6.1.2.1.47.1.1.1.1.14.25|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.27|4| @@ -21869,8 +6841,8 @@ 1.3.6.1.2.1.47.1.1.1.1.14.40|4| 1.3.6.1.2.1.47.1.1.1.1.14.41|4| 1.3.6.1.2.1.47.1.1.1.1.14.42|4| -1.3.6.1.2.1.47.1.1.1.1.14.43|4|SURFNET gsw02out -1.3.6.1.2.1.47.1.1.1.1.14.44|4|SURFNET gsw01out +1.3.6.1.2.1.47.1.1.1.1.14.43|4|redacted +1.3.6.1.2.1.47.1.1.1.1.14.44|4|redacted 1.3.6.1.2.1.47.1.1.1.1.14.45|4| 1.3.6.1.2.1.47.1.1.1.1.14.46|4| 1.3.6.1.2.1.47.1.1.1.1.14.47|4| @@ -22068,61 +7040,61 @@ 1.3.6.1.2.1.47.1.1.1.1.18.47|4| 1.3.6.1.2.1.47.1.1.1.1.18.48|4| 1.3.6.1.2.1.47.1.3.2.1.2.2.0|6|1.3.6.1.2.1.2.2.1.1.1 -1.3.6.1.2.1.47.1.3.2.1.2.3.0|6|1.3.6.1.2.1.2.2.1.1.2 +1.3.6.1.2.1.47.1.3.2.1.2.3.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.4.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.5.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.6.0|6|1.3.6.1.2.1.2.2.1.1.5 -1.3.6.1.2.1.47.1.3.2.1.2.7.0|6|1.3.6.1.2.1.2.2.1.1.6 -1.3.6.1.2.1.47.1.3.2.1.2.8.0|6|1.3.6.1.2.1.2.2.1.1.7 -1.3.6.1.2.1.47.1.3.2.1.2.9.0|6|1.3.6.1.2.1.2.2.1.1.8 -1.3.6.1.2.1.47.1.3.2.1.2.10.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.11.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.12.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.13.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.14.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.15.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.16.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.17.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.18.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.19.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.20.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.21.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.22.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.23.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.24.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.25.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.26.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.27.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.28.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.29.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.30.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.31.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.32.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.33.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.34.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.35.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.36.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.37.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.38.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.39.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.40.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.41.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.42.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.43.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.44.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.45.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.46.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.47.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.48.0|6|1.3.6.1.2.1.2.2.1.1.47 -1.3.6.1.4.1.12356.101.4.1.1.0|4|v5.4.8,build1183,180115 (GA) -1.3.6.1.4.1.12356.101.4.1.3.0|66|14 -1.3.6.1.4.1.12356.101.4.1.4.0|66|51 -1.3.6.1.4.1.12356.101.4.1.5.0|66|16449576 -1.3.6.1.4.1.12356.101.4.1.8.0|66|116764 -1.3.6.1.4.1.12356.101.4.1.11.0|66|504 -1.3.6.1.4.1.12356.101.4.1.12.0|66|838 -1.3.6.1.4.1.12356.101.4.1.13.0|66|567 -1.3.6.1.4.1.12356.101.4.1.14.0|66|881 +1.3.6.1.2.1.47.1.3.2.1.2.5.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.6.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.7.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.8.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.9.0|6|1.3.6.1.2.1.2.2.1.1.2 +1.3.6.1.2.1.47.1.3.2.1.2.10.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.11.0|6|1.3.6.1.2.1.2.2.1.1.5 +1.3.6.1.2.1.47.1.3.2.1.2.12.0|6|1.3.6.1.2.1.2.2.1.1.6 +1.3.6.1.2.1.47.1.3.2.1.2.13.0|6|1.3.6.1.2.1.2.2.1.1.7 +1.3.6.1.2.1.47.1.3.2.1.2.14.0|6|1.3.6.1.2.1.2.2.1.1.8 +1.3.6.1.2.1.47.1.3.2.1.2.15.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.16.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.17.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.18.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.19.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.20.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.21.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.22.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.23.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.24.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.25.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.26.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.27.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.28.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.29.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.30.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.31.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.32.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.33.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.34.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.35.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.36.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.37.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.38.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.39.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.40.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.41.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.42.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.43.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.44.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.45.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.46.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.47.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.48.0|6|1.3.6.1.2.1.2.2.1.1.42 +1.3.6.1.4.1.12356.101.4.1.1.0|4|v6.4.8,build1914,211117 (GA) +1.3.6.1.4.1.12356.101.4.1.3.0|66|6 +1.3.6.1.4.1.12356.101.4.1.4.0|66|32 +1.3.6.1.4.1.12356.101.4.1.5.0|66|16448800 +1.3.6.1.4.1.12356.101.4.1.8.0|66|26190 +1.3.6.1.4.1.12356.101.4.1.11.0|66|203 +1.3.6.1.4.1.12356.101.4.1.12.0|66|218 +1.3.6.1.4.1.12356.101.4.1.13.0|66|214 +1.3.6.1.4.1.12356.101.4.1.14.0|66|212 1.3.6.1.4.1.12356.101.4.3.1.0|2|54 1.3.6.1.4.1.12356.101.4.3.2.1.1.1|2|1 1.3.6.1.4.1.12356.101.4.3.2.1.1.2|2|2 @@ -22232,59 +7204,59 @@ 1.3.6.1.4.1.12356.101.4.3.2.1.2.52|4|INA219 PS1 Vbus 1.3.6.1.4.1.12356.101.4.3.2.1.2.53|4|INA219 PS2 Vsht 1.3.6.1.4.1.12356.101.4.3.2.1.2.54|4|INA219 PS2 Vbus -1.3.6.1.4.1.12356.101.4.3.2.1.3.1|4|3.399 -1.3.6.1.4.1.12356.101.4.3.2.1.3.2|4|5.1215 +1.3.6.1.4.1.12356.101.4.3.2.1.3.1|4|3.3504 +1.3.6.1.4.1.12356.101.4.3.2.1.3.2|4|5.097 1.3.6.1.4.1.12356.101.4.3.2.1.3.3|4|11.959 -1.3.6.1.4.1.12356.101.4.3.2.1.3.4|4|1.1471 +1.3.6.1.4.1.12356.101.4.3.2.1.3.4|4|1.1373 1.3.6.1.4.1.12356.101.4.3.2.1.3.5|4|1.0589 -1.3.6.1.4.1.12356.101.4.3.2.1.3.6|4|0.8825 +1.3.6.1.4.1.12356.101.4.3.2.1.3.6|4|0.8629 1.3.6.1.4.1.12356.101.4.3.2.1.3.7|4|1.3431 1.3.6.1.4.1.12356.101.4.3.2.1.3.8|4|1.3431 -1.3.6.1.4.1.12356.101.4.3.2.1.3.9|4|1.152 +1.3.6.1.4.1.12356.101.4.3.2.1.3.9|4|1.136 1.3.6.1.4.1.12356.101.4.3.2.1.3.10|4|1.344 -1.3.6.1.4.1.12356.101.4.3.2.1.3.11|4|0.668 +1.3.6.1.4.1.12356.101.4.3.2.1.3.11|4|0.664 1.3.6.1.4.1.12356.101.4.3.2.1.3.12|4|1.344 -1.3.6.1.4.1.12356.101.4.3.2.1.3.13|4|0.668 -1.3.6.1.4.1.12356.101.4.3.2.1.3.14|4|0.976 -1.3.6.1.4.1.12356.101.4.3.2.1.3.15|4|3.312 +1.3.6.1.4.1.12356.101.4.3.2.1.3.13|4|0.664 +1.3.6.1.4.1.12356.101.4.3.2.1.3.14|4|0.968 +1.3.6.1.4.1.12356.101.4.3.2.1.3.15|4|3.264 1.3.6.1.4.1.12356.101.4.3.2.1.3.16|4|3.264 1.3.6.1.4.1.12356.101.4.3.2.1.3.17|4|1.056 -1.3.6.1.4.1.12356.101.4.3.2.1.3.18|4|61 -1.3.6.1.4.1.12356.101.4.3.2.1.3.19|4|59 -1.3.6.1.4.1.12356.101.4.3.2.1.3.20|4|61 -1.3.6.1.4.1.12356.101.4.3.2.1.3.21|4|61 -1.3.6.1.4.1.12356.101.4.3.2.1.3.22|4|60 -1.3.6.1.4.1.12356.101.4.3.2.1.3.23|4|62 -1.3.6.1.4.1.12356.101.4.3.2.1.3.24|4|60 -1.3.6.1.4.1.12356.101.4.3.2.1.3.25|4|46 -1.3.6.1.4.1.12356.101.4.3.2.1.3.26|4|33 -1.3.6.1.4.1.12356.101.4.3.2.1.3.27|4|34 -1.3.6.1.4.1.12356.101.4.3.2.1.3.28|4|37 -1.3.6.1.4.1.12356.101.4.3.2.1.3.29|4|41 -1.3.6.1.4.1.12356.101.4.3.2.1.3.30|4|34 +1.3.6.1.4.1.12356.101.4.3.2.1.3.18|4|53 +1.3.6.1.4.1.12356.101.4.3.2.1.3.19|4|52 +1.3.6.1.4.1.12356.101.4.3.2.1.3.20|4|53 +1.3.6.1.4.1.12356.101.4.3.2.1.3.21|4|54 +1.3.6.1.4.1.12356.101.4.3.2.1.3.22|4|49 +1.3.6.1.4.1.12356.101.4.3.2.1.3.23|4|50 +1.3.6.1.4.1.12356.101.4.3.2.1.3.24|4|53 +1.3.6.1.4.1.12356.101.4.3.2.1.3.25|4|39 +1.3.6.1.4.1.12356.101.4.3.2.1.3.26|4|28 +1.3.6.1.4.1.12356.101.4.3.2.1.3.27|4|30 +1.3.6.1.4.1.12356.101.4.3.2.1.3.28|4|33 +1.3.6.1.4.1.12356.101.4.3.2.1.3.29|4|36 +1.3.6.1.4.1.12356.101.4.3.2.1.3.30|4|30 1.3.6.1.4.1.12356.101.4.3.2.1.3.31|4|33 -1.3.6.1.4.1.12356.101.4.3.2.1.3.32|4|36 -1.3.6.1.4.1.12356.101.4.3.2.1.3.33|4|33 -1.3.6.1.4.1.12356.101.4.3.2.1.3.34|4|33 +1.3.6.1.4.1.12356.101.4.3.2.1.3.32|4|34 +1.3.6.1.4.1.12356.101.4.3.2.1.3.33|4|29 +1.3.6.1.4.1.12356.101.4.3.2.1.3.34|4|30 1.3.6.1.4.1.12356.101.4.3.2.1.3.35|4|3800 -1.3.6.1.4.1.12356.101.4.3.2.1.3.36|4|3300 -1.3.6.1.4.1.12356.101.4.3.2.1.3.37|4|3500 +1.3.6.1.4.1.12356.101.4.3.2.1.3.36|4|3200 +1.3.6.1.4.1.12356.101.4.3.2.1.3.37|4|3700 1.3.6.1.4.1.12356.101.4.3.2.1.3.38|4|3100 -1.3.6.1.4.1.12356.101.4.3.2.1.3.39|4|3400 -1.3.6.1.4.1.12356.101.4.3.2.1.3.40|4|3000 -1.3.6.1.4.1.12356.101.4.3.2.1.3.41|4|27 -1.3.6.1.4.1.12356.101.4.3.2.1.3.42|4|12544 -1.3.6.1.4.1.12356.101.4.3.2.1.3.43|4|224 -1.3.6.1.4.1.12356.101.4.3.2.1.3.44|4|11.906 +1.3.6.1.4.1.12356.101.4.3.2.1.3.39|4|3900 +1.3.6.1.4.1.12356.101.4.3.2.1.3.40|4|3400 +1.3.6.1.4.1.12356.101.4.3.2.1.3.41|4|26 +1.3.6.1.4.1.12356.101.4.3.2.1.3.42|4|12160 +1.3.6.1.4.1.12356.101.4.3.2.1.3.43|4|226 +1.3.6.1.4.1.12356.101.4.3.2.1.3.44|4|12.032 1.3.6.1.4.1.12356.101.4.3.2.1.3.45|4|0 -1.3.6.1.4.1.12356.101.4.3.2.1.3.46|4|27 -1.3.6.1.4.1.12356.101.4.3.2.1.3.47|4|12544 -1.3.6.1.4.1.12356.101.4.3.2.1.3.48|4|226 +1.3.6.1.4.1.12356.101.4.3.2.1.3.46|4|25 +1.3.6.1.4.1.12356.101.4.3.2.1.3.47|4|12032 +1.3.6.1.4.1.12356.101.4.3.2.1.3.48|4|232 1.3.6.1.4.1.12356.101.4.3.2.1.3.49|4|11.969 1.3.6.1.4.1.12356.101.4.3.2.1.3.50|4|0 -1.3.6.1.4.1.12356.101.4.3.2.1.3.51|4|0.00864 +1.3.6.1.4.1.12356.101.4.3.2.1.3.51|4|0.00736 1.3.6.1.4.1.12356.101.4.3.2.1.3.52|4|11.904 -1.3.6.1.4.1.12356.101.4.3.2.1.3.53|4|0.00768 +1.3.6.1.4.1.12356.101.4.3.2.1.3.53|4|0.00832 1.3.6.1.4.1.12356.101.4.3.2.1.3.54|4|11.904 1.3.6.1.4.1.12356.101.4.3.2.1.4.1|2|0 1.3.6.1.4.1.12356.101.4.3.2.1.4.2|2|0 @@ -22340,3 +7312,358 @@ 1.3.6.1.4.1.12356.101.4.3.2.1.4.52|2|0 1.3.6.1.4.1.12356.101.4.3.2.1.4.53|2|0 1.3.6.1.4.1.12356.101.4.3.2.1.4.54|2|0 +1.3.6.1.4.1.12356.101.4.4.2.1.2.1|66|49 +1.3.6.1.4.1.12356.101.4.4.2.1.2.2|66|0 +1.3.6.1.4.1.12356.101.4.4.2.1.2.3|66|1 +1.3.6.1.4.1.12356.101.4.4.2.1.2.4|66|0 +1.3.6.1.4.1.12356.101.4.4.2.1.2.5|66|3 +1.3.6.1.4.1.12356.101.4.4.2.1.2.6|66|0 +1.3.6.1.4.1.12356.101.4.4.2.1.2.7|66|0 +1.3.6.1.4.1.12356.101.4.4.2.1.2.8|66|0 +1.3.6.1.4.1.12356.101.4.4.2.1.2.9|66|3 +1.3.6.1.4.1.12356.101.4.4.2.1.2.10|66|0 +1.3.6.1.4.1.12356.101.4.4.2.1.2.11|66|1 +1.3.6.1.4.1.12356.101.4.4.2.1.2.12|66|0 +1.3.6.1.4.1.12356.101.4.4.2.1.2.13|66|0 +1.3.6.1.4.1.12356.101.4.4.2.1.2.14|66|0 +1.3.6.1.4.1.12356.101.12.1.1.0|2|35 +1.3.6.1.4.1.12356.101.12.2.2.1.2.1|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.2|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.2.1|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.3|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.3.1|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.4|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.4.1|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.4.2|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.5|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.5.1|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.6|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.7|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.8|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.9|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.10|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.11|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.12|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.13|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.14|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.15|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.16|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.17|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.18|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.19|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.20|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.21|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.22|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.23|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.24|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.25|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.26|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.27|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.28|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.29|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.30|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.31|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.32|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.33|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.34|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.35|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.36|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.37|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.38|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.39|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.40|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.41|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.42|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.43|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.44|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.45|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.46|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.47|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.48|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.49|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.50|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.51|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.52|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.53|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.54|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.55|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.56|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.57|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.58|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.59|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.60|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.61|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.62|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.63|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.64|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.65|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.66|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.67|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.68|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.69|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.70|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.71|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.72|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.1|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.2|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.2.1|4|P2_Motiv +1.3.6.1.4.1.12356.101.12.2.2.1.3.3|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.3.1|4|IPSEC_Cirrus_SA +1.3.6.1.4.1.12356.101.12.2.2.1.3.4|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.4.1|4|IPSEC_WSR_NET1 +1.3.6.1.4.1.12356.101.12.2.2.1.3.4.2|4|IPSEC_WSR_NET2 +1.3.6.1.4.1.12356.101.12.2.2.1.3.5|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.5.1|4|P2_VMZ +1.3.6.1.4.1.12356.101.12.2.2.1.3.6|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.7|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.8|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.9|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.10|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.11|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.12|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.13|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.14|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.15|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.16|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.17|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.18|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.19|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.20|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.21|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.22|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.23|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.24|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.25|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.26|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.27|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.28|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.29|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.30|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.31|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.32|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.33|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.34|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.35|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.36|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.37|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.38|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.39|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.40|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.41|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.42|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.43|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.44|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.45|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.46|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.47|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.48|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.49|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.50|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.51|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.52|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.53|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.54|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.55|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.56|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.57|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.58|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.59|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.60|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.61|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.62|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.63|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.64|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.65|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.66|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.67|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.68|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.69|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.70|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.71|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.72|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.4.1|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.2|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.2.1|64|185.52.106.16 +1.3.6.1.4.1.12356.101.12.2.2.1.4.3|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.3.1|64|217.67.246.172 +1.3.6.1.4.1.12356.101.12.2.2.1.4.4|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.4.1|64|91.245.240.253 +1.3.6.1.4.1.12356.101.12.2.2.1.4.4.2|64|91.245.240.253 +1.3.6.1.4.1.12356.101.12.2.2.1.4.5|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.5.1|64|194.171.108.86 +1.3.6.1.4.1.12356.101.12.2.2.1.4.6|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.7|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.8|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.9|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.10|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.11|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.12|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.13|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.14|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.15|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.16|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.17|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.18|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.19|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.20|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.21|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.22|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.23|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.24|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.25|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.26|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.27|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.28|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.29|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.30|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.31|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.32|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.33|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.34|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.35|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.36|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.37|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.38|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.39|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.40|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.41|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.42|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.43|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.44|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.45|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.46|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.47|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.48|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.49|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.50|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.51|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.52|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.53|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.54|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.55|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.56|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.57|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.58|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.59|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.60|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.61|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.62|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.63|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.64|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.65|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.66|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.67|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.68|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.69|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.70|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.71|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.4.72|64|1.1.1.1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.1|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.2|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.2.1|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.3|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.3.1|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.4|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.4.1|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.4.2|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.5|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.5.1|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.6|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.7|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.8|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.9|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.10|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.11|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.12|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.13|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.14|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.15|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.16|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.17|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.18|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.19|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.20|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.21|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.22|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.23|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.24|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.25|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.26|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.27|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.28|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.29|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.30|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.31|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.32|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.33|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.34|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.35|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.36|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.37|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.38|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.39|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.40|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.41|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.42|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.43|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.44|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.45|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.46|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.47|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.48|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.49|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.50|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.51|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.52|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.53|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.54|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.55|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.56|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.57|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.58|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.59|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.60|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.61|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.62|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.63|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.64|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.65|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.66|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.67|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.68|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.69|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.70|2|1 +1.3.6.1.4.1.12356.101.12.2.2.1.20.71|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.72|2|2 +1.3.6.1.4.1.12356.101.12.2.3.1.1.1|2|2 +1.3.6.1.4.1.12356.101.12.2.3.1.1.3|2|1 +1.3.6.1.4.1.12356.101.12.2.3.1.1.4|2|1 +1.3.6.1.4.1.12356.101.12.2.3.1.2.1|66|16 +1.3.6.1.4.1.12356.101.12.2.3.1.2.3|66|0 +1.3.6.1.4.1.12356.101.12.2.3.1.2.4|66|0 +1.3.6.1.4.1.12356.101.12.2.3.1.6.1|66|11 +1.3.6.1.4.1.12356.101.12.2.3.1.6.3|66|0 +1.3.6.1.4.1.12356.101.12.2.3.1.6.4|66|0 +1.3.6.1.4.1.12356.101.13.1.1.0|2|3 +1.3.6.1.4.1.12356.101.13.2.1.1.1.1|2|1 +1.3.6.1.4.1.12356.101.13.2.1.1.1.2|2|2 +1.3.6.1.4.1.12356.101.13.2.1.1.2.1|4|redacted +1.3.6.1.4.1.12356.101.13.2.1.1.3.1|66|7 +1.3.6.1.4.1.12356.101.13.2.1.1.4.1|66|75 +1.3.6.1.4.1.12356.101.13.2.1.1.5.1|66|100550 +1.3.6.1.4.1.12356.101.13.2.1.1.6.1|66|26190 +1.3.6.1.4.1.12356.101.13.2.1.1.7.1|65|1587877738 +1.3.6.1.4.1.12356.101.13.2.1.1.8.1|65|347750579 +1.3.6.1.4.1.12356.101.13.2.1.1.9.1|65|7664 +1.3.6.1.4.1.12356.101.13.2.1.1.10.1|65|102 +1.3.6.1.4.1.12356.101.13.2.1.1.11.1|4|redacted +1.3.6.1.4.1.12356.101.13.2.1.1.11.2|4|redacted +1.3.6.1.4.1.12356.101.13.2.1.1.12.1|2|1 +1.3.6.1.4.1.12356.101.13.2.1.1.12.2|2|1 +1.3.6.1.4.1.12356.101.13.2.1.1.13.1|4| +1.3.6.1.4.1.12356.101.13.2.1.1.14.1|4| +1.3.6.1.4.1.12356.101.13.2.1.1.15.1|4|redacted +1.3.6.1.4.1.12356.101.13.2.1.1.16.1|4|redacted +1.3.6.1.4.1.12356.101.14.2.5.0|66|0 +1.3.6.1.4.1.12356.101.14.2.7.0|66|0 +1.3.6.1.6.3.10.2.1.3.0|2|38855745 diff --git a/tests/snmpsim/fortigate_cluster-60f.snmprec b/tests/snmpsim/fortigate_cluster-60f.snmprec new file mode 100644 index 0000000000..c0d44bc788 --- /dev/null +++ b/tests/snmpsim/fortigate_cluster-60f.snmprec @@ -0,0 +1,1311 @@ +1.3.6.1.2.1.1.1.0|4|FGT60D4614037969 +1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.12356.101.1.644 +1.3.6.1.2.1.1.3.0|67|79532523 +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.1|4|redacted +1.3.6.1.2.1.2.2.1.2.2|4| +1.3.6.1.2.1.2.2.1.2.3|4| +1.3.6.1.2.1.2.2.1.2.4|4| +1.3.6.1.2.1.2.2.1.2.5|4| +1.3.6.1.2.1.2.2.1.2.6|4| +1.3.6.1.2.1.2.2.1.2.7|4|redacted +1.3.6.1.2.1.2.2.1.2.8|4| +1.3.6.1.2.1.2.2.1.2.9|4| +1.3.6.1.2.1.2.2.1.2.10|4| +1.3.6.1.2.1.2.2.1.2.11|4|redacted +1.3.6.1.2.1.2.2.1.2.12|4|redacted +1.3.6.1.2.1.2.2.1.2.13|4| +1.3.6.1.2.1.2.2.1.2.14|4| +1.3.6.1.2.1.2.2.1.2.15|4| +1.3.6.1.2.1.2.2.1.2.16|4|redacted +1.3.6.1.2.1.2.2.1.2.17|4| +1.3.6.1.2.1.2.2.1.2.18|4| +1.3.6.1.2.1.2.2.1.2.19|4| +1.3.6.1.2.1.2.2.1.2.20|4|redacted +1.3.6.1.2.1.2.2.1.2.21|4| +1.3.6.1.2.1.2.2.1.2.22|4| +1.3.6.1.2.1.2.2.1.2.23|4| +1.3.6.1.2.1.2.2.1.2.24|4| +1.3.6.1.2.1.2.2.1.2.25|4|redacted +1.3.6.1.2.1.2.2.1.2.26|4| +1.3.6.1.2.1.2.2.1.3.1|2|6 +1.3.6.1.2.1.2.2.1.3.2|2|6 +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.5|2|131 +1.3.6.1.2.1.2.2.1.3.6|2|209 +1.3.6.1.2.1.2.2.1.3.7|2|135 +1.3.6.1.2.1.2.2.1.3.8|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|135 +1.3.6.1.2.1.2.2.1.3.14|2|135 +1.3.6.1.2.1.2.2.1.3.15|2|135 +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|135 +1.3.6.1.2.1.2.2.1.3.18|2|135 +1.3.6.1.2.1.2.2.1.3.19|2|135 +1.3.6.1.2.1.2.2.1.3.20|2|135 +1.3.6.1.2.1.2.2.1.3.21|2|135 +1.3.6.1.2.1.2.2.1.3.22|2|131 +1.3.6.1.2.1.2.2.1.3.23|2|131 +1.3.6.1.2.1.2.2.1.3.24|2|1 +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.4.1|2|1500 +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|1500 +1.3.6.1.2.1.2.2.1.4.4|2|1500 +1.3.6.1.2.1.2.2.1.4.5|2|1500 +1.3.6.1.2.1.2.2.1.4.6|2|1500 +1.3.6.1.2.1.2.2.1.4.7|2|1500 +1.3.6.1.2.1.2.2.1.4.8|2|1500 +1.3.6.1.2.1.2.2.1.4.9|2|1500 +1.3.6.1.2.1.2.2.1.4.10|2|1500 +1.3.6.1.2.1.2.2.1.4.11|2|1500 +1.3.6.1.2.1.2.2.1.4.12|2|1500 +1.3.6.1.2.1.2.2.1.4.13|2|1500 +1.3.6.1.2.1.2.2.1.4.14|2|1500 +1.3.6.1.2.1.2.2.1.4.15|2|1500 +1.3.6.1.2.1.2.2.1.4.16|2|1500 +1.3.6.1.2.1.2.2.1.4.17|2|1500 +1.3.6.1.2.1.2.2.1.4.18|2|1500 +1.3.6.1.2.1.2.2.1.4.19|2|1500 +1.3.6.1.2.1.2.2.1.4.20|2|1500 +1.3.6.1.2.1.2.2.1.4.21|2|1500 +1.3.6.1.2.1.2.2.1.4.22|2|1438 +1.3.6.1.2.1.2.2.1.4.23|2|1438 +1.3.6.1.2.1.2.2.1.4.24|2|1500 +1.3.6.1.2.1.2.2.1.4.25|2|1500 +1.3.6.1.2.1.2.2.1.4.26|2|1500 +1.3.6.1.2.1.2.2.1.6.1|4x|E023FF69038E +1.3.6.1.2.1.2.2.1.6.2|4x|E023FF69038C +1.3.6.1.2.1.2.2.1.6.3|4x|E023FF69038D +1.3.6.1.2.1.2.2.1.6.4|4x|000000000000 +1.3.6.1.2.1.2.2.1.6.5|4| +1.3.6.1.2.1.2.2.1.6.6|4| +1.3.6.1.2.1.2.2.1.6.7|4x|00090F090003 +1.3.6.1.2.1.2.2.1.6.8|4x|E023FF690391 +1.3.6.1.2.1.2.2.1.6.9|4x|E023FF690392 +1.3.6.1.2.1.2.2.1.6.10|4x|E023FF690393 +1.3.6.1.2.1.2.2.1.6.11|4x|E023FF690394 +1.3.6.1.2.1.2.2.1.6.12|4x|E023FF690395 +1.3.6.1.2.1.2.2.1.6.13|4x|00090F090003 +1.3.6.1.2.1.2.2.1.6.14|4x|00090F090003 +1.3.6.1.2.1.2.2.1.6.15|4x|00090F090003 +1.3.6.1.2.1.2.2.1.6.16|4x|E023FF69038F +1.3.6.1.2.1.2.2.1.6.17|4x|00090F090003 +1.3.6.1.2.1.2.2.1.6.18|4x|00090F090003 +1.3.6.1.2.1.2.2.1.6.19|4x|00090F090003 +1.3.6.1.2.1.2.2.1.6.20|4x|00090F090003 +1.3.6.1.2.1.2.2.1.6.21|4x|00090F090003 +1.3.6.1.2.1.2.2.1.6.22|4| +1.3.6.1.2.1.2.2.1.6.23|4| +1.3.6.1.2.1.2.2.1.6.24|4| +1.3.6.1.2.1.2.2.1.6.25|4x|0C5B8F279A64 +1.3.6.1.2.1.2.2.1.6.26|4x|E023FF690390 +1.3.6.1.2.1.2.2.1.7.1|2|1 +1.3.6.1.2.1.2.2.1.7.2|2|2 +1.3.6.1.2.1.2.2.1.7.3|2|2 +1.3.6.1.2.1.2.2.1.7.4|2|2 +1.3.6.1.2.1.2.2.1.7.5|2|1 +1.3.6.1.2.1.2.2.1.7.6|2|1 +1.3.6.1.2.1.2.2.1.7.7|2|1 +1.3.6.1.2.1.2.2.1.7.8|2|2 +1.3.6.1.2.1.2.2.1.7.9|2|2 +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|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|1 +1.3.6.1.2.1.2.2.1.7.19|2|1 +1.3.6.1.2.1.2.2.1.7.20|2|1 +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|1 +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|1 +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|1 +1.3.6.1.2.1.2.2.1.8.1|2|1 +1.3.6.1.2.1.2.2.1.8.2|2|2 +1.3.6.1.2.1.2.2.1.8.3|2|2 +1.3.6.1.2.1.2.2.1.8.4|2|2 +1.3.6.1.2.1.2.2.1.8.5|2|1 +1.3.6.1.2.1.2.2.1.8.6|2|2 +1.3.6.1.2.1.2.2.1.8.7|2|1 +1.3.6.1.2.1.2.2.1.8.8|2|2 +1.3.6.1.2.1.2.2.1.8.9|2|2 +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|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|1 +1.3.6.1.2.1.2.2.1.8.19|2|1 +1.3.6.1.2.1.2.2.1.8.20|2|1 +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|1 +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|1 +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.9.1|67|0 +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|0 +1.3.6.1.2.1.2.2.1.9.4|67|0 +1.3.6.1.2.1.2.2.1.9.5|67|0 +1.3.6.1.2.1.2.2.1.9.6|67|0 +1.3.6.1.2.1.2.2.1.9.7|67|0 +1.3.6.1.2.1.2.2.1.9.8|67|0 +1.3.6.1.2.1.2.2.1.9.9|67|0 +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|0 +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|0 +1.3.6.1.2.1.2.2.1.9.26|67|0 +1.3.6.1.2.1.2.2.1.13.1|65|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.4|65|0 +1.3.6.1.2.1.2.2.1.13.5|65|0 +1.3.6.1.2.1.2.2.1.13.6|65|0 +1.3.6.1.2.1.2.2.1.13.7|65|0 +1.3.6.1.2.1.2.2.1.13.8|65|0 +1.3.6.1.2.1.2.2.1.13.9|65|0 +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|0 +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.14.1|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.4|65|0 +1.3.6.1.2.1.2.2.1.14.5|65|0 +1.3.6.1.2.1.2.2.1.14.6|65|0 +1.3.6.1.2.1.2.2.1.14.7|65|0 +1.3.6.1.2.1.2.2.1.14.8|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.19.1|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.4|65|0 +1.3.6.1.2.1.2.2.1.19.5|65|2 +1.3.6.1.2.1.2.2.1.19.6|65|0 +1.3.6.1.2.1.2.2.1.19.7|65|0 +1.3.6.1.2.1.2.2.1.19.8|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|0 +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|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.20.1|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.4|65|0 +1.3.6.1.2.1.2.2.1.20.5|65|0 +1.3.6.1.2.1.2.2.1.20.6|65|0 +1.3.6.1.2.1.2.2.1.20.7|65|0 +1.3.6.1.2.1.2.2.1.20.8|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.4.3.0|65|303681056 +1.3.6.1.2.1.4.4.0|65|2595 +1.3.6.1.2.1.4.5.0|65|0 +1.3.6.1.2.1.4.6.0|65|293296407 +1.3.6.1.2.1.4.7.0|65|0 +1.3.6.1.2.1.4.8.0|65|0 +1.3.6.1.2.1.4.9.0|65|6403027 +1.3.6.1.2.1.4.10.0|65|409746444 +1.3.6.1.2.1.4.11.0|65|19 +1.3.6.1.2.1.4.12.0|65|21 +1.3.6.1.2.1.4.14.0|65|1670580 +1.3.6.1.2.1.4.15.0|65|751134 +1.3.6.1.2.1.4.16.0|65|5 +1.3.6.1.2.1.4.17.0|65|762088 +1.3.6.1.2.1.4.18.0|65|1 +1.3.6.1.2.1.4.19.0|65|1801996 +1.3.6.1.2.1.4.20.1.2.10.0.0.21|2|17 +1.3.6.1.2.1.4.20.1.2.127.0.0.1|2|24 +1.3.6.1.2.1.4.20.1.2.136.231.0.5|2|24 +1.3.6.1.2.1.4.20.1.2.169.254.24.25|2|22 +1.3.6.1.2.1.4.20.1.2.172.19.1.1|2|13 +1.3.6.1.2.1.4.20.1.2.172.19.1.2|2|1 +1.3.6.1.2.1.4.20.1.2.172.19.2.1|2|14 +1.3.6.1.2.1.4.20.1.2.172.19.3.1|2|15 +1.3.6.1.2.1.4.20.1.2.172.19.4.1|2|7 +1.3.6.1.2.1.4.20.1.2.172.19.4.17|2|20 +1.3.6.1.2.1.4.20.1.2.172.23.3.1|2|18 +1.3.6.1.2.1.4.20.1.2.172.23.4.1|2|19 +1.3.6.1.2.1.4.20.1.2.192.168.8.100|2|25 +1.3.6.1.2.1.4.20.1.2.192.168.178.115|2|21 +1.3.6.1.2.1.4.31.1.1.3.1|65|303671190 +1.3.6.1.2.1.4.31.1.1.3.2|65|63414 +1.3.6.1.2.1.4.31.1.1.4.1|70|303671190 +1.3.6.1.2.1.4.31.1.1.4.2|70|63414 +1.3.6.1.2.1.4.31.1.1.5.1|65|995556493 +1.3.6.1.2.1.4.31.1.1.5.2|65|6717276 +1.3.6.1.2.1.4.31.1.1.6.1|70|52535164045 +1.3.6.1.2.1.4.31.1.1.6.2|70|6717276 +1.3.6.1.2.1.4.31.1.1.7.1|65|2595 +1.3.6.1.2.1.4.31.1.1.7.2|65|0 +1.3.6.1.2.1.4.31.1.1.8.1|65|663 +1.3.6.1.2.1.4.31.1.1.8.2|65|2 +1.3.6.1.2.1.4.31.1.1.9.1|65|0 +1.3.6.1.2.1.4.31.1.1.9.2|65|0 +1.3.6.1.2.1.4.31.1.1.10.1|65|0 +1.3.6.1.2.1.4.31.1.1.10.2|65|0 +1.3.6.1.2.1.4.31.1.1.11.1|65|0 +1.3.6.1.2.1.4.31.1.1.11.2|65|0 +1.3.6.1.2.1.4.31.1.1.12.1|65|0 +1.3.6.1.2.1.4.31.1.1.12.2|65|0 +1.3.6.1.2.1.4.31.1.1.13.1|70|0 +1.3.6.1.2.1.4.31.1.1.13.2|70|0 +1.3.6.1.2.1.4.31.1.1.14.1|65|1670556 +1.3.6.1.2.1.4.31.1.1.14.2|65|0 +1.3.6.1.2.1.4.31.1.1.15.1|65|751123 +1.3.6.1.2.1.4.31.1.1.15.2|65|0 +1.3.6.1.2.1.4.31.1.1.16.1|65|5 +1.3.6.1.2.1.4.31.1.1.16.2|65|0 +1.3.6.1.2.1.4.31.1.1.17.1|65|0 +1.3.6.1.2.1.4.31.1.1.17.2|65|386 +1.3.6.1.2.1.4.31.1.1.18.1|65|6402559 +1.3.6.1.2.1.4.31.1.1.18.2|65|42286 +1.3.6.1.2.1.4.31.1.1.19.1|70|6402559 +1.3.6.1.2.1.4.31.1.1.19.2|70|42286 +1.3.6.1.2.1.4.31.1.1.20.1|65|409736018 +1.3.6.1.2.1.4.31.1.1.20.2|65|5853 +1.3.6.1.2.1.4.31.1.1.21.1|70|409736018 +1.3.6.1.2.1.4.31.1.1.21.2|70|5853 +1.3.6.1.2.1.4.31.1.1.22.1|65|21 +1.3.6.1.2.1.4.31.1.1.22.2|65|430 +1.3.6.1.2.1.4.31.1.1.23.1|65|293287113 +1.3.6.1.2.1.4.31.1.1.23.2|65|0 +1.3.6.1.2.1.4.31.1.1.24.1|70|293287113 +1.3.6.1.2.1.4.31.1.1.24.2|70|0 +1.3.6.1.2.1.4.31.1.1.25.1|65|19 +1.3.6.1.2.1.4.31.1.1.25.2|65|40 +1.3.6.1.2.1.4.31.1.1.26.1|65|0 +1.3.6.1.2.1.4.31.1.1.26.2|65|0 +1.3.6.1.2.1.4.31.1.1.27.1|65|762076 +1.3.6.1.2.1.4.31.1.1.27.2|65|0 +1.3.6.1.2.1.4.31.1.1.28.1|65|1 +1.3.6.1.2.1.4.31.1.1.28.2|65|0 +1.3.6.1.2.1.4.31.1.1.29.1|65|1801960 +1.3.6.1.2.1.4.31.1.1.29.2|65|0 +1.3.6.1.2.1.4.31.1.1.30.1|65|0 +1.3.6.1.2.1.4.31.1.1.30.2|65|0 +1.3.6.1.2.1.4.31.1.1.31.1|70|0 +1.3.6.1.2.1.4.31.1.1.31.2|70|0 +1.3.6.1.2.1.4.31.1.1.32.1|65|2166306617 +1.3.6.1.2.1.4.31.1.1.32.2|65|444828 +1.3.6.1.2.1.4.31.1.1.33.1|70|131015325497 +1.3.6.1.2.1.4.31.1.1.33.2|70|444828 +1.3.6.1.2.1.4.31.1.1.34.1|65|5808 +1.3.6.1.2.1.4.31.1.1.34.2|65|57385 +1.3.6.1.2.1.4.31.1.1.35.1|70|5808 +1.3.6.1.2.1.4.31.1.1.35.2|70|57385 +1.3.6.1.2.1.4.31.1.1.36.1|65|209152 +1.3.6.1.2.1.4.31.1.1.36.2|65|6093271 +1.3.6.1.2.1.4.31.1.1.37.1|70|209152 +1.3.6.1.2.1.4.31.1.1.37.2|70|6093271 +1.3.6.1.2.1.4.31.1.1.38.1|65|0 +1.3.6.1.2.1.4.31.1.1.38.2|65|11626 +1.3.6.1.2.1.4.31.1.1.39.1|70|0 +1.3.6.1.2.1.4.31.1.1.39.2|70|11626 +1.3.6.1.2.1.4.31.1.1.40.1|65|0 +1.3.6.1.2.1.4.31.1.1.40.2|65|883576 +1.3.6.1.2.1.4.31.1.1.41.1|70|0 +1.3.6.1.2.1.4.31.1.1.41.2|70|883576 +1.3.6.1.2.1.4.31.1.1.42.1|65|326441 +1.3.6.1.2.1.4.31.1.1.42.2|65|0 +1.3.6.1.2.1.4.31.1.1.43.1|70|326441 +1.3.6.1.2.1.4.31.1.1.43.2|70|0 +1.3.6.1.2.1.4.31.1.1.44.1|65|158873 +1.3.6.1.2.1.4.31.1.1.44.2|65|0 +1.3.6.1.2.1.4.31.1.1.45.1|70|158873 +1.3.6.1.2.1.4.31.1.1.45.2|70|0 +1.3.6.1.2.1.4.31.1.1.46.1|67|0 +1.3.6.1.2.1.4.31.1.1.46.2|67|0 +1.3.6.1.2.1.4.31.1.1.47.1|66|0 +1.3.6.1.2.1.4.31.1.1.47.2|66|0 +1.3.6.1.2.1.5.1.0|65|10049 +1.3.6.1.2.1.5.2.0|65|27 +1.3.6.1.2.1.5.3.0|65|1961 +1.3.6.1.2.1.5.4.0|65|0 +1.3.6.1.2.1.5.5.0|65|0 +1.3.6.1.2.1.5.6.0|65|0 +1.3.6.1.2.1.5.7.0|65|0 +1.3.6.1.2.1.5.8.0|65|8085 +1.3.6.1.2.1.5.9.0|65|0 +1.3.6.1.2.1.5.10.0|65|3 +1.3.6.1.2.1.5.11.0|65|0 +1.3.6.1.2.1.5.12.0|65|0 +1.3.6.1.2.1.5.13.0|65|0 +1.3.6.1.2.1.5.14.0|65|146529 +1.3.6.1.2.1.5.15.0|65|0 +1.3.6.1.2.1.5.16.0|65|135839 +1.3.6.1.2.1.5.17.0|65|2583 +1.3.6.1.2.1.5.18.0|65|0 +1.3.6.1.2.1.5.19.0|65|0 +1.3.6.1.2.1.5.20.0|65|0 +1.3.6.1.2.1.5.21.0|65|19 +1.3.6.1.2.1.5.22.0|65|8085 +1.3.6.1.2.1.5.23.0|65|0 +1.3.6.1.2.1.5.24.0|65|3 +1.3.6.1.2.1.5.25.0|65|0 +1.3.6.1.2.1.5.26.0|65|0 +1.3.6.1.2.1.6.5.0|65|54477 +1.3.6.1.2.1.6.6.0|65|83583 +1.3.6.1.2.1.6.7.0|65|9583 +1.3.6.1.2.1.6.8.0|65|7299 +1.3.6.1.2.1.6.9.0|66|3 +1.3.6.1.2.1.6.10.0|65|1376231 +1.3.6.1.2.1.6.11.0|65|1645121 +1.3.6.1.2.1.6.12.0|65|50385 +1.3.6.1.2.1.6.14.0|65|102 +1.3.6.1.2.1.6.15.0|65|23879 +1.3.6.1.2.1.7.1.0|65|5010931 +1.3.6.1.2.1.7.2.0|65|152 +1.3.6.1.2.1.7.3.0|65|0 +1.3.6.1.2.1.7.4.0|65|114608128 +1.3.6.1.2.1.10.7.2.1.19.1|2|3 +1.3.6.1.2.1.10.7.2.1.19.2|2|2 +1.3.6.1.2.1.10.7.2.1.19.3|2|2 +1.3.6.1.2.1.10.7.2.1.19.4|2|0 +1.3.6.1.2.1.10.7.2.1.19.5|2|0 +1.3.6.1.2.1.10.7.2.1.19.6|2|3 +1.3.6.1.2.1.10.7.2.1.19.7|2|0 +1.3.6.1.2.1.10.7.2.1.19.8|2|2 +1.3.6.1.2.1.10.7.2.1.19.9|2|2 +1.3.6.1.2.1.10.7.2.1.19.10|2|2 +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|0 +1.3.6.1.2.1.10.7.2.1.19.14|2|0 +1.3.6.1.2.1.10.7.2.1.19.15|2|0 +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|0 +1.3.6.1.2.1.10.7.2.1.19.18|2|0 +1.3.6.1.2.1.10.7.2.1.19.19|2|0 +1.3.6.1.2.1.10.7.2.1.19.20|2|0 +1.3.6.1.2.1.10.7.2.1.19.21|2|0 +1.3.6.1.2.1.10.7.2.1.19.22|2|0 +1.3.6.1.2.1.10.7.2.1.19.23|2|0 +1.3.6.1.2.1.10.7.2.1.19.24|2|0 +1.3.6.1.2.1.10.7.2.1.19.25|2|0 +1.3.6.1.2.1.10.7.2.1.19.26|2|2 +1.3.6.1.2.1.31.1.1.1.1.1|4|redacted +1.3.6.1.2.1.31.1.1.1.1.2|4|redacted +1.3.6.1.2.1.31.1.1.1.1.3|4|redacted +1.3.6.1.2.1.31.1.1.1.1.4|4|redacted +1.3.6.1.2.1.31.1.1.1.1.5|4|redacted +1.3.6.1.2.1.31.1.1.1.1.6|4|redacted +1.3.6.1.2.1.31.1.1.1.1.7|4|redacted +1.3.6.1.2.1.31.1.1.1.1.8|4|redacted +1.3.6.1.2.1.31.1.1.1.1.9|4|redacted +1.3.6.1.2.1.31.1.1.1.1.10|4|redacted +1.3.6.1.2.1.31.1.1.1.1.11|4|redacted +1.3.6.1.2.1.31.1.1.1.1.12|4|redacted +1.3.6.1.2.1.31.1.1.1.1.13|4|redacted +1.3.6.1.2.1.31.1.1.1.1.14|4|redacted +1.3.6.1.2.1.31.1.1.1.1.15|4|redacted +1.3.6.1.2.1.31.1.1.1.1.16|4|redacted +1.3.6.1.2.1.31.1.1.1.1.17|4|redacted +1.3.6.1.2.1.31.1.1.1.1.18|4|redacted +1.3.6.1.2.1.31.1.1.1.1.19|4|redacted +1.3.6.1.2.1.31.1.1.1.1.20|4|redacted +1.3.6.1.2.1.31.1.1.1.1.21|4|redacted +1.3.6.1.2.1.31.1.1.1.1.22|4|redacted +1.3.6.1.2.1.31.1.1.1.1.23|4|redacted +1.3.6.1.2.1.31.1.1.1.1.24|4|redacted +1.3.6.1.2.1.31.1.1.1.1.25|4|redacted +1.3.6.1.2.1.31.1.1.1.1.26|4|redacted +1.3.6.1.2.1.31.1.1.1.2.1|65|0 +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.4|65|0 +1.3.6.1.2.1.31.1.1.1.2.5|65|0 +1.3.6.1.2.1.31.1.1.1.2.6|65|0 +1.3.6.1.2.1.31.1.1.1.2.7|65|0 +1.3.6.1.2.1.31.1.1.1.2.8|65|0 +1.3.6.1.2.1.31.1.1.1.2.9|65|0 +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|0 +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|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.3.1|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|0 +1.3.6.1.2.1.31.1.1.1.3.4|65|0 +1.3.6.1.2.1.31.1.1.1.3.5|65|0 +1.3.6.1.2.1.31.1.1.1.3.6|65|0 +1.3.6.1.2.1.31.1.1.1.3.7|65|0 +1.3.6.1.2.1.31.1.1.1.3.8|65|0 +1.3.6.1.2.1.31.1.1.1.3.9|65|0 +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|0 +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|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.4.1|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.4|65|0 +1.3.6.1.2.1.31.1.1.1.4.5|65|0 +1.3.6.1.2.1.31.1.1.1.4.6|65|0 +1.3.6.1.2.1.31.1.1.1.4.7|65|0 +1.3.6.1.2.1.31.1.1.1.4.8|65|0 +1.3.6.1.2.1.31.1.1.1.4.9|65|0 +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|0 +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|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.5.1|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|0 +1.3.6.1.2.1.31.1.1.1.5.4|65|0 +1.3.6.1.2.1.31.1.1.1.5.5|65|0 +1.3.6.1.2.1.31.1.1.1.5.6|65|0 +1.3.6.1.2.1.31.1.1.1.5.7|65|0 +1.3.6.1.2.1.31.1.1.1.5.8|65|0 +1.3.6.1.2.1.31.1.1.1.5.9|65|0 +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|0 +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|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.6.1|70|111960195 +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|0 +1.3.6.1.2.1.31.1.1.1.6.4|70|0 +1.3.6.1.2.1.31.1.1.1.6.5|70|0 +1.3.6.1.2.1.31.1.1.1.6.6|70|0 +1.3.6.1.2.1.31.1.1.1.6.7|70|2847011361 +1.3.6.1.2.1.31.1.1.1.6.8|70|0 +1.3.6.1.2.1.31.1.1.1.6.9|70|0 +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|3054124365 +1.3.6.1.2.1.31.1.1.1.6.12|70|193846770 +1.3.6.1.2.1.31.1.1.1.6.13|70|102651917542 +1.3.6.1.2.1.31.1.1.1.6.14|70|1024 +1.3.6.1.2.1.31.1.1.1.6.15|70|25796623137 +1.3.6.1.2.1.31.1.1.1.6.16|70|227931036498 +1.3.6.1.2.1.31.1.1.1.6.17|70|28775193521 +1.3.6.1.2.1.31.1.1.1.6.18|70|30224432212 +1.3.6.1.2.1.31.1.1.1.6.19|70|37418082003 +1.3.6.1.2.1.31.1.1.1.6.20|70|852782 +1.3.6.1.2.1.31.1.1.1.6.21|70|186816386 +1.3.6.1.2.1.31.1.1.1.6.22|70|6308 +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|167564017 +1.3.6.1.2.1.31.1.1.1.6.26|70|0 +1.3.6.1.2.1.31.1.1.1.7.1|70|1049608 +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|0 +1.3.6.1.2.1.31.1.1.1.7.4|70|0 +1.3.6.1.2.1.31.1.1.1.7.5|70|0 +1.3.6.1.2.1.31.1.1.1.7.6|70|0 +1.3.6.1.2.1.31.1.1.1.7.7|70|13432796 +1.3.6.1.2.1.31.1.1.1.7.8|70|0 +1.3.6.1.2.1.31.1.1.1.7.9|70|0 +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|8792840 +1.3.6.1.2.1.31.1.1.1.7.12|70|478634 +1.3.6.1.2.1.31.1.1.1.7.13|70|154739074 +1.3.6.1.2.1.31.1.1.1.7.14|70|16 +1.3.6.1.2.1.31.1.1.1.7.15|70|68842736 +1.3.6.1.2.1.31.1.1.1.7.16|70|588858504 +1.3.6.1.2.1.31.1.1.1.7.17|70|126599823 +1.3.6.1.2.1.31.1.1.1.7.18|70|31998578 +1.3.6.1.2.1.31.1.1.1.7.19|70|190281130 +1.3.6.1.2.1.31.1.1.1.7.20|70|6381 +1.3.6.1.2.1.31.1.1.1.7.21|70|2533958 +1.3.6.1.2.1.31.1.1.1.7.22|70|33 +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|992199 +1.3.6.1.2.1.31.1.1.1.7.26|70|0 +1.3.6.1.2.1.31.1.1.1.8.1|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.4|70|0 +1.3.6.1.2.1.31.1.1.1.8.5|70|0 +1.3.6.1.2.1.31.1.1.1.8.6|70|0 +1.3.6.1.2.1.31.1.1.1.8.7|70|0 +1.3.6.1.2.1.31.1.1.1.8.8|70|0 +1.3.6.1.2.1.31.1.1.1.8.9|70|0 +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|0 +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|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.9.1|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|0 +1.3.6.1.2.1.31.1.1.1.9.4|70|0 +1.3.6.1.2.1.31.1.1.1.9.5|70|0 +1.3.6.1.2.1.31.1.1.1.9.6|70|0 +1.3.6.1.2.1.31.1.1.1.9.7|70|0 +1.3.6.1.2.1.31.1.1.1.9.8|70|0 +1.3.6.1.2.1.31.1.1.1.9.9|70|0 +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|0 +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|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.10.1|70|403672656 +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|0 +1.3.6.1.2.1.31.1.1.1.10.4|70|0 +1.3.6.1.2.1.31.1.1.1.10.5|70|0 +1.3.6.1.2.1.31.1.1.1.10.6|70|0 +1.3.6.1.2.1.31.1.1.1.10.7|70|3117034340 +1.3.6.1.2.1.31.1.1.1.10.8|70|0 +1.3.6.1.2.1.31.1.1.1.10.9|70|0 +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|7719711564 +1.3.6.1.2.1.31.1.1.1.10.12|70|196269457 +1.3.6.1.2.1.31.1.1.1.10.13|70|8531045505 +1.3.6.1.2.1.31.1.1.1.10.14|70|71108 +1.3.6.1.2.1.31.1.1.1.10.15|70|13139156742 +1.3.6.1.2.1.31.1.1.1.10.16|70|302971565878 +1.3.6.1.2.1.31.1.1.1.10.17|70|124946360372 +1.3.6.1.2.1.31.1.1.1.10.18|70|6480318031 +1.3.6.1.2.1.31.1.1.1.10.19|70|146749595622 +1.3.6.1.2.1.31.1.1.1.10.20|70|4868 +1.3.6.1.2.1.31.1.1.1.10.21|70|2118370 +1.3.6.1.2.1.31.1.1.1.10.22|70|4281 +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|1352 +1.3.6.1.2.1.31.1.1.1.10.25|70|165691402 +1.3.6.1.2.1.31.1.1.1.10.26|70|0 +1.3.6.1.2.1.31.1.1.1.11.1|70|745613 +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|0 +1.3.6.1.2.1.31.1.1.1.11.4|70|0 +1.3.6.1.2.1.31.1.1.1.11.5|70|0 +1.3.6.1.2.1.31.1.1.1.11.6|70|0 +1.3.6.1.2.1.31.1.1.1.11.7|70|11557369 +1.3.6.1.2.1.31.1.1.1.11.8|70|0 +1.3.6.1.2.1.31.1.1.1.11.9|70|0 +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|11977744 +1.3.6.1.2.1.31.1.1.1.11.12|70|478706 +1.3.6.1.2.1.31.1.1.1.11.13|70|47795748 +1.3.6.1.2.1.31.1.1.1.11.14|70|1538 +1.3.6.1.2.1.31.1.1.1.11.15|70|65385611 +1.3.6.1.2.1.31.1.1.1.11.16|70|688743728 +1.3.6.1.2.1.31.1.1.1.11.17|70|231479043 +1.3.6.1.2.1.31.1.1.1.11.18|70|21629217 +1.3.6.1.2.1.31.1.1.1.11.19|70|310837736 +1.3.6.1.2.1.31.1.1.1.11.20|70|98 +1.3.6.1.2.1.31.1.1.1.11.21|70|30848 +1.3.6.1.2.1.31.1.1.1.11.22|70|26 +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|22 +1.3.6.1.2.1.31.1.1.1.11.25|70|1149981 +1.3.6.1.2.1.31.1.1.1.11.26|70|0 +1.3.6.1.2.1.31.1.1.1.12.1|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.4|70|0 +1.3.6.1.2.1.31.1.1.1.12.5|70|0 +1.3.6.1.2.1.31.1.1.1.12.6|70|0 +1.3.6.1.2.1.31.1.1.1.12.7|70|0 +1.3.6.1.2.1.31.1.1.1.12.8|70|0 +1.3.6.1.2.1.31.1.1.1.12.9|70|0 +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|0 +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|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.13.1|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|0 +1.3.6.1.2.1.31.1.1.1.13.4|70|0 +1.3.6.1.2.1.31.1.1.1.13.5|70|0 +1.3.6.1.2.1.31.1.1.1.13.6|70|0 +1.3.6.1.2.1.31.1.1.1.13.7|70|0 +1.3.6.1.2.1.31.1.1.1.13.8|70|0 +1.3.6.1.2.1.31.1.1.1.13.9|70|0 +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|0 +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|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.14.1|2|1 +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.5|2|1 +1.3.6.1.2.1.31.1.1.1.14.6|2|1 +1.3.6.1.2.1.31.1.1.1.14.7|2|1 +1.3.6.1.2.1.31.1.1.1.14.8|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.15.1|66|1000 +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|0 +1.3.6.1.2.1.31.1.1.1.15.4|66|0 +1.3.6.1.2.1.31.1.1.1.15.5|66|0 +1.3.6.1.2.1.31.1.1.1.15.6|66|0 +1.3.6.1.2.1.31.1.1.1.15.7|66|1000 +1.3.6.1.2.1.31.1.1.1.15.8|66|0 +1.3.6.1.2.1.31.1.1.1.15.9|66|0 +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|1000 +1.3.6.1.2.1.31.1.1.1.15.12|66|1000 +1.3.6.1.2.1.31.1.1.1.15.13|66|1000 +1.3.6.1.2.1.31.1.1.1.15.14|66|1000 +1.3.6.1.2.1.31.1.1.1.15.15|66|1000 +1.3.6.1.2.1.31.1.1.1.15.16|66|1000 +1.3.6.1.2.1.31.1.1.1.15.17|66|1000 +1.3.6.1.2.1.31.1.1.1.15.18|66|1000 +1.3.6.1.2.1.31.1.1.1.15.19|66|1000 +1.3.6.1.2.1.31.1.1.1.15.20|66|1000 +1.3.6.1.2.1.31.1.1.1.15.21|66|1000 +1.3.6.1.2.1.31.1.1.1.15.22|66|0 +1.3.6.1.2.1.31.1.1.1.15.23|66|0 +1.3.6.1.2.1.31.1.1.1.15.24|66|0 +1.3.6.1.2.1.31.1.1.1.15.25|66|0 +1.3.6.1.2.1.31.1.1.1.15.26|66|0 +1.3.6.1.2.1.31.1.1.1.16.1|2|2 +1.3.6.1.2.1.31.1.1.1.16.2|2|1 +1.3.6.1.2.1.31.1.1.1.16.3|2|1 +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.5|2|2 +1.3.6.1.2.1.31.1.1.1.16.6|2|1 +1.3.6.1.2.1.31.1.1.1.16.7|2|1 +1.3.6.1.2.1.31.1.1.1.16.8|2|1 +1.3.6.1.2.1.31.1.1.1.16.9|2|1 +1.3.6.1.2.1.31.1.1.1.16.10|2|1 +1.3.6.1.2.1.31.1.1.1.16.11|2|1 +1.3.6.1.2.1.31.1.1.1.16.12|2|1 +1.3.6.1.2.1.31.1.1.1.16.13|2|1 +1.3.6.1.2.1.31.1.1.1.16.14|2|1 +1.3.6.1.2.1.31.1.1.1.16.15|2|1 +1.3.6.1.2.1.31.1.1.1.16.16|2|1 +1.3.6.1.2.1.31.1.1.1.16.17|2|1 +1.3.6.1.2.1.31.1.1.1.16.18|2|1 +1.3.6.1.2.1.31.1.1.1.16.19|2|1 +1.3.6.1.2.1.31.1.1.1.16.20|2|1 +1.3.6.1.2.1.31.1.1.1.16.21|2|1 +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|1 +1.3.6.1.2.1.31.1.1.1.17.1|2|1 +1.3.6.1.2.1.31.1.1.1.17.2|2|1 +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.5|2|2 +1.3.6.1.2.1.31.1.1.1.17.6|2|2 +1.3.6.1.2.1.31.1.1.1.17.7|2|2 +1.3.6.1.2.1.31.1.1.1.17.8|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|2 +1.3.6.1.2.1.31.1.1.1.17.14|2|2 +1.3.6.1.2.1.31.1.1.1.17.15|2|2 +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|2 +1.3.6.1.2.1.31.1.1.1.17.18|2|2 +1.3.6.1.2.1.31.1.1.1.17.19|2|2 +1.3.6.1.2.1.31.1.1.1.17.20|2|2 +1.3.6.1.2.1.31.1.1.1.17.21|2|2 +1.3.6.1.2.1.31.1.1.1.17.22|2|2 +1.3.6.1.2.1.31.1.1.1.17.23|2|2 +1.3.6.1.2.1.31.1.1.1.17.24|2|2 +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.18.1|4|redacted +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.5|4|redacted +1.3.6.1.2.1.31.1.1.1.18.6|4| +1.3.6.1.2.1.31.1.1.1.18.7|4| +1.3.6.1.2.1.31.1.1.1.18.8|4| +1.3.6.1.2.1.31.1.1.1.18.9|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| +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|redacted +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| +1.3.6.1.2.1.31.1.1.1.18.26|4| +1.3.6.1.2.1.31.1.1.1.19.1|67|0 +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.5|67|0 +1.3.6.1.2.1.31.1.1.1.19.6|67|0 +1.3.6.1.2.1.31.1.1.1.19.7|67|0 +1.3.6.1.2.1.31.1.1.1.19.8|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|0 +1.3.6.1.2.1.31.1.1.1.19.24|67|0 +1.3.6.1.2.1.31.1.1.1.19.25|67|0 +1.3.6.1.2.1.31.1.1.1.19.26|67|0 +1.3.6.1.2.1.31.1.2.1.3.0.1|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.2|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.3|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.4|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.5|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.6|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.7|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.8|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.9|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.10|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.11|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.12|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.13|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.14|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.15|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.17|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.18|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.19|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.20|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.21|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.22|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.23|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.24|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.26|2|1 +1.3.6.1.2.1.31.1.2.1.3.1.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.2.0|2|2 +1.3.6.1.2.1.31.1.2.1.3.3.0|2|2 +1.3.6.1.2.1.31.1.2.1.3.4.0|2|2 +1.3.6.1.2.1.31.1.2.1.3.5.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.6.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.7.16|2|1 +1.3.6.1.2.1.31.1.2.1.3.8.0|2|2 +1.3.6.1.2.1.31.1.2.1.3.9.0|2|2 +1.3.6.1.2.1.31.1.2.1.3.10.0|2|2 +1.3.6.1.2.1.31.1.2.1.3.11.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.12.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.13.16|2|1 +1.3.6.1.2.1.31.1.2.1.3.14.16|2|1 +1.3.6.1.2.1.31.1.2.1.3.15.16|2|1 +1.3.6.1.2.1.31.1.2.1.3.16.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.17.16|2|1 +1.3.6.1.2.1.31.1.2.1.3.18.16|2|1 +1.3.6.1.2.1.31.1.2.1.3.19.16|2|1 +1.3.6.1.2.1.31.1.2.1.3.20.16|2|1 +1.3.6.1.2.1.31.1.2.1.3.21.16|2|1 +1.3.6.1.2.1.31.1.2.1.3.22.25|2|1 +1.3.6.1.2.1.31.1.2.1.3.23.25|2|1 +1.3.6.1.2.1.31.1.2.1.3.24.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.25.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.26.0|2|1 +1.3.6.1.2.1.47.1.1.1.1.2.1|4|Fortinet FGT_60F, HW Serial#: redacted +1.3.6.1.2.1.47.1.1.1.1.2.2|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.2.3|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.2.4|4|Ethernet Port, Vitual Domain: vsys_hamgmt +1.3.6.1.2.1.47.1.1.1.1.2.5|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.2.6|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.2.7|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.2.8|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.2.9|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.2.10|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.2.11|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.2.12|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.2.13|4|Ethernet Port, Vitual Domain: root +1.3.6.1.2.1.47.1.1.1.1.3.1|6|1.3.6.1.4.1.12356.644.644.0 +1.3.6.1.2.1.47.1.1.1.1.3.2|6|0.0.0 +1.3.6.1.2.1.47.1.1.1.1.3.3|6|0.0.0 +1.3.6.1.2.1.47.1.1.1.1.3.4|6|0.0.0 +1.3.6.1.2.1.47.1.1.1.1.3.5|6|0.0.0 +1.3.6.1.2.1.47.1.1.1.1.3.6|6|0.0.0 +1.3.6.1.2.1.47.1.1.1.1.3.7|6|0.0.0 +1.3.6.1.2.1.47.1.1.1.1.3.8|6|0.0.0 +1.3.6.1.2.1.47.1.1.1.1.3.9|6|0.0.0 +1.3.6.1.2.1.47.1.1.1.1.3.10|6|0.0.0 +1.3.6.1.2.1.47.1.1.1.1.3.11|6|0.0.0 +1.3.6.1.2.1.47.1.1.1.1.3.12|6|0.0.0 +1.3.6.1.2.1.47.1.1.1.1.3.13|6|0.0.0 +1.3.6.1.2.1.47.1.1.1.1.4.1|2|0 +1.3.6.1.2.1.47.1.1.1.1.4.2|2|1 +1.3.6.1.2.1.47.1.1.1.1.4.3|2|1 +1.3.6.1.2.1.47.1.1.1.1.4.4|2|1 +1.3.6.1.2.1.47.1.1.1.1.4.5|2|1 +1.3.6.1.2.1.47.1.1.1.1.4.6|2|1 +1.3.6.1.2.1.47.1.1.1.1.4.7|2|1 +1.3.6.1.2.1.47.1.1.1.1.4.8|2|1 +1.3.6.1.2.1.47.1.1.1.1.4.9|2|1 +1.3.6.1.2.1.47.1.1.1.1.4.10|2|1 +1.3.6.1.2.1.47.1.1.1.1.4.11|2|1 +1.3.6.1.2.1.47.1.1.1.1.4.12|2|1 +1.3.6.1.2.1.47.1.1.1.1.4.13|2|1 +1.3.6.1.2.1.47.1.1.1.1.5.1|2|3 +1.3.6.1.2.1.47.1.1.1.1.5.2|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.3|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.4|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.5|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.6|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.7|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.8|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.9|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.10|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.11|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.12|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.13|2|10 +1.3.6.1.2.1.47.1.1.1.1.6.1|2|-1 +1.3.6.1.2.1.47.1.1.1.1.6.2|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.3|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.4|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.5|2|4 +1.3.6.1.2.1.47.1.1.1.1.6.6|2|5 +1.3.6.1.2.1.47.1.1.1.1.6.7|2|6 +1.3.6.1.2.1.47.1.1.1.1.6.8|2|7 +1.3.6.1.2.1.47.1.1.1.1.6.9|2|8 +1.3.6.1.2.1.47.1.1.1.1.6.10|2|9 +1.3.6.1.2.1.47.1.1.1.1.6.11|2|10 +1.3.6.1.2.1.47.1.1.1.1.6.12|2|11 +1.3.6.1.2.1.47.1.1.1.1.6.13|2|12 +1.3.6.1.2.1.47.1.1.1.1.7.1|4|redacted +1.3.6.1.2.1.47.1.1.1.1.7.2|4|a +1.3.6.1.2.1.47.1.1.1.1.7.3|4|b +1.3.6.1.2.1.47.1.1.1.1.7.4|4|dmz +1.3.6.1.2.1.47.1.1.1.1.7.5|4|internal1 +1.3.6.1.2.1.47.1.1.1.1.7.6|4|internal2 +1.3.6.1.2.1.47.1.1.1.1.7.7|4|internal3 +1.3.6.1.2.1.47.1.1.1.1.7.8|4|internal4 +1.3.6.1.2.1.47.1.1.1.1.7.9|4|internal5 +1.3.6.1.2.1.47.1.1.1.1.7.10|4|modem +1.3.6.1.2.1.47.1.1.1.1.7.11|4|wan1 +1.3.6.1.2.1.47.1.1.1.1.7.12|4|wan2 +1.3.6.1.2.1.47.1.1.1.1.7.13|4|wwan +1.3.6.1.2.1.47.1.1.1.1.8.1|4| +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.5|4| +1.3.6.1.2.1.47.1.1.1.1.8.6|4| +1.3.6.1.2.1.47.1.1.1.1.8.7|4| +1.3.6.1.2.1.47.1.1.1.1.8.8|4| +1.3.6.1.2.1.47.1.1.1.1.8.9|4| +1.3.6.1.2.1.47.1.1.1.1.8.10|4| +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.9.1|4| +1.3.6.1.2.1.47.1.1.1.1.9.2|4| +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.5|4| +1.3.6.1.2.1.47.1.1.1.1.9.6|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.8|4| +1.3.6.1.2.1.47.1.1.1.1.9.9|4| +1.3.6.1.2.1.47.1.1.1.1.9.10|4| +1.3.6.1.2.1.47.1.1.1.1.9.11|4| +1.3.6.1.2.1.47.1.1.1.1.9.12|4| +1.3.6.1.2.1.47.1.1.1.1.9.13|4| +1.3.6.1.2.1.47.1.1.1.1.10.1|4|FortiGate-60F v6.4.9,build1966,220421 (GA) +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.5|4| +1.3.6.1.2.1.47.1.1.1.1.10.6|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.8|4| +1.3.6.1.2.1.47.1.1.1.1.10.9|4| +1.3.6.1.2.1.47.1.1.1.1.10.10|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.11.1|4|FGT60FTK20056924 +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.5|4| +1.3.6.1.2.1.47.1.1.1.1.11.6|4| +1.3.6.1.2.1.47.1.1.1.1.11.7|4| +1.3.6.1.2.1.47.1.1.1.1.11.8|4| +1.3.6.1.2.1.47.1.1.1.1.11.9|4| +1.3.6.1.2.1.47.1.1.1.1.11.10|4| +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.12.1|4|Fortinet +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.5|4| +1.3.6.1.2.1.47.1.1.1.1.12.6|4| +1.3.6.1.2.1.47.1.1.1.1.12.7|4| +1.3.6.1.2.1.47.1.1.1.1.12.8|4| +1.3.6.1.2.1.47.1.1.1.1.12.9|4| +1.3.6.1.2.1.47.1.1.1.1.12.10|4| +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.13.1|4|FGT_60F +1.3.6.1.2.1.47.1.1.1.1.13.2|4| +1.3.6.1.2.1.47.1.1.1.1.13.3|4| +1.3.6.1.2.1.47.1.1.1.1.13.4|4| +1.3.6.1.2.1.47.1.1.1.1.13.5|4| +1.3.6.1.2.1.47.1.1.1.1.13.6|4| +1.3.6.1.2.1.47.1.1.1.1.13.7|4| +1.3.6.1.2.1.47.1.1.1.1.13.8|4| +1.3.6.1.2.1.47.1.1.1.1.13.9|4| +1.3.6.1.2.1.47.1.1.1.1.13.10|4| +1.3.6.1.2.1.47.1.1.1.1.13.11|4| +1.3.6.1.2.1.47.1.1.1.1.13.12|4| +1.3.6.1.2.1.47.1.1.1.1.13.13|4| +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|mgmt +1.3.6.1.2.1.47.1.1.1.1.14.5|4| +1.3.6.1.2.1.47.1.1.1.1.14.6|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.8|4| +1.3.6.1.2.1.47.1.1.1.1.14.9|4| +1.3.6.1.2.1.47.1.1.1.1.14.10|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.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.5|4| +1.3.6.1.2.1.47.1.1.1.1.15.6|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.8|4| +1.3.6.1.2.1.47.1.1.1.1.15.9|4| +1.3.6.1.2.1.47.1.1.1.1.15.10|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.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.5|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.6|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.8|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.10|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.17.1|4| +1.3.6.1.2.1.47.1.1.1.1.17.2|4| +1.3.6.1.2.1.47.1.1.1.1.17.3|4| +1.3.6.1.2.1.47.1.1.1.1.17.4|4| +1.3.6.1.2.1.47.1.1.1.1.17.5|4| +1.3.6.1.2.1.47.1.1.1.1.17.6|4| +1.3.6.1.2.1.47.1.1.1.1.17.7|4| +1.3.6.1.2.1.47.1.1.1.1.17.8|4| +1.3.6.1.2.1.47.1.1.1.1.17.9|4| +1.3.6.1.2.1.47.1.1.1.1.17.10|4| +1.3.6.1.2.1.47.1.1.1.1.17.11|4| +1.3.6.1.2.1.47.1.1.1.1.17.12|4| +1.3.6.1.2.1.47.1.1.1.1.17.13|4| +1.3.6.1.2.1.47.1.1.1.1.18.1|4| +1.3.6.1.2.1.47.1.1.1.1.18.2|4| +1.3.6.1.2.1.47.1.1.1.1.18.3|4| +1.3.6.1.2.1.47.1.1.1.1.18.4|4| +1.3.6.1.2.1.47.1.1.1.1.18.5|4| +1.3.6.1.2.1.47.1.1.1.1.18.6|4| +1.3.6.1.2.1.47.1.1.1.1.18.7|4| +1.3.6.1.2.1.47.1.1.1.1.18.8|4| +1.3.6.1.2.1.47.1.1.1.1.18.9|4| +1.3.6.1.2.1.47.1.1.1.1.18.10|4| +1.3.6.1.2.1.47.1.1.1.1.18.11|4| +1.3.6.1.2.1.47.1.1.1.1.18.12|4| +1.3.6.1.2.1.47.1.1.1.1.18.13|4| +1.3.6.1.2.1.47.1.3.2.1.2.2.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.3.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.4.0|6|1.3.6.1.2.1.2.2.1.1.1 +1.3.6.1.2.1.47.1.3.2.1.2.5.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.6.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.7.0|6|1.3.6.1.2.1.2.2.1.1.8 +1.3.6.1.2.1.47.1.3.2.1.2.8.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.9.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.10.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.11.0|6|1.3.6.1.2.1.2.2.1.1.2 +1.3.6.1.2.1.47.1.3.2.1.2.12.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.13.0|6|1.3.6.1.2.1.2.2.1.1.25 +1.3.6.1.4.1.12356.101.4.1.1.0|4|v6.4.9,build1966,220421 (GA) +1.3.6.1.4.1.12356.101.4.1.3.0|66|4 +1.3.6.1.4.1.12356.101.4.1.4.0|66|39 +1.3.6.1.4.1.12356.101.4.1.5.0|66|1964820 +1.3.6.1.4.1.12356.101.4.1.8.0|66|21489 +1.3.6.1.4.1.12356.101.4.1.11.0|66|221 +1.3.6.1.4.1.12356.101.4.1.12.0|66|131 +1.3.6.1.4.1.12356.101.4.1.13.0|66|139 +1.3.6.1.4.1.12356.101.4.1.14.0|66|139 +1.3.6.1.4.1.12356.101.4.3.1.0|2|4 +1.3.6.1.4.1.12356.101.4.3.2.1.1.1|2|1 +1.3.6.1.4.1.12356.101.4.3.2.1.1.2|2|2 +1.3.6.1.4.1.12356.101.4.3.2.1.1.3|2|3 +1.3.6.1.4.1.12356.101.4.3.2.1.1.4|2|4 +1.3.6.1.4.1.12356.101.4.3.2.1.2.1|4|CPU ON-DIE Temperature +1.3.6.1.4.1.12356.101.4.3.2.1.2.2|4|B50182 Temperature +1.3.6.1.4.1.12356.101.4.3.2.1.2.3|4|B50210_1 Temperature +1.3.6.1.4.1.12356.101.4.3.2.1.2.4|4|B50210_2 Temperature +1.3.6.1.4.1.12356.101.4.3.2.1.3.1|4|56.264 +1.3.6.1.4.1.12356.101.4.3.2.1.3.2|4|53.249599 +1.3.6.1.4.1.12356.101.4.3.2.1.3.3|4|41.858799 +1.3.6.1.4.1.12356.101.4.3.2.1.3.4|4|40.747601 +1.3.6.1.4.1.12356.101.4.3.2.1.4.1|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.2|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.3|2|0 +1.3.6.1.4.1.12356.101.4.3.2.1.4.4|2|0 +1.3.6.1.4.1.12356.101.4.4.2.1.2.1|66|2 +1.3.6.1.4.1.12356.101.4.4.2.1.2.2|66|2 +1.3.6.1.4.1.12356.101.4.4.2.1.2.3|66|5 +1.3.6.1.4.1.12356.101.4.4.2.1.2.4|66|4 +1.3.6.1.4.1.12356.101.4.4.2.1.2.5|66|0 +1.3.6.1.4.1.12356.101.4.4.2.1.2.6|66|0 +1.3.6.1.4.1.12356.101.4.4.2.1.2.7|66|0 +1.3.6.1.4.1.12356.101.4.4.2.1.2.8|66|0 +1.3.6.1.4.1.12356.101.12.1.1.0|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.2.1.2|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.2.2.2|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.1.2|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.3.2.2|4|redacted +1.3.6.1.4.1.12356.101.12.2.2.1.4.1.2|64|20.73.106.4 +1.3.6.1.4.1.12356.101.12.2.2.1.4.2.2|64|20.73.106.61 +1.3.6.1.4.1.12356.101.12.2.2.1.20.1.2|2|2 +1.3.6.1.4.1.12356.101.12.2.2.1.20.2.2|2|2 +1.3.6.1.4.1.12356.101.12.2.3.1.1.1|2|1 +1.3.6.1.4.1.12356.101.12.2.3.1.2.1|66|0 +1.3.6.1.4.1.12356.101.12.2.3.1.6.1|66|0 +1.3.6.1.4.1.12356.101.13.1.1.0|2|3 +1.3.6.1.4.1.12356.101.13.2.1.1.1.1|2|1 +1.3.6.1.4.1.12356.101.13.2.1.1.1.2|2|2 +1.3.6.1.4.1.12356.101.13.2.1.1.11.1|4|redacted +1.3.6.1.4.1.12356.101.13.2.1.1.11.2|4|redacted +1.3.6.1.4.1.12356.101.13.2.1.1.12.1|2|1 +1.3.6.1.4.1.12356.101.13.2.1.1.12.2|2|1 +1.3.6.1.4.1.12356.101.14.2.5.0|66|0 +1.3.6.1.4.1.12356.101.14.2.7.0|66|0 +1.3.6.1.6.3.10.2.1.3.0|2|795241