Add support for Trellix NSP devices (#14964)

* Add support for Trellix NSP devices

- Add discovery for mlos NSP devices
- Monitor port statistics from non standard MIBs
- Add Trellix MIBs
- Add test data

* Fix StyleCI findings

* Rename MIB files to match MIB names, remove unused MIBs

* regenerate mlos-nsp_ns9500.json to account for changes from PR#14963
This commit is contained in:
mtentilucci 2023-05-16 18:25:29 -04:00 committed by GitHub
parent b19c783f04
commit e55c4e9e1e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
12 changed files with 18472 additions and 0 deletions

View File

@ -0,0 +1,39 @@
mib: TRELLIX-SENSOR-PERF-MIB:TRELLIX-SENSOR-CONF-MIB
modules:
os:
hardware: TRELLIX-SENSOR-CONF-MIB::ivSysModel.0
serial: TRELLIX-SENSOR-CONF-MIB::ivSysSerialNumber.0
mempools:
data:
-
percent_used: TRELLIX-SENSOR-PERF-MIB::sysMemUtilisation
processors:
data:
-
oid: 'sensorAvgLoad'
num_oid: '.1.3.6.1.4.1.8962.2.1.3.1.1.5.1.1.{{ $index }}'
sensors:
count:
data:
-
oid: 'sensorPerfTable'
value: 'totalAlertsSentCount'
num_oid: '.1.3.6.1.4.1.8962.2.1.3.1.1.5.1.7.{{ $index }}'
descr: 'Alerts sent to ISM'
index: 'totalAlertsSentCount'
-
oid: 'malwareEngineStatsTable'
value: 'totalMalwareFilesProcessed'
num_oid: '.1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.3.{{ $index }}'
group: 'Malware Engine File Counters'
descr: '{{ $malwareStatsEngineName }}'
index: '{{ $malwareStatsEngineName }}'
state:
data:
-
oid: 'l2ModeStatus'
num_oid: '.1.3.6.1.4.1.8962.2.1.2.1.18.2.0'
descr: 'Sensor Mode'
states:
- { value: 1, generic: 0, graph: 0, descr: 'Layer 2 Mode' }
- { value: 2, generic: 0, graph: 0, descr: 'IPS Mode' }

View File

@ -0,0 +1,17 @@
os: mlos-nsp
group: trellix
text: 'McAfee Linux OS - NSP'
type: appliance
icon: trellix
mib_dir: trellix
over:
- { graph: device_bits, text: 'Device Traffic' }
- { graph: device_processor, text: 'CPU Usage' }
- { graph: device_mempool, text: 'Memory Usage' }
discovery:
-
sysObjectID: .1.3.6.1.4.1.8072.3.2.10
snmpget:
oid: .1.3.6.1.4.1.8962.2.1.2.1.1.6.0
op: contains
value: NETWORK-SECURITY

View File

@ -22,6 +22,11 @@ $port_stats = snmpwalk_cache_oid($device, 'ifAlias', $port_stats, 'IF-MIB');
$port_stats = snmpwalk_cache_oid($device, 'ifType', $port_stats, 'IF-MIB', null, $typeSnmpFlags);
$port_stats = snmpwalk_cache_oid($device, 'ifOperStatus', $port_stats, 'IF-MIB', null, $operStatusSnmpFlags);
// Get Trellix NSP ports
if ($device['os'] == 'mlos-nsp') {
require base_path('includes/discovery/ports/mlos-nsp.inc.php');
}
//Get UFiber OLT ports
if ($device['os'] == 'edgeosolt') {
require base_path('includes/discovery/ports/edgeosolt.inc.php');

View File

@ -0,0 +1,50 @@
<?php
// The Trellix NSP does not use the IF-MIB
// port information (speed, duplex, operational status, etc...) is kept in TRELLIX-SENSOR-CONF-MIB::intfPortTable
// port statistics (throughput, number of packets, etc...) is kept in TRELLIX-SENSOR-PERF-MIB::intfPortIfTable
// intfPortTable and intfPortIfTable are indexed on slot and port
$mlos_stats = snmpwalk_group($device, 'intfPortTable', 'TRELLIX-SENSOR-CONF-MIB', 2);
$mlos_stats = snmpwalk_group($device, 'intfPortIf64Table', 'TRELLIX-SENSOR-PERF-MIB', 2, $mlos_stats);
$required = [
'ifInOctets' => 'intfPortTotalBytesRecv64',
'ifOutOctets' => 'intfPortTotalBytesSent64',
'ifInUcastPkts' => 'intfPortTotalUnicastPktsRecv64',
'ifOutUcastPkts' => 'intfPortTotalUnicastPktsSent64',
'ifInErrors' => 'intfPortTotalCRCErrorsRecv64',
'ifOutErrors' => 'intfPortTotalCRCErrorsSent64',
];
// port speed, as described in intfPortSpeed
$trellixPortSpeeds = [1 => '10000000',
2 => '100000000',
3 => '1000000000',
4 => '10000000000',
5 => '40000000000'];
$mlos_ports = [];
// ports are indexed by slot then port, loop over the snmpwalk results and gather the information we want for each port
foreach ($mlos_stats as $slotIndex => $slot) {
foreach ($slot as $portIndex => $port) {
$mlos_port = [];
foreach ($required as $ifEntry => $IfxStat) {
$mlos_port[$ifEntry] = $mlos_stats[$slotIndex][$portIndex][$IfxStat];
}
$mlos_port['ifName'] = $port['intfPortIfDescr'];
$mlos_port['ifDescr'] = $port['intfPortIfDescr'];
$mlos_port['ifDuplex'] = ($mlos_stats[$slotIndex][$portIndex]['intfPortEnableFullDuplex'] == 1 ? 'fullDuplex' : 'halfDuplex');
if (array_key_exists($mlos_stats[$slotIndex][$portIndex]['intfPortSpeed'], $trellixPortSpeeds)) {
$mlos_port['ifSpeed'] = $trellixPortSpeeds[$mlos_stats[$slotIndex][$portIndex]['intfPortSpeed']];
}
$mlos_port['ifOperStatus'] = ($mlos_stats[$slotIndex][$portIndex]['intfPortIfOperStatus'] == 1 ? 'up' : 'down');
$mlos_port['ifType'] = 'ethernetCsmacd';
$mlos_port['ifAdminStatus'] = ($mlos_stats[$slotIndex][$portIndex]['intfPortIfAdminStatus'] == 1 ? 'up' : 'down');
array_push($mlos_ports, $mlos_port);
}
}
$port_stats = array_replace_recursive($mlos_ports, $port_stats);
unset($mlos_ports);

View File

@ -0,0 +1,50 @@
<?php
// The Trellix NSP does not use the IF-MIB
// port information (speed, duplex, operational status, etc...) is kept in TRELLIX-SENSOR-CONF-MIB::intfPortTable
// port statistics (throughput, number of packets, etc...) is kept in TRELLIX-SENSOR-PERF-MIB::intfPortIfTable
// intfPortTable and intfPortIfTable are indexed on slot and port
$mlos_stats = snmpwalk_group($device, 'intfPortTable', 'TRELLIX-SENSOR-CONF-MIB', 2);
$mlos_stats = snmpwalk_group($device, 'intfPortIf64Table', 'TRELLIX-SENSOR-PERF-MIB', 2, $mlos_stats);
$required = [
'ifInOctets' => 'intfPortTotalBytesRecv64',
'ifOutOctets' => 'intfPortTotalBytesSent64',
'ifInUcastPkts' => 'intfPortTotalUnicastPktsRecv64',
'ifOutUcastPkts' => 'intfPortTotalUnicastPktsSent64',
'ifInErrors' => 'intfPortTotalCRCErrorsRecv64',
'ifOutErrors' => 'intfPortTotalCRCErrorsSent64',
];
// port speed, as described in intfPortSpeed
$trellixPortSpeeds = [1 => '10000000',
2 => '100000000',
3 => '1000000000',
4 => '10000000000',
5 => '40000000000'];
$mlos_ports = [];
// ports are indexed by slot then port, loop over the snmpwalk results and gather the information we want for each port
foreach ($mlos_stats as $slotIndex => $slot) {
foreach ($slot as $portIndex => $port) {
$mlos_port = [];
foreach ($required as $ifEntry => $IfxStat) {
$mlos_port[$ifEntry] = $mlos_stats[$slotIndex][$portIndex][$IfxStat];
}
$mlos_port['ifName'] = $port['intfPortIfDescr'];
$mlos_port['ifDescr'] = $port['intfPortIfDescr'];
$mlos_port['ifDuplex'] = ($mlos_stats[$slotIndex][$portIndex]['intfPortEnableFullDuplex'] == 1 ? 'fullDuplex' : 'halfDuplex');
if (array_key_exists($mlos_stats[$slotIndex][$portIndex]['intfPortSpeed'], $trellixPortSpeeds)) {
$mlos_port['ifSpeed'] = $trellixPortSpeeds[$mlos_stats[$slotIndex][$portIndex]['intfPortSpeed']];
}
$mlos_port['ifOperStatus'] = ($mlos_stats[$slotIndex][$portIndex]['intfPortIfOperStatus'] == 1 ? 'up' : 'down');
$mlos_port['ifType'] = 'ethernetCsmacd';
$mlos_port['ifAdminStatus'] = ($mlos_stats[$slotIndex][$portIndex]['intfPortIfAdminStatus'] == 1 ? 'up' : 'down');
array_push($mlos_ports, $mlos_port);
}
}
$port_stats = array_replace_recursive($mlos_ports, $port_stats);
unset($mlos_ports);

View File

@ -0,0 +1,67 @@
-- *****************************************************************
-- TRELLIX CONFIDENTIAL
-- TRELLIX-SMI:
-- Trellix Enterprise Structure of Management Information
--
-- Copyright (c) 2022 MUSARUBRA US, LLC
-- All rights reserved.
--
-- *****************************************************************
TRELLIX-INTRUVERT-SMI DEFINITIONS ::= BEGIN
IMPORTS
OBJECT-IDENTITY, MODULE-IDENTITY, enterprises
FROM SNMPv2-SMI;
trellix-intruvert MODULE-IDENTITY
LAST-UPDATED "200707090000Z"
ORGANIZATION
"MUSARUBRA US LLC"
CONTACT-INFO
"Trellix Customer Service Department
Postal: 6220 American Center Drive
San Jose CA 95002-2563
Tel: +1 800 338 8754
E-mail: support@mcafee.com"
DESCRIPTION
"The Structure of Management Information for the Trellix-Intruvert enterprise.
Initial version of this MIB module."
::= { enterprises 8962 }
ivConventions OBJECT-IDENTITY
STATUS current
DESCRIPTION
""
::= { trellix-intruvert 1 }
-- assigned by IANA
ivProducts OBJECT-IDENTITY
STATUS current
DESCRIPTION
" "
::= { trellix-intruvert 2 }
ivInventory OBJECT-IDENTITY
STATUS current
DESCRIPTION
""
::= { trellix-intruvert 3 }
matdProducts OBJECT-IDENTITY
STATUS current
DESCRIPTION
""
::= { trellix-intruvert 4 }
END

View File

@ -0,0 +1,406 @@
-- *****************************************************************
-- TRELLIX CONFIDENTIAL
-- TRELLIX-INTRUVERT-TC:
-- Trellix (Textual Conventions)
--
-- Copyright (c) 2022 MUSARUBRA US, LLC
-- All rights reserved.
--
-- *****************************************************************
TRELLIX-INTRUVERT-TC DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, Integer32
FROM SNMPv2-SMI
TEXTUAL-CONVENTION
FROM SNMPv2-TC
ivConventions
FROM TRELLIX-INTRUVERT-SMI;
ivTextualConventions MODULE-IDENTITY
LAST-UPDATED "200707090000Z"
ORGANIZATION
"MUSARUBRA US LLC"
CONTACT-INFO
"Trellix Customer Service Department
Postal: 6220 American Center Drive
San Jose CA 95002-2563
Tel: +1 800 338 8754
E-mail: support@mcafee.com"
DESCRIPTION
"This module defines textual conventions used throughout the
Trellix enterprise MIBs."
::= { ivConventions 1 }
TrellixEventCategory ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
""
SYNTAX INTEGER {
other (0),
equipment (1),
commnunication (2),
qos (3),
environment (4),
application (5)
}
TrellixEventSeverity ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
""
SYNTAX INTEGER {
unknown (0),
inform (1),
clear (2),
warning (3),
error (4),
critical (5)
}
TrellixFEType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Specify speed for Fast Ethernet ports.
example: 10 or 100 Mbps"
SYNTAX INTEGER {
other (0),
ten-Mbps (1),
hundred-Mbps (2),
auto-negotiate (3)
}
TrellixGEType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Specify speed for Gigabit Ethernet ports."
SYNTAX INTEGER {
other (0),
one-gbps (2),
auto-negotiate (3)
}
TrellixIDSAction ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"These specify IDS-specific actions on the management and sensor/analysis card.
"
SYNTAX INTEGER {
other (0),
enable (1),
disable (2),
reset (3),
sigupdate (4),
swupdate (5),
sensordown (6),
certupdate (7),
hitlessreboot (8)
}
TrellixIDSActionResult ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Bitmap-encoded integer that indicates detailed results of an action"
SYNTAX Integer32 (0..255)
TrellixIDSActionStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Status reflecting action outcome."
SYNTAX INTEGER {
failed (0),
succeeded (1),
sigupdated (2),
enabled (3),
disabled (4)
}
TrellixIDSCardType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Card type aplicable to Trellix IPS.
Current support limted to
- Management card
- Sensor Analysis card"
SYNTAX INTEGER {
other (0),
mgmt (1),
sensor (2)
}
TrellixIDSOperatingMode ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Operating mode for Trellix IPS Sensor
inline-fail-open-passive: read and forward packets to destination. This
will be fail-open (passive kit)
monitor-dual-intf: monitor two interfaces using Tap
monitor-single-intf: monitor span/hub
inline-fail-close: Uses span dongle cables for the 10/100
uses external bypass switch for gigabit
inline-fail-open-active:read and forward packets to destination. This
will be fail-open. This is available on M-series only.
"
SYNTAX INTEGER {
inline-fail-open-passive (1),
monitor-dual-intf (2),
monitor-single-intf (3),
inline-fail-close (4),
inline-fail-open-active (5)
}
TrellixIDSPortType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Indicates type of port.
gigabitEthernet supports only 1000Mbps, fastEthernet supports
10/100 Mbps, copperGigabitEthernet supports 10/100/1000 Mbps and
tenGigabitEthernet supports only 10 Gbps."
SYNTAX INTEGER {
other (0),
gigabitEthernet (1),
fastEthernet (2),
copperGigabitEthernet (3),
tenGigabitEthernet (4),
fortyGigabitEthernet (5), -- support in R-series only
vnic(6) -- support in V-series only
}
TrellixIDSResponseMode ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
""
SYNTAX INTEGER {
interace-port(0),
response-port (1),
management-port (2)
}
TrellixProductType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
""
SYNTAX INTEGER {
ids (0)
}
TrellixTFTPAction ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
""
SYNTAX INTEGER {
other (0),
download-image (1),
download-signature (2),
upload-dos (3),
upload-trace (4),
download-dos (5),
abort-transfer (6),
download-sslcert (7),
download-image-and-signature (8),
download-mpecert (9),
download-sgap-ssl-cert (10),
upload-sgap-ssl-csr (11),
upload-ibac-ad-file (12),
download-ibac-ad-file (13),
upload-sw-tlv-file (14),
download-PacketCaptureFilter-file(15),
upload-PacketCaptureFilter-file(16),
download-geolocation-db-file (17),
upload-PacketCapturePCAP-file(18),
download-usrid-acl-file(19),
download-bot-dat-file(20),
download-ntba-ssl-cert-file(21),
upload-dev-prof-file(22),
-- values 23 and 24 not used as NSM has reserved them for NTBA
download-matd-ssl-cert-file(25),
download-ffp-bulk-update(28),
download-zcenter-ssl-cert(33),
download-gti-pc-ssl-cert(34),
upload-suricata-failed-rules-file(35),
upload-ca-sensor-csr (36),
download-ca-sensor-cert (37),
download-syslog-ssl-cert (38)
}
TrellixTFTPFailedResult ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This object defines reasons for TFTP failure.
Applicable only when the corresponding <TrellixTFTPStatus> is set to 'failed'."
SYNTAX INTEGER {
other (0),
invalidFileName (1),
invalidFileType (2),
cannotReachServer (3),
noResponseFromServer (4),
insufficientDiskSpace (5),
decryptionError (6),
accessViolation (7),
fileAlreadyExists (8),
channelOutOfSync (9),
sensorNotInitialized (10),
realtimeUpdateError (11),
sigfile1OpenError (12),
sigfile1StatError (13),
sigfile1MemoryError (14),
sigfile1ReadError (15),
sigfile1NullError (16),
sigfile1MD5Error (17),
sigfile1InsufficientSpaceForTotalRules (18),
sigfile1ConvertError (19),
sigfile1SplitError (20),
sigfile2OpenError (21),
sigfile2StatError (22),
sigfile2MemoryError (23),
sigfile2ReadError (24),
sigfile2NullError (25),
sigfile2MD5Error (26),
sigfile2InsufficientSpaceForTotalRules (27),
sigfile2ConvertError (28),
sigfile2SplitError (29),
initIDConvertTablesError (30),
sigfileMarkError (31),
sigfileUndoMarkError (32),
compareSigfilesError (33),
updateBaseSigfileError (34),
sensorRebootRequired (35),
fileParseError (36),
sigfile1FormatVersionError (37),
sigfile2FormatVersionError (38),
fileDoesNotExists (39),
outOfMemoryError (40),
transferAborted (41),
internalApplyError (42),
incrSigfileUnspportedError (53),
incrSigfileFormatError (61),
incrSigfileHasSigsetMismatchError (62),
incrSigfileMergeError (63)
}
TrellixTFTPFileType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
""
SYNTAX INTEGER {
other (0),
image (1),
signature (2),
trace (3),
dos (4),
configuration (5),
sslcert (6),
image-and-signature (7),
mpecert (8)
}
TrellixTFTPInProgressResult ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This object defines user feedback during TFTP progress.
Applicable only when corresponding <TrellixTFTPStatus> is set to 'inProgress'.
Indicates percentage of TFTP up/download during the inProgress mode "
SYNTAX Integer32 (0..100)
TrellixTFTPStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Indicates status of corresponding TFTP action <TrellixTFTPAction> request."
SYNTAX INTEGER {
other (0),
failed (1),
inProgress (2),
succeeded (3),
dwnldFailed (11),
applyFailed (12),
dwnlding (21),
dwnldingComplete (22),
applying (23),
applyingComplete (24)
}
TrellixCUGEType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Specify speed for copper gigabit ethernet ports.
example: 10 or 100 or 1000Mbps or auto"
SYNTAX INTEGER {
other (0),
ten-Mbps (1),
hundred-Mbps (2),
auto-negotiate (3),
one-gbps (4)
}
TrellixPortSpeed ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Specify speed for all types of ports.
example: 10 or 100 or 1000Mbps or auto or 10Gbps"
SYNTAX INTEGER {
other (0),
fixed-ten-Mbps (1),
fixed-hundred-Mbps (2),
auto-negotiate-down-hundred-Mbps(3),
fixed-one-Gbps(4),
fixed-ten-Gbps(5), -- support in M-series only
auto-negotiate-ten-Mbps (6),
auto-negotiate-hundred-Mbps (7),
auto-negotiate-one-Gbps(8),
auto-negotiate-ten-Gbps(9), -- support in M-series only
auto-negotiate-down-one-Gbps(10),
fixed-forty-Gbps(11) -- support in R-series only
}
TrellixPluggableModuleType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Types of supported pluggable modules."
SYNTAX INTEGER {
other (0),
pluggable-module-qsfp (1), -- two 40 gig QSFP ports
pluggable-module-sfp-plus (2), -- eight SFP+ ports
pluggable-module-qsfp-4 (3), -- four port QSFP
pluggable-module-sfp-plus-12 (4), -- 12 port SFP+
pluggable-module-rj45-6 (5), -- 6 port RJ45
pluggable-module-sfp-plus-pfo-4-sm (6), -- 4 port SFP+ BPFO single mode
pluggable-module-sfp-plus-pfo-4-mm-50um (7), -- 4 port SFP+ BPFO multi mode 50um
pluggable-module-sfp-plus-pfo-4-mm-62-5um (8), -- 4 port SFP+ BPFO multi mode 62.5um
fixed-ports-sfp-12 (9), -- twelve SFP ports
pluggable-module-rj45-4 (10) -- 4 port RJ45
}
TrellixPortLinearIndex ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This MIB object type indicates the Linear Index of the monitoring port. This index is
generated by the sensor appliance using the pair of slot index and the port index values.
The other MIB tables would directly use this linear index, whereever applicable."
SYNTAX Integer32 (0..1024)
END

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,205 @@
-- *****************************************************************
-- TRELLIX CONFIDENTIAL
-- TRELLIX-SENSOR-SMI:
-- Trellix Sensor Structure of Management Information
--
-- Copyright (c) 2022 MUSARUBRA US, LLC
-- All rights reserved.
--
-- *****************************************************************
TRELLIX-SENSOR-SMI DEFINITIONS ::= BEGIN
IMPORTS
OBJECT-TYPE, MODULE-IDENTITY, Integer32
FROM SNMPv2-SMI
ivProducts
FROM TRELLIX-INTRUVERT-SMI;
ivSensor MODULE-IDENTITY
LAST-UPDATED "200707090000Z"
ORGANIZATION
"MUSARUBRA US LLC"
CONTACT-INFO
"Trellix Customer Service Department
Postal: 6220 American Center Drive
San Jose CA 95002-2563
Tel: +1 800 338 8754
E-mail: support@mcafee.com"
DESCRIPTION
"The Structure of Management Information for the Trellix enterprise."
REVISION "200707090000Z"
DESCRIPTION
"Initial version of this MIB module."
::= { ivProducts 1 }
--This group is defined to provide a common place fo the MIB objects that would be used as
--index keys into SNMP tables defined within the Sensor Configuration, Performance &Trap MIBs
--
ivIndex OBJECT IDENTIFIER ::= { ivSensor 1 }
slotIndex OBJECT-TYPE
SYNTAX Integer32 (1..10)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Identifies the position (starting from 1) of a slot in the chassis."
::= { ivIndex 1 }
processorIndex OBJECT-TYPE
SYNTAX Integer32 (1..8)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Processor CPU core index (starting from 1) within a
sensor card."
::= { ivIndex 2 }
npIndex OBJECT-TYPE
SYNTAX Integer32 (1..2)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"NP CPU core index (starting from 1) within a sensor card."
::= { ivIndex 3 }
mgmtPortIndex OBJECT-TYPE
SYNTAX Integer32 (1)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Management port index (starting from 1) on a Sensor management card.
Must not exceed a maximum count as specified by the mgmtPortMaxCount object in
the vendor specified MIB specified for this mgmt card."
::= { ivIndex 4 }
intfPortIndex OBJECT-TYPE
SYNTAX Integer32 (1..32)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Interface port index (starting from 1) on a sensor analysis card.
These ports are also referred to as front-end ports."
::= { ivIndex 5 }
respPortIndex OBJECT-TYPE
SYNTAX Integer32 (1..33)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Response port index (starting from 1) on a sensor-analysis card."
::= { ivIndex 6 }
bundleIndex OBJECT-TYPE
SYNTAX Integer32 (0..10)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Trellix management system defined bundle number each sensor card belongs to.
Valid:1onwards
Note: Use cases may use the value '0' to interpret that the notion of 'bundle' is to be ignored."
::= { ivIndex 7 }
qedIndex OBJECT-TYPE
SYNTAX Integer32 (1)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"QED processor index (starting from 1) on a Sensor management card."
::= { ivIndex 8 }
sibyteIndex OBJECT-TYPE
SYNTAX Integer32 (1..4)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"SiByte processor index (starting from 1) on a Sensor management card."
::= { ivIndex 9 }
rateLimitQueueIndex OBJECT-TYPE
SYNTAX Integer32 (1..8)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Ratelimit Queue index (starting from 1). For FE ports the index value is between (1 to 6).
For GE ports the index value is between (1 to 8)"
::= { ivIndex 10 }
intfPhysicalPortIndex OBJECT-TYPE
SYNTAX Integer32 (1..32)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Interface physical port index (starting from 1) on a sensor analysis card.
These are applicable to the Load Balancer Solution only."
::= { ivIndex 11 }
ntpServerIndex OBJECT-TYPE
SYNTAX Integer32 (1..2)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Ntp Server index (starting from 1). Ntp Server Index value can be either 1 or 2."
::= { ivIndex 12 }
intfVirtualSlotIndex OBJECT-TYPE
SYNTAX Integer32 (1..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Identifies the position (starting from 1) of a slot in the virtual stack."
::= { ivIndex 13 }
intfVirtualPortIndex OBJECT-TYPE
SYNTAX Integer32 (1..1024)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Interface virtual port index (starting from 1) on a virtual stack analysis card.
These are applicable to the Stack Solution only."
::= { ivIndex 14 }
sslProbeIpv4Index OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" "
::= { ivIndex 15 }
processorNumIndex OBJECT-TYPE
SYNTAX Integer32 (1..1024)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" "
::= { ivIndex 16 }
sslProbeIpv6Index OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" "
::= { ivIndex 17 }
ivSensorConfiguration OBJECT IDENTIFIER ::= { ivSensor 2 }
ivSensorPerformance OBJECT IDENTIFIER ::= { ivSensor 3 }
ivSensorTraps OBJECT IDENTIFIER ::= { ivSensor 4 }
ivFirewallConfiguration OBJECT IDENTIFIER ::= { ivSensor 5 }
ivFirewallPerformance OBJECT IDENTIFIER ::= { ivSensor 6 }
END

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,785 @@
1.3.6.1.2.1.1.1.0|4|Linux HOSTNAME 5.4.0-105-generic #1 SMP Fri Jul 8 15:13:18 UTC 2022 x86_64
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.8072.3.2.10
1.3.6.1.2.1.1.3.0|67|68250386
1.3.6.1.2.1.1.4.0|4|<private>
1.3.6.1.2.1.1.5.0|4|<private>
1.3.6.1.2.1.1.6.0|4|<private>
1.3.6.1.2.1.11.1.0|65|232029
1.3.6.1.2.1.11.2.0|65|153052
1.3.6.1.2.1.11.3.0|65|0
1.3.6.1.2.1.11.4.0|65|0
1.3.6.1.2.1.11.5.0|65|0
1.3.6.1.2.1.11.6.0|65|0
1.3.6.1.2.1.11.8.0|65|0
1.3.6.1.2.1.11.9.0|65|0
1.3.6.1.2.1.11.10.0|65|0
1.3.6.1.2.1.11.11.0|65|0
1.3.6.1.2.1.11.12.0|65|0
1.3.6.1.2.1.11.13.0|65|670277
1.3.6.1.2.1.11.14.0|65|0
1.3.6.1.2.1.11.15.0|65|48344
1.3.6.1.2.1.11.16.0|65|80389
1.3.6.1.2.1.11.17.0|65|39
1.3.6.1.2.1.11.18.0|65|0
1.3.6.1.2.1.11.19.0|65|0
1.3.6.1.2.1.11.20.0|65|0
1.3.6.1.2.1.11.21.0|65|0
1.3.6.1.2.1.11.22.0|65|0
1.3.6.1.2.1.11.24.0|65|0
1.3.6.1.2.1.11.25.0|65|0
1.3.6.1.2.1.11.26.0|65|0
1.3.6.1.2.1.11.27.0|65|0
1.3.6.1.2.1.11.28.0|65|153075
1.3.6.1.2.1.11.29.0|65|0
1.3.6.1.2.1.11.31.0|65|0
1.3.6.1.2.1.11.32.0|65|0
1.3.6.1.4.1.8962.2.1.2.1.1.1.0|4|HOSTNAME
1.3.6.1.4.1.8962.2.1.2.1.1.4.0|4|IPS-NS9500
1.3.6.1.4.1.8962.2.1.2.1.1.5.0|4|A1234567891
1.3.6.1.4.1.8962.2.1.2.1.1.6.0|4|TRELLIX-NETWORK-SECURITY-PLATFORM
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.1.2.1|4|G0/1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.1.2.2|4|G0/2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.1.3.1|4|G1/1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.1.3.2|4|G1/2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.1.3.3|4|G1/3
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.1.3.4|4|G1/4
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.1.3.5|4|G1/5
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.1.3.6|4|G1/6
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.1.3.7|4|G1/7
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.1.3.8|4|G1/8
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.1.5.1|4|G3/1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.1.5.2|4|G3/2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.1.5.3|4|G3/3
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.1.5.4|4|G3/4
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.2.2.1|2|7
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.2.2.2|2|7
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.2.3.1|2|4
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.2.3.2|2|4
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.2.3.3|2|4
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.2.3.4|2|4
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.2.3.5|2|4
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.2.3.6|2|4
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.2.3.7|2|4
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.2.3.8|2|4
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.2.5.1|2|4
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.2.5.2|2|4
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.2.5.3|2|4
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.2.5.4|2|4
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.3.2.1|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.3.2.2|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.3.3.1|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.3.3.2|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.3.3.3|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.3.3.4|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.3.3.5|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.3.3.6|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.3.3.7|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.3.3.8|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.3.5.1|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.3.5.2|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.3.5.3|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.3.5.4|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.4.2.1|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.4.2.2|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.4.3.1|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.4.3.2|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.4.3.3|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.4.3.4|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.4.3.5|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.4.3.6|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.4.3.7|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.4.3.8|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.4.5.1|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.4.5.2|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.4.5.3|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.4.5.4|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.5.2.1|2|4
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.5.2.2|2|4
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.5.3.1|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.5.3.2|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.5.3.3|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.5.3.4|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.5.3.5|2|4
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.5.3.6|2|4
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.5.3.7|2|4
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.5.3.8|2|4
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.5.5.1|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.5.5.2|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.5.5.3|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.5.5.4|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.6.2.1|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.6.2.2|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.6.3.1|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.6.3.2|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.6.3.3|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.6.3.4|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.6.3.5|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.6.3.6|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.6.3.7|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.6.3.8|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.6.5.1|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.6.5.2|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.6.5.3|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.6.5.4|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.7.2.1|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.7.2.2|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.7.3.1|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.7.3.2|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.7.3.3|2|4
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.7.3.4|2|3
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.7.3.5|2|6
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.7.3.6|2|5
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.7.3.7|2|8
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.7.3.8|2|7
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.7.5.1|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.7.5.2|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.7.5.3|2|4
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.7.5.4|2|3
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.8.2.1|2|6
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.8.2.2|2|6
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.8.3.1|2|4
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.8.3.2|2|4
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.8.3.3|2|4
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.8.3.4|2|4
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.8.3.5|2|4
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.8.3.6|2|4
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.8.3.7|2|4
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.8.3.8|2|4
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.8.5.1|2|4
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.8.5.2|2|4
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.8.5.3|2|4
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.8.5.4|2|4
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.9.2.1|2|12
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.9.2.2|2|12
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.9.3.1|2|5
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.9.3.2|2|5
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.9.3.3|2|5
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.9.3.4|2|5
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.9.3.5|2|5
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.9.3.6|2|5
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.9.3.7|2|5
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.9.3.8|2|5
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.9.5.1|2|9
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.9.5.2|2|9
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.9.5.3|2|9
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.9.5.4|2|9
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.10.2.1|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.10.2.2|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.10.3.1|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.10.3.2|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.10.3.3|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.10.3.4|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.10.3.5|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.10.3.6|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.10.3.7|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.10.3.8|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.10.5.1|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.10.5.2|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.10.5.3|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.10.5.4|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.11.2.1|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.11.2.2|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.11.3.1|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.11.3.2|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.11.3.3|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.11.3.4|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.11.3.5|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.11.3.6|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.11.3.7|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.11.3.8|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.11.5.1|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.11.5.2|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.11.5.3|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.11.5.4|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.13.2.1|2|3
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.13.2.2|2|3
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.13.3.1|2|3
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.13.3.2|2|3
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.13.3.3|2|3
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.13.3.4|2|3
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.13.3.5|2|3
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.13.3.6|2|3
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.13.3.7|2|3
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.13.3.8|2|3
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.13.5.1|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.13.5.2|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.13.5.3|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.13.5.4|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.14.2.1|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.14.2.2|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.14.3.1|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.14.3.2|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.14.3.3|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.14.3.4|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.14.3.5|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.14.3.6|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.14.3.7|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.14.3.8|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.14.5.1|2|3
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.14.5.2|2|3
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.14.5.3|2|3
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.14.5.4|2|3
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.15.2.1|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.15.2.2|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.15.3.1|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.15.3.2|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.15.3.3|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.15.3.4|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.15.3.5|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.15.3.6|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.15.3.7|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.15.3.8|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.15.5.1|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.15.5.2|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.15.5.3|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.15.5.4|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.22.2.1|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.22.2.2|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.22.3.1|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.22.3.2|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.22.3.3|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.22.3.4|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.22.3.5|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.22.3.6|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.22.3.7|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.22.3.8|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.22.5.1|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.22.5.2|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.22.5.3|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.22.5.4|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.23.2.1|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.23.2.2|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.23.3.1|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.23.3.2|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.23.3.3|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.23.3.4|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.23.3.5|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.23.3.6|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.23.3.7|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.23.3.8|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.23.5.1|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.23.5.2|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.23.5.3|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.23.5.4|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.24.2.1|2|10
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.24.2.2|2|10
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.24.3.1|2|6
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.24.3.2|2|6
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.24.3.3|2|6
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.24.3.4|2|6
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.24.3.5|2|6
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.24.3.6|2|6
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.24.3.7|2|6
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.24.3.8|2|6
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.24.5.1|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.24.5.2|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.24.5.3|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.24.5.4|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.25.2.1|2|0
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.25.2.2|2|0
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.25.3.1|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.25.3.2|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.25.3.3|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.25.3.4|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.25.3.5|2|0
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.25.3.6|2|0
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.25.3.7|2|0
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.25.3.8|2|0
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.25.5.1|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.25.5.2|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.25.5.3|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.25.5.4|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.26.2.1|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.26.2.2|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.26.3.1|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.26.3.2|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.26.3.3|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.26.3.4|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.26.3.5|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.26.3.6|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.26.3.7|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.26.3.8|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.26.5.1|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.26.5.2|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.26.5.3|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.26.5.4|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.27.2.1|4|
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.27.2.2|4|
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.27.3.1|4|
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.27.3.2|4|
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.27.3.3|4|
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.27.3.4|4|
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.27.3.5|4|
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.27.3.6|4|
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.27.3.7|4|
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.27.3.8|4|
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.27.5.1|4|
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.27.5.2|4|
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.27.5.3|4|
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.27.5.4|4|
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.31.2.1|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.31.2.2|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.31.3.1|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.31.3.2|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.31.3.3|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.31.3.4|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.31.3.5|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.31.3.6|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.31.3.7|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.31.3.8|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.31.5.1|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.31.5.2|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.31.5.3|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.31.5.4|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.33.2.1|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.33.2.2|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.33.3.1|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.33.3.2|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.33.3.3|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.33.3.4|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.33.3.5|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.33.3.6|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.33.3.7|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.33.3.8|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.33.5.1|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.33.5.2|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.33.5.3|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.33.5.4|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.35.2.1|2|1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.35.2.2|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.35.3.1|2|3
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.35.3.2|2|4
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.35.3.3|2|5
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.35.3.4|2|6
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.35.3.5|2|7
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.35.3.6|2|8
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.35.3.7|2|9
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.35.3.8|2|10
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.35.5.1|2|27
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.35.5.2|2|28
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.35.5.3|2|29
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.35.5.4|2|30
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.36.2.1|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.36.2.2|2|2
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.36.3.1|2|-1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.36.3.2|2|-1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.36.3.3|2|-1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.36.3.4|2|-1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.36.3.5|2|-1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.36.3.6|2|-1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.36.3.7|2|-1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.36.3.8|2|-1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.36.5.1|2|-1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.36.5.2|2|-1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.36.5.3|2|-1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.36.5.4|2|-1
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.37.2.1|4|
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.37.2.2|4|
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.37.3.1|4|
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.37.3.2|4|
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.37.3.3|4|
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.37.3.4|4|
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.37.3.5|4|
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.37.3.6|4|
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.37.3.7|4|
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.37.3.8|4|
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.37.5.1|4|Not Applicable
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.37.5.2|4|Not Applicable
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.37.5.3|4|Not Applicable
1.3.6.1.4.1.8962.2.1.2.1.11.1.1.37.5.4|4|Not Applicable
1.3.6.1.4.1.8962.2.1.2.1.18.2.0|2|2
1.3.6.1.4.1.8962.2.1.3.1.1.5.1.1.2|2|26
1.3.6.1.4.1.8962.2.1.3.1.1.5.1.2.2|2|25
1.3.6.1.4.1.8962.2.1.3.1.1.5.1.3.2|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.5.1.4.2|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.5.1.5.2|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.5.1.6.2|2|1000
1.3.6.1.4.1.8962.2.1.3.1.1.5.1.7.2|2|500
1.3.6.1.4.1.8962.2.1.3.1.1.5.1.8.2|2|1
1.3.6.1.4.1.8962.2.1.3.1.1.5.1.9.2|2|10000
1.3.6.1.4.1.8962.2.1.3.1.1.5.1.10.2|70|1000000000
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.1.2.1|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.1.2.2|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.1.3.1|70|5504783
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.1.3.2|70|2450181
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.1.3.3|70|5544222
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.1.3.4|70|2454087
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.1.3.5|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.1.3.6|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.1.3.7|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.1.3.8|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.1.5.1|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.1.5.2|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.1.5.3|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.1.5.4|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.2.2.1|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.2.2.2|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.2.3.1|70|5504783
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.2.3.2|70|2450181
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.2.3.3|70|5544222
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.2.3.4|70|2454087
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.2.3.5|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.2.3.6|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.2.3.7|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.2.3.8|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.2.5.1|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.2.5.2|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.2.5.3|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.2.5.4|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.3.2.1|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.3.2.2|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.3.3.1|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.3.3.2|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.3.3.3|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.3.3.4|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.3.3.5|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.3.3.6|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.3.3.7|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.3.3.8|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.3.5.1|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.3.5.2|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.3.5.3|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.3.5.4|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.4.2.1|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.4.2.2|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.4.3.1|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.4.3.2|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.4.3.3|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.4.3.4|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.4.3.5|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.4.3.6|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.4.3.7|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.4.3.8|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.4.5.1|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.4.5.2|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.4.5.3|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.4.5.4|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.5.2.1|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.5.2.2|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.5.3.1|70|6952773376
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.5.3.2|70|364013018
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.5.3.3|70|6991775269
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.5.3.4|70|375019111
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.5.3.5|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.5.3.6|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.5.3.7|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.5.3.8|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.5.5.1|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.5.5.2|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.5.5.3|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.5.5.4|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.6.2.1|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.6.2.2|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.6.3.1|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.6.3.2|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.6.3.3|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.6.3.4|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.6.3.5|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.6.3.6|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.6.3.7|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.6.3.8|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.6.5.1|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.6.5.2|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.6.5.3|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.6.5.4|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.7.2.1|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.7.2.2|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.7.3.1|70|5779
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.7.3.2|70|13218
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.7.3.3|70|5779
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.7.3.4|70|13091
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.7.3.5|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.7.3.6|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.7.3.7|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.7.3.8|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.7.5.1|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.7.5.2|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.7.5.3|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.7.5.4|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.8.2.1|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.8.2.2|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.8.3.1|70|5779
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.8.3.2|70|13218
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.8.3.3|70|5779
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.8.3.4|70|13091
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.8.3.5|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.8.3.6|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.8.3.7|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.8.3.8|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.8.5.1|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.8.5.2|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.8.5.3|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.8.5.4|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.9.2.1|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.9.2.2|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.9.3.1|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.9.3.2|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.9.3.3|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.9.3.4|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.9.3.5|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.9.3.6|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.9.3.7|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.9.3.8|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.9.5.1|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.9.5.2|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.9.5.3|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.9.5.4|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.10.2.1|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.10.2.2|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.10.3.1|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.10.3.2|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.10.3.3|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.10.3.4|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.10.3.5|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.10.3.6|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.10.3.7|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.10.3.8|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.10.5.1|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.10.5.2|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.10.5.3|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.10.5.4|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.11.2.1|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.11.2.2|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.11.3.1|70|860081
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.11.3.2|70|16984393
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.11.3.3|70|867527
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.11.3.4|70|16884121
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.11.3.5|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.11.3.6|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.11.3.7|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.11.3.8|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.11.5.1|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.11.5.2|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.11.5.3|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.11.5.4|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.12.2.1|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.12.2.2|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.12.3.1|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.12.3.2|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.12.3.3|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.12.3.4|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.12.3.5|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.12.3.6|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.12.3.7|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.12.3.8|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.12.5.1|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.12.5.2|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.12.5.3|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.7.1.12.5.4|70|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.2.1|4|GTI File Reputation
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.2.2|4|Blacklist
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.2.4|4|McAfee Cloud
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.2.8|4|PDF Emulation
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.2.16|4|Gateway Anti-Malware
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.2.32|4|Save File
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.2.64|4|ATD
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.2.128|4|MATD-AV
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.2.512|4|Flash Analysis Engine
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.2.1024|4|Threat Intelligence Exchange
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.2.4096|4|NSP Malware Engine
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.2.16384|4|MVX Engine
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.3.1|2|50
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.3.2|2|55
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.3.4|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.3.8|2|40
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.3.16|2|24
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.3.32|2|25
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.3.64|2|7
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.3.128|2|4
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.3.512|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.3.1024|2|72
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.3.4096|2|1
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.3.16384|2|4
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.4.1|2|7
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.4.2|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.4.4|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.4.8|2|4
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.4.16|2|3
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.4.32|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.4.64|2|3
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.4.128|2|3
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.4.512|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.4.1024|2|7
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.4.4096|2|1
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.4.16384|2|2
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.5.1|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.5.2|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.5.4|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.5.8|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.5.16|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.5.32|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.5.64|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.5.128|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.5.512|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.5.1024|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.5.4096|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.5.16384|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.6.1|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.6.2|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.6.4|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.6.8|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.6.16|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.6.32|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.6.64|2|4
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.6.128|2|4
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.6.512|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.6.1024|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.6.4096|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.6.16384|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.7.1|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.7.2|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.7.4|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.7.8|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.7.16|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.7.32|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.7.64|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.7.128|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.7.512|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.7.1024|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.7.4096|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.7.16384|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.8.1|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.8.2|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.8.4|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.8.8|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.8.16|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.8.32|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.8.64|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.8.128|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.8.512|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.8.1024|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.8.4096|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.8.16384|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.9.1|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.9.2|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.9.4|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.9.8|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.9.16|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.9.32|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.9.64|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.9.128|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.9.512|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.9.1024|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.9.4096|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.9.16384|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.10.1|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.10.2|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.10.4|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.10.8|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.10.16|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.10.32|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.10.64|2|9
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.10.128|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.10.512|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.10.1024|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.10.4096|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.10.16384|2|2
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.11.1|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.11.2|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.11.4|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.11.8|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.11.16|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.11.32|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.11.64|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.11.128|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.11.512|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.11.1024|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.11.4096|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.11.16384|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.12.1|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.12.2|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.12.4|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.12.8|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.12.16|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.12.32|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.12.64|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.12.128|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.12.512|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.12.1024|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.12.4096|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.12.16384|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.13.1|2|6
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.13.2|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.13.4|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.13.8|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.13.16|2|2
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.13.32|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.13.64|2|9
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.13.128|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.13.512|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.13.1024|2|6
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.13.4096|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.13.16384|2|2
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.14.1|2|7
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.14.2|2|7
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.14.4|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.14.8|2|4
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.14.16|2|6
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.14.32|2|3
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.14.64|2|6
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.14.128|2|6
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.14.512|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.14.1024|2|7
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.14.4096|2|2
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.14.16384|2|6
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.15.1|2|2
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.15.2|2|4
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.15.4|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.15.8|2|9
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.15.16|2|4
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.15.32|2|5
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.15.64|2|5
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.15.128|2|6
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.15.512|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.15.1024|2|2
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.15.4096|2|-9
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.15.16384|2|5
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.16.1|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.16.2|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.16.4|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.16.8|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.16.16|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.16.32|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.16.64|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.16.128|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.16.512|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.16.1024|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.16.4096|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.16.16384|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.17.1|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.17.2|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.17.4|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.17.8|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.17.16|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.17.32|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.17.64|2|3
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.17.128|2|3
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.17.512|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.17.1024|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.17.4096|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.17.16384|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.18.1|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.18.2|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.18.4|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.18.8|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.18.16|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.18.32|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.18.64|2|6
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.18.128|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.18.512|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.18.1024|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.18.4096|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.18.16384|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.19.1|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.19.2|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.19.4|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.19.8|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.19.16|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.19.32|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.19.64|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.19.128|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.19.512|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.19.1024|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.19.4096|2|0
1.3.6.1.4.1.8962.2.1.3.1.1.11.1.1.19.16384|2|0
1.3.6.1.4.1.8962.2.1.3.1.4.1.1.4.1|2|38