Add support for Fortinet FortiAPs (#15641)

This commit is contained in:
Adam James 2023-12-14 17:29:02 +00:00 committed by GitHub
parent f2856846eb
commit 66cc34dbd2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 12480 additions and 0 deletions

170
LibreNMS/OS/Fortiap.php Normal file
View File

@ -0,0 +1,170 @@
<?php
/*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation, either version 3 of the License, or (at your
* option) any later version. Please see LICENSE.txt at the top level of
* the source code distribution for details.
*
* @link https://www.librenms.org
* @copyright 2023 Transitiv Technologies Ltd. <info@transitiv.co.uk>
* @author Adam James <adam.james@transitiv.co.uk>
*/
namespace LibreNMS\OS;
use App\Models\Device;
use LibreNMS\Device\WirelessSensor;
use LibreNMS\Interfaces\Discovery\OSDiscovery;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessClientsDiscovery;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessFrequencyDiscovery;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessPowerDiscovery;
use LibreNMS\Interfaces\Polling\Sensors\WirelessFrequencyPolling;
use LibreNMS\OS\Shared\Fortinet;
class Fortiap extends Fortinet implements
OSDiscovery,
WirelessClientsDiscovery,
WirelessFrequencyDiscovery,
WirelessFrequencyPolling,
WirelessPowerDiscovery
{
protected function getHardwareName()
{
$rewrite_fortiap_hardware = [
'.1.3.6.1.4.1.12356.120.10.23112' => 'FAP-231F',
'.1.3.6.1.4.1.12356.120.10.23412' => 'FAP-234F',
'.1.3.6.1.4.1.12356.120.10.23912' => 'FAP-23JF',
'.1.3.6.1.4.1.12356.120.10.43112' => 'FAP-431F',
'.1.3.6.1.4.1.12356.120.10.43212' => 'FAP-432F',
'.1.3.6.1.4.1.12356.120.10.43312' => 'FAP-433F',
'.1.3.6.1.4.1.12356.120.10.83112' => 'FAP-831F',
'.1.3.6.1.4.1.12356.120.10.22111' => 'FAP-221E',
'.1.3.6.1.4.1.12356.120.10.22211' => 'FAP-222E',
'.1.3.6.1.4.1.12356.120.10.22311' => 'FAP-223E',
'.1.3.6.1.4.1.12356.120.10.22411' => 'FAP-224E',
'.1.3.6.1.4.1.12356.120.10.23111' => 'FAP-231E',
'.1.3.6.1.4.1.12356.120.10.32111' => 'FAP-321E',
'.1.3.6.1.4.1.12356.120.10.42111' => 'FAP-421E',
'.1.3.6.1.4.1.12356.120.10.42311' => 'FAP-423E',
'.1.3.6.1.4.1.12356.120.10.22131' => 'FAP-S221E',
'.1.3.6.1.4.1.12356.120.10.22331' => 'FAP-S223E',
'.1.3.6.1.4.1.12356.120.10.42131' => 'FAP-S421E',
'.1.3.6.1.4.1.12356.120.10.42231' => 'FAP-S422E',
'.1.3.6.1.4.1.12356.120.10.42331' => 'FAP-S423E',
'.1.3.6.1.4.1.12356.120.10.24941' => 'FAP-C24JE',
'.1.3.6.1.4.1.12356.120.10.22121' => 'FAP-U221EV',
'.1.3.6.1.4.1.12356.120.10.22321' => 'FAP-U223EV',
'.1.3.6.1.4.1.12356.120.10.24921' => 'FAP-U24JEV',
'.1.3.6.1.4.1.12356.120.10.32121' => 'FAP-U321EV',
'.1.3.6.1.4.1.12356.120.10.32321' => 'FAP-U323EV',
'.1.3.6.1.4.1.12356.120.10.42121' => 'FAP-U421EV',
'.1.3.6.1.4.1.12356.120.10.42221' => 'FAP-U422EV',
'.1.3.6.1.4.1.12356.120.10.42321' => 'FAP-U423EV',
'.1.3.6.1.4.1.12356.120.10.23122' => 'FAP-U231F',
'.1.3.6.1.4.1.12356.120.10.23422' => 'FAP-U234F',
'.1.3.6.1.4.1.12356.120.10.43122' => 'FAP-U431F',
'.1.3.6.1.4.1.12356.120.10.43222' => 'FAP-U432F',
'.1.3.6.1.4.1.12356.120.10.43322' => 'FAP-U433F',
];
return $rewrite_fortiap_hardware[$this->getDevice()->sysObjectID] ?? null;
}
public function discoverOS(Device $device): void
{
parent::discoverOS($device); // yaml
$device->hardware = $device->hardware ?: $this->getHardwareName();
}
public function discoverWirelessClients()
{
$fapVapStaInfoCounts = snmpwalk_cache_oid($this->getDeviceArray(), 'fapVapStaInfoCount', [], 'FORTINET-FORTIAP-MIB');
if (empty($fapVapStaInfoCounts)) {
return [];
}
$fapVapSSIDs = $this->getCacheByIndex('fapVapSSID', 'FORTINET-FORTIAP-MIB');
$ssids = [];
foreach ($fapVapStaInfoCounts as $index => $entry) {
$ssid = $fapVapSSIDs[$index];
if (empty($ssid)) {
continue;
}
if (isset($ssids[$ssid])) {
$ssids[$ssid]['oids'][] = '.1.3.6.1.4.1.12356.120.7.1.1.45.' . $index;
$ssids[$ssid]['count'] += $entry['fapVapStaInfoCount'];
} else {
$ssids[$ssid] = [
'oids' => ['.1.3.6.1.4.1.12356.120.7.1.1.45.' . $index],
'count' => $entry['fapVapStaInfoCount'],
];
}
}
$sensors = [];
foreach ($ssids as $ssid => $data) {
$sensors[] = new WirelessSensor(
'clients',
$this->getDeviceId(),
$data['oids'],
'fortiap',
$ssid,
'SSID: ' . $ssid,
$data['count']
);
}
return $sensors;
}
public function discoverWirelessFrequency()
{
$fapRadioChannelOper = $this->getCacheByIndex('fapRadioChannelOper', 'FORTINET-FORTIAP-MIB');
$sensors = [];
foreach ($fapRadioChannelOper as $index => $channel) {
$sensors[] = new WirelessSensor(
'frequency',
$this->getDeviceId(),
'.1.3.6.1.4.1.12356.120.4.1.1.14.' . $index,
'fortiap',
'Radio ' . $index,
"Frequency (Radio $index)",
WirelessSensor::channelToFrequency($channel)
);
}
return $sensors;
}
public function pollWirelessFrequency(array $sensors)
{
return $this->pollWirelessChannelAsFrequency($sensors);
}
public function discoverWirelessPower()
{
$fapRadioTxPowerOper = $this->getCacheByIndex('fapRadioTxPowerOper', 'FORTINET-FORTIAP-MIB');
$sensors = [];
foreach ($fapRadioTxPowerOper as $index => $power) {
$sensors[] = new WirelessSensor(
'power',
$this->getDeviceId(),
'.1.3.6.1.4.1.12356.120.4.1.1.10.' . $index,
'fortiap',
'Radio ' . $index,
"Tx Power (Radio $index)",
$power
);
}
return $sensors;
}
}

View File

@ -0,0 +1,5 @@
mib: FORTINET-FORTIAP-MIB
modules:
os:
version: FORTINET-FORTIAP-MIB::fapVersion.0
serial: FORTINET-FORTIAP-MIB::fapSerialNum.0

View File

@ -0,0 +1,10 @@
os: fortiap
text: 'Fortinet FortiAP'
type: wireless
icon: fortinet
group: fortinet
over:
- { graph: device_bits, text: 'Device Traffic' }
discovery:
- sysObjectID:
- .1.3.6.1.4.1.12356.120.10

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,990 @@
1.3.6.1.2.1.1.1.0|4|<private>
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.12356.120.10.83112
1.3.6.1.2.1.1.4.0|4|<private>
1.3.6.1.2.1.2.2.1.1.1|2|1
1.3.6.1.2.1.2.2.1.1.2|2|2
1.3.6.1.2.1.2.2.1.1.3|2|3
1.3.6.1.2.1.2.2.1.1.4|2|4
1.3.6.1.2.1.2.2.1.1.5|2|5
1.3.6.1.2.1.2.2.1.1.6|2|6
1.3.6.1.2.1.2.2.1.1.7|2|7
1.3.6.1.2.1.2.2.1.1.8|2|8
1.3.6.1.2.1.2.2.1.1.9|2|9
1.3.6.1.2.1.2.2.1.1.10|2|10
1.3.6.1.2.1.2.2.1.1.11|2|11
1.3.6.1.2.1.2.2.1.1.12|2|12
1.3.6.1.2.1.2.2.1.1.13|2|13
1.3.6.1.2.1.2.2.1.1.14|2|14
1.3.6.1.2.1.2.2.1.1.15|2|15
1.3.6.1.2.1.2.2.1.1.16|2|16
1.3.6.1.2.1.2.2.1.1.17|2|17
1.3.6.1.2.1.2.2.1.1.18|2|18
1.3.6.1.2.1.2.2.1.1.19|2|19
1.3.6.1.2.1.2.2.1.1.20|2|20
1.3.6.1.2.1.2.2.1.1.21|2|21
1.3.6.1.2.1.2.2.1.1.26|2|26
1.3.6.1.2.1.2.2.1.1.27|2|27
1.3.6.1.2.1.2.2.1.1.29|2|29
1.3.6.1.2.1.2.2.1.1.30|2|30
1.3.6.1.2.1.2.2.1.1.31|2|31
1.3.6.1.2.1.2.2.1.1.32|2|32
1.3.6.1.2.1.2.2.1.1.37|2|37
1.3.6.1.2.1.2.2.1.1.38|2|38
1.3.6.1.2.1.2.2.1.1.39|2|39
1.3.6.1.2.1.2.2.1.1.40|2|40
1.3.6.1.2.1.2.2.1.1.41|2|41
1.3.6.1.2.1.2.2.1.1.46|2|46
1.3.6.1.2.1.2.2.1.1.47|2|47
1.3.6.1.2.1.2.2.1.1.48|2|48
1.3.6.1.2.1.2.2.1.1.49|2|49
1.3.6.1.2.1.2.2.1.1.54|2|54
1.3.6.1.2.1.2.2.1.1.55|2|55
1.3.6.1.2.1.2.2.1.1.56|2|56
1.3.6.1.2.1.2.2.1.1.57|2|57
1.3.6.1.2.1.2.2.1.1.58|2|58
1.3.6.1.2.1.2.2.1.1.63|2|63
1.3.6.1.2.1.2.2.1.1.64|2|64
1.3.6.1.2.1.2.2.1.1.69|2|69
1.3.6.1.2.1.2.2.1.2.1|4|lo
1.3.6.1.2.1.2.2.1.2.2|4|gre0
1.3.6.1.2.1.2.2.1.2.3|4|gretap0
1.3.6.1.2.1.2.2.1.2.4|4|miireg
1.3.6.1.2.1.2.2.1.2.5|4|eth0
1.3.6.1.2.1.2.2.1.2.6|4|eth1
1.3.6.1.2.1.2.2.1.2.7|4|ip6tnl0
1.3.6.1.2.1.2.2.1.2.8|4|sit0
1.3.6.1.2.1.2.2.1.2.9|4|ifb0
1.3.6.1.2.1.2.2.1.2.10|4|ifb1
1.3.6.1.2.1.2.2.1.2.11|4|ip6gre0
1.3.6.1.2.1.2.2.1.2.12|4|bond0
1.3.6.1.2.1.2.2.1.2.13|4|wldvlan
1.3.6.1.2.1.2.2.1.2.14|4|ipsecdummy
1.3.6.1.2.1.2.2.1.2.15|4|teql0
1.3.6.1.2.1.2.2.1.2.16|4|wifi1
1.3.6.1.2.1.2.2.1.2.17|4|wifi0
1.3.6.1.2.1.2.2.1.2.18|4|soc0
1.3.6.1.2.1.2.2.1.2.19|4|wifi2
1.3.6.1.2.1.2.2.1.2.20|4|soc1
1.3.6.1.2.1.2.2.1.2.21|4|br0
1.3.6.1.2.1.2.2.1.2.26|4|wlan00
1.3.6.1.2.1.2.2.1.2.27|4|wlan10
1.3.6.1.2.1.2.2.1.2.29|4|wlbgs0
1.3.6.1.2.1.2.2.1.2.30|4|wlbgs1
1.3.6.1.2.1.2.2.1.2.31|4|wlan20
1.3.6.1.2.1.2.2.1.2.32|4|wlan01
1.3.6.1.2.1.2.2.1.2.37|4|br.140
1.3.6.1.2.1.2.2.1.2.38|4|eth0.140
1.3.6.1.2.1.2.2.1.2.39|4|eth1.140
1.3.6.1.2.1.2.2.1.2.40|4|w01.140
1.3.6.1.2.1.2.2.1.2.41|4|wlan02
1.3.6.1.2.1.2.2.1.2.46|4|br.101
1.3.6.1.2.1.2.2.1.2.47|4|eth0.101
1.3.6.1.2.1.2.2.1.2.48|4|eth1.101
1.3.6.1.2.1.2.2.1.2.49|4|w02.101
1.3.6.1.2.1.2.2.1.2.54|4|br.100
1.3.6.1.2.1.2.2.1.2.55|4|eth0.100
1.3.6.1.2.1.2.2.1.2.56|4|eth1.100
1.3.6.1.2.1.2.2.1.2.57|4|w10.100
1.3.6.1.2.1.2.2.1.2.58|4|wlan11
1.3.6.1.2.1.2.2.1.2.63|4|w11.140
1.3.6.1.2.1.2.2.1.2.64|4|wlan12
1.3.6.1.2.1.2.2.1.2.69|4|w12.101
1.3.6.1.2.1.2.2.1.3.1|2|24
1.3.6.1.2.1.2.2.1.3.2|2|131
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|1
1.3.6.1.2.1.2.2.1.3.5|2|6
1.3.6.1.2.1.2.2.1.3.6|2|6
1.3.6.1.2.1.2.2.1.3.7|2|131
1.3.6.1.2.1.2.2.1.3.8|2|131
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|1
1.3.6.1.2.1.2.2.1.3.12|2|6
1.3.6.1.2.1.2.2.1.3.13|2|6
1.3.6.1.2.1.2.2.1.3.14|2|1
1.3.6.1.2.1.2.2.1.3.15|2|1
1.3.6.1.2.1.2.2.1.3.16|2|1
1.3.6.1.2.1.2.2.1.3.17|2|1
1.3.6.1.2.1.2.2.1.3.18|2|1
1.3.6.1.2.1.2.2.1.3.19|2|1
1.3.6.1.2.1.2.2.1.3.20|2|1
1.3.6.1.2.1.2.2.1.3.21|2|6
1.3.6.1.2.1.2.2.1.3.26|2|6
1.3.6.1.2.1.2.2.1.3.27|2|6
1.3.6.1.2.1.2.2.1.3.29|2|6
1.3.6.1.2.1.2.2.1.3.30|2|6
1.3.6.1.2.1.2.2.1.3.31|2|6
1.3.6.1.2.1.2.2.1.3.32|2|6
1.3.6.1.2.1.2.2.1.3.37|2|6
1.3.6.1.2.1.2.2.1.3.38|2|6
1.3.6.1.2.1.2.2.1.3.39|2|6
1.3.6.1.2.1.2.2.1.3.40|2|6
1.3.6.1.2.1.2.2.1.3.41|2|6
1.3.6.1.2.1.2.2.1.3.46|2|6
1.3.6.1.2.1.2.2.1.3.47|2|6
1.3.6.1.2.1.2.2.1.3.48|2|6
1.3.6.1.2.1.2.2.1.3.49|2|6
1.3.6.1.2.1.2.2.1.3.54|2|6
1.3.6.1.2.1.2.2.1.3.55|2|6
1.3.6.1.2.1.2.2.1.3.56|2|6
1.3.6.1.2.1.2.2.1.3.57|2|6
1.3.6.1.2.1.2.2.1.3.58|2|6
1.3.6.1.2.1.2.2.1.3.63|2|6
1.3.6.1.2.1.2.2.1.3.64|2|6
1.3.6.1.2.1.2.2.1.3.69|2|6
1.3.6.1.2.1.2.2.1.4.1|2|65536
1.3.6.1.2.1.2.2.1.4.2|2|1476
1.3.6.1.2.1.2.2.1.4.3|2|1462
1.3.6.1.2.1.2.2.1.4.4|2|0
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|1452
1.3.6.1.2.1.2.2.1.4.8|2|1480
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|1448
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|0
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|0
1.3.6.1.2.1.2.2.1.4.21|2|1500
1.3.6.1.2.1.2.2.1.4.26|2|1500
1.3.6.1.2.1.2.2.1.4.27|2|2290
1.3.6.1.2.1.2.2.1.4.29|2|1500
1.3.6.1.2.1.2.2.1.4.30|2|1500
1.3.6.1.2.1.2.2.1.4.31|2|1500
1.3.6.1.2.1.2.2.1.4.32|2|2290
1.3.6.1.2.1.2.2.1.4.37|2|1500
1.3.6.1.2.1.2.2.1.4.38|2|1500
1.3.6.1.2.1.2.2.1.4.39|2|1500
1.3.6.1.2.1.2.2.1.4.40|2|1500
1.3.6.1.2.1.2.2.1.4.41|2|2290
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.49|2|1500
1.3.6.1.2.1.2.2.1.4.54|2|1500
1.3.6.1.2.1.2.2.1.4.55|2|1500
1.3.6.1.2.1.2.2.1.4.56|2|1500
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|2290
1.3.6.1.2.1.2.2.1.4.63|2|1500
1.3.6.1.2.1.2.2.1.4.64|2|2290
1.3.6.1.2.1.2.2.1.4.69|2|1500
1.3.6.1.2.1.2.2.1.5.1|66|10000000
1.3.6.1.2.1.2.2.1.5.2|66|0
1.3.6.1.2.1.2.2.1.5.3|66|0
1.3.6.1.2.1.2.2.1.5.4|66|0
1.3.6.1.2.1.2.2.1.5.5|66|1000000000
1.3.6.1.2.1.2.2.1.5.6|66|1000000000
1.3.6.1.2.1.2.2.1.5.7|66|0
1.3.6.1.2.1.2.2.1.5.8|66|0
1.3.6.1.2.1.2.2.1.5.9|66|0
1.3.6.1.2.1.2.2.1.5.10|66|0
1.3.6.1.2.1.2.2.1.5.11|66|0
1.3.6.1.2.1.2.2.1.5.12|66|0
1.3.6.1.2.1.2.2.1.5.13|66|0
1.3.6.1.2.1.2.2.1.5.14|66|0
1.3.6.1.2.1.2.2.1.5.15|66|0
1.3.6.1.2.1.2.2.1.5.16|66|0
1.3.6.1.2.1.2.2.1.5.17|66|0
1.3.6.1.2.1.2.2.1.5.18|66|0
1.3.6.1.2.1.2.2.1.5.19|66|0
1.3.6.1.2.1.2.2.1.5.20|66|0
1.3.6.1.2.1.2.2.1.5.21|66|0
1.3.6.1.2.1.2.2.1.5.26|66|0
1.3.6.1.2.1.2.2.1.5.27|66|2294000000
1.3.6.1.2.1.2.2.1.5.29|66|0
1.3.6.1.2.1.2.2.1.5.30|66|0
1.3.6.1.2.1.2.2.1.5.31|66|0
1.3.6.1.2.1.2.2.1.5.32|66|573000000
1.3.6.1.2.1.2.2.1.5.37|66|0
1.3.6.1.2.1.2.2.1.5.38|66|1000000000
1.3.6.1.2.1.2.2.1.5.39|66|1000000000
1.3.6.1.2.1.2.2.1.5.40|66|0
1.3.6.1.2.1.2.2.1.5.41|66|573000000
1.3.6.1.2.1.2.2.1.5.46|66|0
1.3.6.1.2.1.2.2.1.5.47|66|1000000000
1.3.6.1.2.1.2.2.1.5.48|66|1000000000
1.3.6.1.2.1.2.2.1.5.49|66|0
1.3.6.1.2.1.2.2.1.5.54|66|0
1.3.6.1.2.1.2.2.1.5.55|66|1000000000
1.3.6.1.2.1.2.2.1.5.56|66|1000000000
1.3.6.1.2.1.2.2.1.5.57|66|0
1.3.6.1.2.1.2.2.1.5.58|66|2294000000
1.3.6.1.2.1.2.2.1.5.63|66|0
1.3.6.1.2.1.2.2.1.5.64|66|2294000000
1.3.6.1.2.1.2.2.1.5.69|66|0
1.3.6.1.2.1.2.2.1.6.1|4|
1.3.6.1.2.1.2.2.1.6.2|4|
1.3.6.1.2.1.2.2.1.6.3|4|
1.3.6.1.2.1.2.2.1.6.4|4|
1.3.6.1.2.1.2.2.1.6.5|4x|d476a0da4330
1.3.6.1.2.1.2.2.1.6.6|4x|d476a0da4331
1.3.6.1.2.1.2.2.1.6.7|4|
1.3.6.1.2.1.2.2.1.6.8|4|
1.3.6.1.2.1.2.2.1.6.9|4x|2a80587b996f
1.3.6.1.2.1.2.2.1.6.10|4x|4aeff50ede12
1.3.6.1.2.1.2.2.1.6.11|4|
1.3.6.1.2.1.2.2.1.6.12|4x|3ee320c35ad8
1.3.6.1.2.1.2.2.1.6.13|4x|d476a0da4330
1.3.6.1.2.1.2.2.1.6.14|4|
1.3.6.1.2.1.2.2.1.6.15|4|
1.3.6.1.2.1.2.2.1.6.16|4x|d476a0da4340
1.3.6.1.2.1.2.2.1.6.17|4x|d476a0da4338
1.3.6.1.2.1.2.2.1.6.18|4|
1.3.6.1.2.1.2.2.1.6.19|4x|d476a0da4348
1.3.6.1.2.1.2.2.1.6.20|4|
1.3.6.1.2.1.2.2.1.6.21|4x|d476a0da4330
1.3.6.1.2.1.2.2.1.6.26|4x|d476a0da4338
1.3.6.1.2.1.2.2.1.6.27|4x|d476a0da4340
1.3.6.1.2.1.2.2.1.6.29|4x|d476a0da433f
1.3.6.1.2.1.2.2.1.6.30|4x|d476a0da4347
1.3.6.1.2.1.2.2.1.6.31|4x|d476a0da4348
1.3.6.1.2.1.2.2.1.6.32|4x|d476a0da4339
1.3.6.1.2.1.2.2.1.6.37|4x|d476a0da4330
1.3.6.1.2.1.2.2.1.6.38|4x|d476a0da4330
1.3.6.1.2.1.2.2.1.6.39|4x|d476a0da4331
1.3.6.1.2.1.2.2.1.6.40|4x|d476a0da4330
1.3.6.1.2.1.2.2.1.6.41|4x|d476a0da433a
1.3.6.1.2.1.2.2.1.6.46|4x|d476a0da4330
1.3.6.1.2.1.2.2.1.6.47|4x|d476a0da4330
1.3.6.1.2.1.2.2.1.6.48|4x|d476a0da4331
1.3.6.1.2.1.2.2.1.6.49|4x|d476a0da4330
1.3.6.1.2.1.2.2.1.6.54|4x|d476a0da4330
1.3.6.1.2.1.2.2.1.6.55|4x|d476a0da4330
1.3.6.1.2.1.2.2.1.6.56|4x|d476a0da4331
1.3.6.1.2.1.2.2.1.6.57|4x|d476a0da4330
1.3.6.1.2.1.2.2.1.6.58|4x|d476a0da4341
1.3.6.1.2.1.2.2.1.6.63|4x|d476a0da4330
1.3.6.1.2.1.2.2.1.6.64|4x|d476a0da4342
1.3.6.1.2.1.2.2.1.6.69|4x|d476a0da4330
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|2
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|2
1.3.6.1.2.1.2.2.1.7.12|2|2
1.3.6.1.2.1.2.2.1.7.13|2|2
1.3.6.1.2.1.2.2.1.7.14|2|2
1.3.6.1.2.1.2.2.1.7.15|2|2
1.3.6.1.2.1.2.2.1.7.16|2|1
1.3.6.1.2.1.2.2.1.7.17|2|1
1.3.6.1.2.1.2.2.1.7.18|2|2
1.3.6.1.2.1.2.2.1.7.19|2|1
1.3.6.1.2.1.2.2.1.7.20|2|2
1.3.6.1.2.1.2.2.1.7.21|2|1
1.3.6.1.2.1.2.2.1.7.26|2|2
1.3.6.1.2.1.2.2.1.7.27|2|1
1.3.6.1.2.1.2.2.1.7.29|2|1
1.3.6.1.2.1.2.2.1.7.30|2|1
1.3.6.1.2.1.2.2.1.7.31|2|1
1.3.6.1.2.1.2.2.1.7.32|2|1
1.3.6.1.2.1.2.2.1.7.37|2|1
1.3.6.1.2.1.2.2.1.7.38|2|1
1.3.6.1.2.1.2.2.1.7.39|2|1
1.3.6.1.2.1.2.2.1.7.40|2|1
1.3.6.1.2.1.2.2.1.7.41|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|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.54|2|1
1.3.6.1.2.1.2.2.1.7.55|2|1
1.3.6.1.2.1.2.2.1.7.56|2|1
1.3.6.1.2.1.2.2.1.7.57|2|1
1.3.6.1.2.1.2.2.1.7.58|2|1
1.3.6.1.2.1.2.2.1.7.63|2|1
1.3.6.1.2.1.2.2.1.7.64|2|1
1.3.6.1.2.1.2.2.1.7.69|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|1
1.3.6.1.2.1.2.2.1.8.7|2|2
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|2
1.3.6.1.2.1.2.2.1.8.12|2|2
1.3.6.1.2.1.2.2.1.8.13|2|2
1.3.6.1.2.1.2.2.1.8.14|2|2
1.3.6.1.2.1.2.2.1.8.15|2|2
1.3.6.1.2.1.2.2.1.8.16|2|1
1.3.6.1.2.1.2.2.1.8.17|2|1
1.3.6.1.2.1.2.2.1.8.18|2|2
1.3.6.1.2.1.2.2.1.8.19|2|1
1.3.6.1.2.1.2.2.1.8.20|2|2
1.3.6.1.2.1.2.2.1.8.21|2|1
1.3.6.1.2.1.2.2.1.8.26|2|2
1.3.6.1.2.1.2.2.1.8.27|2|1
1.3.6.1.2.1.2.2.1.8.29|2|2
1.3.6.1.2.1.2.2.1.8.30|2|2
1.3.6.1.2.1.2.2.1.8.31|2|2
1.3.6.1.2.1.2.2.1.8.32|2|1
1.3.6.1.2.1.2.2.1.8.37|2|1
1.3.6.1.2.1.2.2.1.8.38|2|1
1.3.6.1.2.1.2.2.1.8.39|2|1
1.3.6.1.2.1.2.2.1.8.40|2|1
1.3.6.1.2.1.2.2.1.8.41|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|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.54|2|1
1.3.6.1.2.1.2.2.1.8.55|2|1
1.3.6.1.2.1.2.2.1.8.56|2|1
1.3.6.1.2.1.2.2.1.8.57|2|1
1.3.6.1.2.1.2.2.1.8.58|2|1
1.3.6.1.2.1.2.2.1.8.63|2|1
1.3.6.1.2.1.2.2.1.8.64|2|1
1.3.6.1.2.1.2.2.1.8.69|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
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.26|67|0
1.3.6.1.2.1.2.2.1.9.27|67|0
1.3.6.1.2.1.2.2.1.9.29|67|0
1.3.6.1.2.1.2.2.1.9.30|67|0
1.3.6.1.2.1.2.2.1.9.31|67|0
1.3.6.1.2.1.2.2.1.9.32|67|0
1.3.6.1.2.1.2.2.1.9.37|67|0
1.3.6.1.2.1.2.2.1.9.38|67|0
1.3.6.1.2.1.2.2.1.9.39|67|0
1.3.6.1.2.1.2.2.1.9.40|67|0
1.3.6.1.2.1.2.2.1.9.41|67|0
1.3.6.1.2.1.2.2.1.9.46|67|0
1.3.6.1.2.1.2.2.1.9.47|67|0
1.3.6.1.2.1.2.2.1.9.48|67|0
1.3.6.1.2.1.2.2.1.9.49|67|0
1.3.6.1.2.1.2.2.1.9.54|67|0
1.3.6.1.2.1.2.2.1.9.55|67|0
1.3.6.1.2.1.2.2.1.9.56|67|0
1.3.6.1.2.1.2.2.1.9.57|67|0
1.3.6.1.2.1.2.2.1.9.58|67|0
1.3.6.1.2.1.2.2.1.9.63|67|0
1.3.6.1.2.1.2.2.1.9.64|67|0
1.3.6.1.2.1.2.2.1.9.69|67|0
1.3.6.1.2.1.2.2.1.10.1|65|281661940
1.3.6.1.2.1.2.2.1.10.2|65|0
1.3.6.1.2.1.2.2.1.10.3|65|0
1.3.6.1.2.1.2.2.1.10.4|65|0
1.3.6.1.2.1.2.2.1.10.5|65|2989998867
1.3.6.1.2.1.2.2.1.10.6|65|35689822
1.3.6.1.2.1.2.2.1.10.7|65|0
1.3.6.1.2.1.2.2.1.10.8|65|0
1.3.6.1.2.1.2.2.1.10.9|65|0
1.3.6.1.2.1.2.2.1.10.10|65|0
1.3.6.1.2.1.2.2.1.10.11|65|0
1.3.6.1.2.1.2.2.1.10.12|65|0
1.3.6.1.2.1.2.2.1.10.13|65|0
1.3.6.1.2.1.2.2.1.10.14|65|0
1.3.6.1.2.1.2.2.1.10.15|65|0
1.3.6.1.2.1.2.2.1.10.16|65|333703010
1.3.6.1.2.1.2.2.1.10.17|65|474791583
1.3.6.1.2.1.2.2.1.10.18|65|0
1.3.6.1.2.1.2.2.1.10.19|65|0
1.3.6.1.2.1.2.2.1.10.20|65|0
1.3.6.1.2.1.2.2.1.10.21|65|731203377
1.3.6.1.2.1.2.2.1.10.26|65|0
1.3.6.1.2.1.2.2.1.10.27|65|2599803897
1.3.6.1.2.1.2.2.1.10.29|65|0
1.3.6.1.2.1.2.2.1.10.30|65|0
1.3.6.1.2.1.2.2.1.10.31|65|0
1.3.6.1.2.1.2.2.1.10.32|65|473569362
1.3.6.1.2.1.2.2.1.10.37|65|486114670
1.3.6.1.2.1.2.2.1.10.38|65|3348295006
1.3.6.1.2.1.2.2.1.10.39|65|0
1.3.6.1.2.1.2.2.1.10.40|65|0
1.3.6.1.2.1.2.2.1.10.41|65|0
1.3.6.1.2.1.2.2.1.10.46|65|9281192
1.3.6.1.2.1.2.2.1.10.47|65|9281732
1.3.6.1.2.1.2.2.1.10.48|65|0
1.3.6.1.2.1.2.2.1.10.49|65|0
1.3.6.1.2.1.2.2.1.10.54|65|3602452818
1.3.6.1.2.1.2.2.1.10.55|65|89948858
1.3.6.1.2.1.2.2.1.10.56|65|0
1.3.6.1.2.1.2.2.1.10.57|65|0
1.3.6.1.2.1.2.2.1.10.58|65|1984289910
1.3.6.1.2.1.2.2.1.10.63|65|0
1.3.6.1.2.1.2.2.1.10.64|65|0
1.3.6.1.2.1.2.2.1.10.69|65|0
1.3.6.1.2.1.2.2.1.11.1|65|2711018
1.3.6.1.2.1.2.2.1.11.2|65|0
1.3.6.1.2.1.2.2.1.11.3|65|0
1.3.6.1.2.1.2.2.1.11.4|65|0
1.3.6.1.2.1.2.2.1.11.5|65|896203354
1.3.6.1.2.1.2.2.1.11.6|65|3236
1.3.6.1.2.1.2.2.1.11.7|65|0
1.3.6.1.2.1.2.2.1.11.8|65|0
1.3.6.1.2.1.2.2.1.11.9|65|0
1.3.6.1.2.1.2.2.1.11.10|65|0
1.3.6.1.2.1.2.2.1.11.11|65|0
1.3.6.1.2.1.2.2.1.11.12|65|0
1.3.6.1.2.1.2.2.1.11.13|65|0
1.3.6.1.2.1.2.2.1.11.14|65|0
1.3.6.1.2.1.2.2.1.11.15|65|0
1.3.6.1.2.1.2.2.1.11.16|65|463892281
1.3.6.1.2.1.2.2.1.11.17|65|1522400
1.3.6.1.2.1.2.2.1.11.18|65|0
1.3.6.1.2.1.2.2.1.11.19|65|0
1.3.6.1.2.1.2.2.1.11.20|65|0
1.3.6.1.2.1.2.2.1.11.21|65|5677578
1.3.6.1.2.1.2.2.1.11.26|65|0
1.3.6.1.2.1.2.2.1.11.27|65|295182771
1.3.6.1.2.1.2.2.1.11.29|65|0
1.3.6.1.2.1.2.2.1.11.30|65|0
1.3.6.1.2.1.2.2.1.11.31|65|0
1.3.6.1.2.1.2.2.1.11.32|65|1510458
1.3.6.1.2.1.2.2.1.11.37|65|4663290
1.3.6.1.2.1.2.2.1.11.38|65|491429318
1.3.6.1.2.1.2.2.1.11.39|65|0
1.3.6.1.2.1.2.2.1.11.40|65|0
1.3.6.1.2.1.2.2.1.11.41|65|0
1.3.6.1.2.1.2.2.1.11.46|65|78795
1.3.6.1.2.1.2.2.1.11.47|65|60251
1.3.6.1.2.1.2.2.1.11.48|65|0
1.3.6.1.2.1.2.2.1.11.49|65|0
1.3.6.1.2.1.2.2.1.11.54|65|31482178
1.3.6.1.2.1.2.2.1.11.55|65|395043374
1.3.6.1.2.1.2.2.1.11.56|65|0
1.3.6.1.2.1.2.2.1.11.57|65|0
1.3.6.1.2.1.2.2.1.11.58|65|167970026
1.3.6.1.2.1.2.2.1.11.63|65|0
1.3.6.1.2.1.2.2.1.11.64|65|0
1.3.6.1.2.1.2.2.1.11.69|65|0
1.3.6.1.2.1.2.2.1.12.1|65|0
1.3.6.1.2.1.2.2.1.12.2|65|0
1.3.6.1.2.1.2.2.1.12.3|65|0
1.3.6.1.2.1.2.2.1.12.4|65|0
1.3.6.1.2.1.2.2.1.12.5|65|15933231
1.3.6.1.2.1.2.2.1.12.6|65|126903
1.3.6.1.2.1.2.2.1.12.7|65|0
1.3.6.1.2.1.2.2.1.12.8|65|0
1.3.6.1.2.1.2.2.1.12.9|65|0
1.3.6.1.2.1.2.2.1.12.10|65|0
1.3.6.1.2.1.2.2.1.12.11|65|0
1.3.6.1.2.1.2.2.1.12.12|65|0
1.3.6.1.2.1.2.2.1.12.13|65|0
1.3.6.1.2.1.2.2.1.12.14|65|0
1.3.6.1.2.1.2.2.1.12.15|65|0
1.3.6.1.2.1.2.2.1.12.16|65|0
1.3.6.1.2.1.2.2.1.12.17|65|0
1.3.6.1.2.1.2.2.1.12.18|65|0
1.3.6.1.2.1.2.2.1.12.19|65|0
1.3.6.1.2.1.2.2.1.12.20|65|0
1.3.6.1.2.1.2.2.1.12.21|65|0
1.3.6.1.2.1.2.2.1.12.26|65|0
1.3.6.1.2.1.2.2.1.12.27|65|0
1.3.6.1.2.1.2.2.1.12.29|65|0
1.3.6.1.2.1.2.2.1.12.30|65|0
1.3.6.1.2.1.2.2.1.12.31|65|0
1.3.6.1.2.1.2.2.1.12.32|65|0
1.3.6.1.2.1.2.2.1.12.37|65|0
1.3.6.1.2.1.2.2.1.12.38|65|0
1.3.6.1.2.1.2.2.1.12.39|65|0
1.3.6.1.2.1.2.2.1.12.40|65|0
1.3.6.1.2.1.2.2.1.12.41|65|0
1.3.6.1.2.1.2.2.1.12.46|65|0
1.3.6.1.2.1.2.2.1.12.47|65|18551
1.3.6.1.2.1.2.2.1.12.48|65|0
1.3.6.1.2.1.2.2.1.12.49|65|0
1.3.6.1.2.1.2.2.1.12.54|65|0
1.3.6.1.2.1.2.2.1.12.55|65|12379737
1.3.6.1.2.1.2.2.1.12.56|65|0
1.3.6.1.2.1.2.2.1.12.57|65|0
1.3.6.1.2.1.2.2.1.12.58|65|0
1.3.6.1.2.1.2.2.1.12.63|65|0
1.3.6.1.2.1.2.2.1.12.64|65|0
1.3.6.1.2.1.2.2.1.12.69|65|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|120256
1.3.6.1.2.1.2.2.1.13.6|65|120257
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|957186
1.3.6.1.2.1.2.2.1.13.17|65|121017
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.26|65|0
1.3.6.1.2.1.2.2.1.13.27|65|6881
1.3.6.1.2.1.2.2.1.13.29|65|0
1.3.6.1.2.1.2.2.1.13.30|65|0
1.3.6.1.2.1.2.2.1.13.31|65|0
1.3.6.1.2.1.2.2.1.13.32|65|35
1.3.6.1.2.1.2.2.1.13.37|65|31086
1.3.6.1.2.1.2.2.1.13.38|65|0
1.3.6.1.2.1.2.2.1.13.39|65|0
1.3.6.1.2.1.2.2.1.13.40|65|0
1.3.6.1.2.1.2.2.1.13.41|65|0
1.3.6.1.2.1.2.2.1.13.46|65|0
1.3.6.1.2.1.2.2.1.13.47|65|0
1.3.6.1.2.1.2.2.1.13.48|65|0
1.3.6.1.2.1.2.2.1.13.49|65|0
1.3.6.1.2.1.2.2.1.13.54|65|7378
1.3.6.1.2.1.2.2.1.13.55|65|0
1.3.6.1.2.1.2.2.1.13.56|65|0
1.3.6.1.2.1.2.2.1.13.57|65|0
1.3.6.1.2.1.2.2.1.13.58|65|2968
1.3.6.1.2.1.2.2.1.13.63|65|0
1.3.6.1.2.1.2.2.1.13.64|65|0
1.3.6.1.2.1.2.2.1.13.69|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|10953455
1.3.6.1.2.1.2.2.1.14.17|65|234570
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|30000
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.26|65|0
1.3.6.1.2.1.2.2.1.14.27|65|6881
1.3.6.1.2.1.2.2.1.14.29|65|0
1.3.6.1.2.1.2.2.1.14.30|65|0
1.3.6.1.2.1.2.2.1.14.31|65|0
1.3.6.1.2.1.2.2.1.14.32|65|35
1.3.6.1.2.1.2.2.1.14.37|65|0
1.3.6.1.2.1.2.2.1.14.38|65|0
1.3.6.1.2.1.2.2.1.14.39|65|0
1.3.6.1.2.1.2.2.1.14.40|65|0
1.3.6.1.2.1.2.2.1.14.41|65|0
1.3.6.1.2.1.2.2.1.14.46|65|0
1.3.6.1.2.1.2.2.1.14.47|65|0
1.3.6.1.2.1.2.2.1.14.48|65|0
1.3.6.1.2.1.2.2.1.14.49|65|0
1.3.6.1.2.1.2.2.1.14.54|65|0
1.3.6.1.2.1.2.2.1.14.55|65|0
1.3.6.1.2.1.2.2.1.14.56|65|0
1.3.6.1.2.1.2.2.1.14.57|65|0
1.3.6.1.2.1.2.2.1.14.58|65|2968
1.3.6.1.2.1.2.2.1.14.63|65|0
1.3.6.1.2.1.2.2.1.14.64|65|0
1.3.6.1.2.1.2.2.1.14.69|65|0
1.3.6.1.2.1.2.2.1.15.1|65|0
1.3.6.1.2.1.2.2.1.15.2|65|0
1.3.6.1.2.1.2.2.1.15.3|65|0
1.3.6.1.2.1.2.2.1.15.4|65|0
1.3.6.1.2.1.2.2.1.15.5|65|0
1.3.6.1.2.1.2.2.1.15.6|65|0
1.3.6.1.2.1.2.2.1.15.7|65|0
1.3.6.1.2.1.2.2.1.15.8|65|0
1.3.6.1.2.1.2.2.1.15.9|65|0
1.3.6.1.2.1.2.2.1.15.10|65|0
1.3.6.1.2.1.2.2.1.15.11|65|0
1.3.6.1.2.1.2.2.1.15.12|65|0
1.3.6.1.2.1.2.2.1.15.13|65|0
1.3.6.1.2.1.2.2.1.15.14|65|0
1.3.6.1.2.1.2.2.1.15.15|65|0
1.3.6.1.2.1.2.2.1.15.16|65|0
1.3.6.1.2.1.2.2.1.15.17|65|0
1.3.6.1.2.1.2.2.1.15.18|65|0
1.3.6.1.2.1.2.2.1.15.19|65|0
1.3.6.1.2.1.2.2.1.15.20|65|0
1.3.6.1.2.1.2.2.1.15.21|65|0
1.3.6.1.2.1.2.2.1.15.26|65|0
1.3.6.1.2.1.2.2.1.15.27|65|0
1.3.6.1.2.1.2.2.1.15.29|65|0
1.3.6.1.2.1.2.2.1.15.30|65|0
1.3.6.1.2.1.2.2.1.15.31|65|0
1.3.6.1.2.1.2.2.1.15.32|65|0
1.3.6.1.2.1.2.2.1.15.37|65|0
1.3.6.1.2.1.2.2.1.15.38|65|0
1.3.6.1.2.1.2.2.1.15.39|65|0
1.3.6.1.2.1.2.2.1.15.40|65|0
1.3.6.1.2.1.2.2.1.15.41|65|0
1.3.6.1.2.1.2.2.1.15.46|65|0
1.3.6.1.2.1.2.2.1.15.47|65|0
1.3.6.1.2.1.2.2.1.15.48|65|0
1.3.6.1.2.1.2.2.1.15.49|65|0
1.3.6.1.2.1.2.2.1.15.54|65|0
1.3.6.1.2.1.2.2.1.15.55|65|0
1.3.6.1.2.1.2.2.1.15.56|65|0
1.3.6.1.2.1.2.2.1.15.57|65|0
1.3.6.1.2.1.2.2.1.15.58|65|0
1.3.6.1.2.1.2.2.1.15.63|65|0
1.3.6.1.2.1.2.2.1.15.64|65|0
1.3.6.1.2.1.2.2.1.15.69|65|0
1.3.6.1.2.1.2.2.1.16.1|65|281661940
1.3.6.1.2.1.2.2.1.16.2|65|0
1.3.6.1.2.1.2.2.1.16.3|65|0
1.3.6.1.2.1.2.2.1.16.4|65|0
1.3.6.1.2.1.2.2.1.16.5|65|1651309760
1.3.6.1.2.1.2.2.1.16.6|65|1159116183
1.3.6.1.2.1.2.2.1.16.7|65|0
1.3.6.1.2.1.2.2.1.16.8|65|0
1.3.6.1.2.1.2.2.1.16.9|65|0
1.3.6.1.2.1.2.2.1.16.10|65|0
1.3.6.1.2.1.2.2.1.16.11|65|0
1.3.6.1.2.1.2.2.1.16.12|65|0
1.3.6.1.2.1.2.2.1.16.13|65|0
1.3.6.1.2.1.2.2.1.16.14|65|0
1.3.6.1.2.1.2.2.1.16.15|65|0
1.3.6.1.2.1.2.2.1.16.16|65|2758221954
1.3.6.1.2.1.2.2.1.16.17|65|392333564
1.3.6.1.2.1.2.2.1.16.18|65|0
1.3.6.1.2.1.2.2.1.16.19|65|0
1.3.6.1.2.1.2.2.1.16.20|65|0
1.3.6.1.2.1.2.2.1.16.21|65|934210398
1.3.6.1.2.1.2.2.1.16.26|65|0
1.3.6.1.2.1.2.2.1.16.27|65|1977296533
1.3.6.1.2.1.2.2.1.16.29|65|0
1.3.6.1.2.1.2.2.1.16.30|65|0
1.3.6.1.2.1.2.2.1.16.31|65|0
1.3.6.1.2.1.2.2.1.16.32|65|379525834
1.3.6.1.2.1.2.2.1.16.37|65|738
1.3.6.1.2.1.2.2.1.16.38|65|2498946627
1.3.6.1.2.1.2.2.1.16.39|65|716796234
1.3.6.1.2.1.2.2.1.16.40|65|0
1.3.6.1.2.1.2.2.1.16.41|65|0
1.3.6.1.2.1.2.2.1.16.46|65|738
1.3.6.1.2.1.2.2.1.16.47|65|1476
1.3.6.1.2.1.2.2.1.16.48|65|10386436
1.3.6.1.2.1.2.2.1.16.49|65|0
1.3.6.1.2.1.2.2.1.16.54|65|738
1.3.6.1.2.1.2.2.1.16.55|65|2695724528
1.3.6.1.2.1.2.2.1.16.56|65|4060870034
1.3.6.1.2.1.2.2.1.16.57|65|0
1.3.6.1.2.1.2.2.1.16.58|65|3229865424
1.3.6.1.2.1.2.2.1.16.63|65|0
1.3.6.1.2.1.2.2.1.16.64|65|0
1.3.6.1.2.1.2.2.1.16.69|65|0
1.3.6.1.2.1.2.2.1.17.1|65|2711018
1.3.6.1.2.1.2.2.1.17.2|65|0
1.3.6.1.2.1.2.2.1.17.3|65|0
1.3.6.1.2.1.2.2.1.17.4|65|0
1.3.6.1.2.1.2.2.1.17.5|65|528208798
1.3.6.1.2.1.2.2.1.17.6|65|45630123
1.3.6.1.2.1.2.2.1.17.7|65|0
1.3.6.1.2.1.2.2.1.17.8|65|0
1.3.6.1.2.1.2.2.1.17.9|65|0
1.3.6.1.2.1.2.2.1.17.10|65|0
1.3.6.1.2.1.2.2.1.17.11|65|0
1.3.6.1.2.1.2.2.1.17.12|65|0
1.3.6.1.2.1.2.2.1.17.13|65|0
1.3.6.1.2.1.2.2.1.17.14|65|0
1.3.6.1.2.1.2.2.1.17.15|65|0
1.3.6.1.2.1.2.2.1.17.16|65|885083309
1.3.6.1.2.1.2.2.1.17.17|65|5021215
1.3.6.1.2.1.2.2.1.17.18|65|0
1.3.6.1.2.1.2.2.1.17.19|65|0
1.3.6.1.2.1.2.2.1.17.20|65|0
1.3.6.1.2.1.2.2.1.17.21|65|62896306
1.3.6.1.2.1.2.2.1.17.26|65|0
1.3.6.1.2.1.2.2.1.17.27|65|404085585
1.3.6.1.2.1.2.2.1.17.29|65|0
1.3.6.1.2.1.2.2.1.17.30|65|0
1.3.6.1.2.1.2.2.1.17.31|65|0
1.3.6.1.2.1.2.2.1.17.32|65|5002783
1.3.6.1.2.1.2.2.1.17.37|65|7
1.3.6.1.2.1.2.2.1.17.38|65|169724572
1.3.6.1.2.1.2.2.1.17.39|65|11571860
1.3.6.1.2.1.2.2.1.17.40|65|0
1.3.6.1.2.1.2.2.1.17.41|65|0
1.3.6.1.2.1.2.2.1.17.46|65|7
1.3.6.1.2.1.2.2.1.17.47|65|14
1.3.6.1.2.1.2.2.1.17.48|65|78816
1.3.6.1.2.1.2.2.1.17.49|65|0
1.3.6.1.2.1.2.2.1.17.54|65|7
1.3.6.1.2.1.2.2.1.17.55|65|295440879
1.3.6.1.2.1.2.2.1.17.56|65|31723297
1.3.6.1.2.1.2.2.1.17.57|65|0
1.3.6.1.2.1.2.2.1.17.58|65|478908964
1.3.6.1.2.1.2.2.1.17.63|65|0
1.3.6.1.2.1.2.2.1.17.64|65|0
1.3.6.1.2.1.2.2.1.17.69|65|0
1.3.6.1.2.1.2.2.1.18.1|65|0
1.3.6.1.2.1.2.2.1.18.2|65|0
1.3.6.1.2.1.2.2.1.18.3|65|0
1.3.6.1.2.1.2.2.1.18.4|65|0
1.3.6.1.2.1.2.2.1.18.5|65|0
1.3.6.1.2.1.2.2.1.18.6|65|0
1.3.6.1.2.1.2.2.1.18.7|65|0
1.3.6.1.2.1.2.2.1.18.8|65|0
1.3.6.1.2.1.2.2.1.18.9|65|0
1.3.6.1.2.1.2.2.1.18.10|65|0
1.3.6.1.2.1.2.2.1.18.11|65|0
1.3.6.1.2.1.2.2.1.18.12|65|0
1.3.6.1.2.1.2.2.1.18.13|65|0
1.3.6.1.2.1.2.2.1.18.14|65|0
1.3.6.1.2.1.2.2.1.18.15|65|0
1.3.6.1.2.1.2.2.1.18.16|65|0
1.3.6.1.2.1.2.2.1.18.17|65|0
1.3.6.1.2.1.2.2.1.18.18|65|0
1.3.6.1.2.1.2.2.1.18.19|65|0
1.3.6.1.2.1.2.2.1.18.20|65|0
1.3.6.1.2.1.2.2.1.18.21|65|0
1.3.6.1.2.1.2.2.1.18.26|65|0
1.3.6.1.2.1.2.2.1.18.27|65|0
1.3.6.1.2.1.2.2.1.18.29|65|0
1.3.6.1.2.1.2.2.1.18.30|65|0
1.3.6.1.2.1.2.2.1.18.31|65|0
1.3.6.1.2.1.2.2.1.18.32|65|0
1.3.6.1.2.1.2.2.1.18.37|65|0
1.3.6.1.2.1.2.2.1.18.38|65|0
1.3.6.1.2.1.2.2.1.18.39|65|0
1.3.6.1.2.1.2.2.1.18.40|65|0
1.3.6.1.2.1.2.2.1.18.41|65|0
1.3.6.1.2.1.2.2.1.18.46|65|0
1.3.6.1.2.1.2.2.1.18.47|65|0
1.3.6.1.2.1.2.2.1.18.48|65|0
1.3.6.1.2.1.2.2.1.18.49|65|0
1.3.6.1.2.1.2.2.1.18.54|65|0
1.3.6.1.2.1.2.2.1.18.55|65|0
1.3.6.1.2.1.2.2.1.18.56|65|0
1.3.6.1.2.1.2.2.1.18.57|65|0
1.3.6.1.2.1.2.2.1.18.58|65|0
1.3.6.1.2.1.2.2.1.18.63|65|0
1.3.6.1.2.1.2.2.1.18.64|65|0
1.3.6.1.2.1.2.2.1.18.69|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|0
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|38891
1.3.6.1.2.1.2.2.1.19.17|65|1798
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.26|65|0
1.3.6.1.2.1.2.2.1.19.27|65|0
1.3.6.1.2.1.2.2.1.19.29|65|0
1.3.6.1.2.1.2.2.1.19.30|65|0
1.3.6.1.2.1.2.2.1.19.31|65|0
1.3.6.1.2.1.2.2.1.19.32|65|0
1.3.6.1.2.1.2.2.1.19.37|65|0
1.3.6.1.2.1.2.2.1.19.38|65|0
1.3.6.1.2.1.2.2.1.19.39|65|0
1.3.6.1.2.1.2.2.1.19.40|65|0
1.3.6.1.2.1.2.2.1.19.41|65|0
1.3.6.1.2.1.2.2.1.19.46|65|0
1.3.6.1.2.1.2.2.1.19.47|65|0
1.3.6.1.2.1.2.2.1.19.48|65|0
1.3.6.1.2.1.2.2.1.19.49|65|0
1.3.6.1.2.1.2.2.1.19.54|65|0
1.3.6.1.2.1.2.2.1.19.55|65|0
1.3.6.1.2.1.2.2.1.19.56|65|0
1.3.6.1.2.1.2.2.1.19.57|65|0
1.3.6.1.2.1.2.2.1.19.58|65|0
1.3.6.1.2.1.2.2.1.19.63|65|0
1.3.6.1.2.1.2.2.1.19.64|65|0
1.3.6.1.2.1.2.2.1.19.69|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|38891
1.3.6.1.2.1.2.2.1.20.17|65|1798
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.26|65|0
1.3.6.1.2.1.2.2.1.20.27|65|23846
1.3.6.1.2.1.2.2.1.20.29|65|0
1.3.6.1.2.1.2.2.1.20.30|65|0
1.3.6.1.2.1.2.2.1.20.31|65|0
1.3.6.1.2.1.2.2.1.20.32|65|1798
1.3.6.1.2.1.2.2.1.20.37|65|0
1.3.6.1.2.1.2.2.1.20.38|65|0
1.3.6.1.2.1.2.2.1.20.39|65|0
1.3.6.1.2.1.2.2.1.20.40|65|0
1.3.6.1.2.1.2.2.1.20.41|65|0
1.3.6.1.2.1.2.2.1.20.46|65|0
1.3.6.1.2.1.2.2.1.20.47|65|0
1.3.6.1.2.1.2.2.1.20.48|65|0
1.3.6.1.2.1.2.2.1.20.49|65|0
1.3.6.1.2.1.2.2.1.20.54|65|0
1.3.6.1.2.1.2.2.1.20.55|65|0
1.3.6.1.2.1.2.2.1.20.56|65|0
1.3.6.1.2.1.2.2.1.20.57|65|0
1.3.6.1.2.1.2.2.1.20.58|65|15045
1.3.6.1.2.1.2.2.1.20.63|65|0
1.3.6.1.2.1.2.2.1.20.64|65|0
1.3.6.1.2.1.2.2.1.20.69|65|0
1.3.6.1.2.1.2.2.1.21.1|66|0
1.3.6.1.2.1.2.2.1.21.2|66|0
1.3.6.1.2.1.2.2.1.21.3|66|0
1.3.6.1.2.1.2.2.1.21.4|66|0
1.3.6.1.2.1.2.2.1.21.5|66|0
1.3.6.1.2.1.2.2.1.21.6|66|0
1.3.6.1.2.1.2.2.1.21.7|66|0
1.3.6.1.2.1.2.2.1.21.8|66|0
1.3.6.1.2.1.2.2.1.21.9|66|0
1.3.6.1.2.1.2.2.1.21.10|66|0
1.3.6.1.2.1.2.2.1.21.11|66|0
1.3.6.1.2.1.2.2.1.21.12|66|0
1.3.6.1.2.1.2.2.1.21.13|66|0
1.3.6.1.2.1.2.2.1.21.14|66|0
1.3.6.1.2.1.2.2.1.21.15|66|0
1.3.6.1.2.1.2.2.1.21.16|66|0
1.3.6.1.2.1.2.2.1.21.17|66|0
1.3.6.1.2.1.2.2.1.21.18|66|0
1.3.6.1.2.1.2.2.1.21.19|66|0
1.3.6.1.2.1.2.2.1.21.20|66|0
1.3.6.1.2.1.2.2.1.21.21|66|0
1.3.6.1.2.1.2.2.1.21.26|66|0
1.3.6.1.2.1.2.2.1.21.27|66|0
1.3.6.1.2.1.2.2.1.21.29|66|0
1.3.6.1.2.1.2.2.1.21.30|66|0
1.3.6.1.2.1.2.2.1.21.31|66|0
1.3.6.1.2.1.2.2.1.21.32|66|0
1.3.6.1.2.1.2.2.1.21.37|66|0
1.3.6.1.2.1.2.2.1.21.38|66|0
1.3.6.1.2.1.2.2.1.21.39|66|0
1.3.6.1.2.1.2.2.1.21.40|66|0
1.3.6.1.2.1.2.2.1.21.41|66|0
1.3.6.1.2.1.2.2.1.21.46|66|0
1.3.6.1.2.1.2.2.1.21.47|66|0
1.3.6.1.2.1.2.2.1.21.48|66|0
1.3.6.1.2.1.2.2.1.21.49|66|0
1.3.6.1.2.1.2.2.1.21.54|66|0
1.3.6.1.2.1.2.2.1.21.55|66|0
1.3.6.1.2.1.2.2.1.21.56|66|0
1.3.6.1.2.1.2.2.1.21.57|66|0
1.3.6.1.2.1.2.2.1.21.58|66|0
1.3.6.1.2.1.2.2.1.21.63|66|0
1.3.6.1.2.1.2.2.1.21.64|66|0
1.3.6.1.2.1.2.2.1.21.69|66|0
1.3.6.1.2.1.2.2.1.22.1|6|0.0
1.3.6.1.2.1.2.2.1.22.2|6|0.0
1.3.6.1.2.1.2.2.1.22.3|6|0.0
1.3.6.1.2.1.2.2.1.22.4|6|0.0
1.3.6.1.2.1.2.2.1.22.5|6|0.0
1.3.6.1.2.1.2.2.1.22.6|6|0.0
1.3.6.1.2.1.2.2.1.22.7|6|0.0
1.3.6.1.2.1.2.2.1.22.8|6|0.0
1.3.6.1.2.1.2.2.1.22.9|6|0.0
1.3.6.1.2.1.2.2.1.22.10|6|0.0
1.3.6.1.2.1.2.2.1.22.11|6|0.0
1.3.6.1.2.1.2.2.1.22.12|6|0.0
1.3.6.1.2.1.2.2.1.22.13|6|0.0
1.3.6.1.2.1.2.2.1.22.14|6|0.0
1.3.6.1.2.1.2.2.1.22.15|6|0.0
1.3.6.1.2.1.2.2.1.22.16|6|0.0
1.3.6.1.2.1.2.2.1.22.17|6|0.0
1.3.6.1.2.1.2.2.1.22.18|6|0.0
1.3.6.1.2.1.2.2.1.22.19|6|0.0
1.3.6.1.2.1.2.2.1.22.20|6|0.0
1.3.6.1.2.1.2.2.1.22.21|6|0.0
1.3.6.1.2.1.2.2.1.22.26|6|0.0
1.3.6.1.2.1.2.2.1.22.27|6|0.0
1.3.6.1.2.1.2.2.1.22.29|6|0.0
1.3.6.1.2.1.2.2.1.22.30|6|0.0
1.3.6.1.2.1.2.2.1.22.31|6|0.0
1.3.6.1.2.1.2.2.1.22.32|6|0.0
1.3.6.1.2.1.2.2.1.22.37|6|0.0
1.3.6.1.2.1.2.2.1.22.38|6|0.0
1.3.6.1.2.1.2.2.1.22.39|6|0.0
1.3.6.1.2.1.2.2.1.22.40|6|0.0
1.3.6.1.2.1.2.2.1.22.41|6|0.0
1.3.6.1.2.1.2.2.1.22.46|6|0.0
1.3.6.1.2.1.2.2.1.22.47|6|0.0
1.3.6.1.2.1.2.2.1.22.48|6|0.0
1.3.6.1.2.1.2.2.1.22.49|6|0.0
1.3.6.1.2.1.2.2.1.22.54|6|0.0
1.3.6.1.2.1.2.2.1.22.55|6|0.0
1.3.6.1.2.1.2.2.1.22.56|6|0.0
1.3.6.1.2.1.2.2.1.22.57|6|0.0
1.3.6.1.2.1.2.2.1.22.58|6|0.0
1.3.6.1.2.1.2.2.1.22.63|6|0.0
1.3.6.1.2.1.2.2.1.22.64|6|0.0
1.3.6.1.2.1.2.2.1.22.69|6|0.0
1.3.6.1.2.1.31.1.5.0|67|0
1.3.6.1.4.1.12356.120.1.1.0|4|FP831F-v7.0-build0127
1.3.6.1.4.1.12356.120.1.2.0|4|FP831FTF00000000
1.3.6.1.4.1.12356.120.4.1.1.10.0|2|12
1.3.6.1.4.1.12356.120.4.1.1.10.1|2|10
1.3.6.1.4.1.12356.120.4.1.1.10.2|2|31
1.3.6.1.4.1.12356.120.4.1.1.14.0|2|1
1.3.6.1.4.1.12356.120.4.1.1.14.1|2|132
1.3.6.1.4.1.12356.120.4.1.1.14.2|2|0
1.3.6.1.4.1.12356.120.7.1.1.4.0.1|4|GUEST
1.3.6.1.4.1.12356.120.7.1.1.4.0.2|4|IOT
1.3.6.1.4.1.12356.120.7.1.1.4.1.0|4|CORP
1.3.6.1.4.1.12356.120.7.1.1.4.1.1|4|GUEST
1.3.6.1.4.1.12356.120.7.1.1.4.1.2|4|IOT
1.3.6.1.4.1.12356.120.7.1.1.45.0.1|2|3
1.3.6.1.4.1.12356.120.7.1.1.45.0.2|2|0
1.3.6.1.4.1.12356.120.7.1.1.45.1.0|2|16
1.3.6.1.4.1.12356.120.7.1.1.45.1.1|2|29
1.3.6.1.4.1.12356.120.7.1.1.45.1.2|2|0